summaryrefslogtreecommitdiff
path: root/rcaudio/bitpack.h (plain)
blob: dd54f3901d169c5072ea21ad23bdfaa65f66fced
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 bitpack.h: BV32 bit packing routines
9
10 $Log$
11******************************************************************************/
12
13#ifndef BITPACK_H
14#define BITPACK_H
15
16void BV32_BitPack(UWord8 * PackedStream, struct BV32_Bit_Stream * BitStruct);
17void BV32_BitUnPack(UWord8 * PackedStream, struct BV32_Bit_Stream * BitStruct);
18
19#endif
20
21