Changeset 402
- Timestamp:
- 04/24/08 13:06:27 (17 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/include/mpc/mpcdec.h
r400 r402 54 54 55 55 typedef struct mpc_decoder_t mpc_decoder; 56 typedef struct mpc_bits_reader_t mpc_bits_reader;57 56 typedef struct mpc_demux_t mpc_demux; 57 58 typedef struct mpc_bits_reader_t { 59 unsigned char * buff; /// pointer on current byte 60 unsigned int count; /// unread bits in current byte 61 } mpc_bits_reader; 58 62 59 63 typedef struct mpc_frame_info_t { -
libmpc/trunk/libmpcdec/internal.h
r390 r402 57 57 } mpc_block; 58 58 59 // mpc_bits_reader.c60 struct mpc_bits_reader_t {61 unsigned char * buff; /// pointer on current byte62 unsigned int count; /// unread bits in current byte63 };64 65 59 #define MAX_FRAME_SIZE 4352 66 60 #define DEMUX_BUFFER_SIZE (65536 - MAX_FRAME_SIZE) // need some space as sand box
Note: See TracChangeset
for help on using the changeset viewer.