summaryrefslogtreecommitdiff
path: root/rcaudio/bv32.h (plain)
blob: e7ddd9070bead9de703ab12a9a0cfdde4f41d803
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/*****************************************************************************
9 bv32.h :
10
11 $Log$
12******************************************************************************/
13
14extern void Reset_BV32_Coder(
15struct BV32_Encoder_State *cs);
16
17extern void BV32_Encode(
18struct BV32_Bit_Stream *bs,
19struct BV32_Encoder_State *cs,
20short *inx);
21
22extern void Reset_BV32_Decoder(
23struct BV32_Decoder_State *ds);
24
25extern void BV32_Decode(
26struct BV32_Bit_Stream *bs,
27struct BV32_Decoder_State *ds,
28short *out);
29
30extern void BV32_PLC(
31struct BV32_Decoder_State *ds,
32short *out);
33
34