summaryrefslogtreecommitdiff
path: root/rcaudio/bv32.h (plain)
blob: d12ed6382c96ef1ef05aff394d9cfc9e4d19690f
1/*****************************************************************************/
2/* BroadVoice(R)32 (BV32) Floating-Point ANSI-C Source Code */
3/* Revision Date: October 5, 2012 */
4/* Version 1.2 */
5/*****************************************************************************/
6
7/*****************************************************************************/
8/* Copyright 2000-2012 Broadcom Corporation */
9/* */
10/* This software is provided under the GNU Lesser General Public License, */
11/* version 2.1, as published by the Free Software Foundation ("LGPL"). */
12/* This program is distributed in the hope that it will be useful, but */
13/* WITHOUT ANY SUPPORT OR WARRANTY; without even the implied warranty of */
14/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the LGPL for */
15/* more details. A copy of the LGPL is available at */
16/* http://www.broadcom.com/licenses/LGPLv2.1.php, */
17/* or by writing to the Free Software Foundation, Inc., */
18/* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19/*****************************************************************************/
20
21
22/*****************************************************************************
23 bv32.h :
24
25 $Log$
26******************************************************************************/
27
28extern void Reset_BV32_Coder(
29struct BV32_Encoder_State *cs);
30
31extern void BV32_Encode(
32struct BV32_Bit_Stream *bs,
33struct BV32_Encoder_State *cs,
34short *inx);
35
36extern void Reset_BV32_Decoder(
37struct BV32_Decoder_State *ds);
38
39extern void BV32_Decode(
40struct BV32_Bit_Stream *bs,
41struct BV32_Decoder_State *ds,
42short *out);
43
44extern void BV32_PLC(
45struct BV32_Decoder_State *ds,
46short *out);
47
48