1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
-
- #ifndef __PACKING_H
- #define __PACKING_H
- void packsplit(
- int *index,
- int *firstpart,
- int *rest,
- int bitno_firstpart,
- int bitno_total
- );
- void packcombine(
- int *index,
- int rest,
- int bitno_rest
- );
- void dopack(
- unsigned char **bitstream,
- int index,
- int bitno,
- int *pos
- );
- void unpack(
- unsigned char **bitstream,
- int *index,
- int bitno,
- int *pos
- );
- #endif
|