blob: c6f4f34447241a510b310637a2b23026ccc30d0e [file] [log] [blame]
Jean-Marc Valin8b2ff0d2009-10-17 21:40:10 -04001/* Copyright (c) 2007-2008 CSIRO
2 Copyright (c) 2007-2009 Xiph.Org Foundation
3 Copyright (c) 2007-2009 Timothy B. Terriberry
4 Written by Timothy B. Terriberry and Jean-Marc Valin */
Timothy B. Terriberryc4541ae2007-12-03 11:51:29 +11005/*
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
9
10 - Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12
13 - Redistributions in binary form must reproduce the above copyright
14 notice, this list of conditions and the following disclaimer in the
15 documentation and/or other materials provided with the distribution.
16
17 - Neither the name of the Xiph.org Foundation nor the names of its
18 contributors may be used to endorse or promote products derived from
19 this software without specific prior written permission.
20
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
25 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
26 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
27 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
28 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*/
33
34#ifndef CWRS_H
35#define CWRS_H
36
Jean-Marc Valinf8db8002007-12-11 14:52:56 +110037#include "arch.h"
Jean-Marc Valinc7e0b762008-03-16 07:55:29 +110038#include "stack_alloc.h"
Jean-Marc Valin5fa59952008-02-14 13:50:44 +110039#include "entenc.h"
40#include "entdec.h"
Timothy B. Terriberryc4541ae2007-12-03 11:51:29 +110041
Jean-Marc Valin9a6c4962009-02-09 00:45:48 -050042int log2_frac(ec_uint32 val, int frac);
43
Jean-Marc Valin5aff7c02008-06-10 16:25:45 +100044/* Whether the CWRS codebook will fit into 32 bits */
45int fits_in32(int _n, int _m);
Timothy B. Terriberryc4541ae2007-12-03 11:51:29 +110046
Jean-Marc Valin30f7f812009-10-17 14:35:13 -040047void get_required_bits(celt_int16 *bits, int N, int K, int frac);
Jean-Marc Valin679083f2008-06-10 17:23:03 +100048
Jean-Marc Valin5fa59952008-02-14 13:50:44 +110049void encode_pulses(int *_y, int N, int K, ec_enc *enc);
50
51void decode_pulses(int *_y, int N, int K, ec_dec *dec);
52
Timothy B. Terriberryc4541ae2007-12-03 11:51:29 +110053#endif /* CWRS_H */