Changeset 400 for libmpc/trunk/libmpcdec
- Timestamp:
- 04/21/08 16:22:24 (17 years ago)
- Location:
- libmpc/trunk/libmpcdec
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcdec/Makefile.am
r232 r400 13 13 14 14 noinst_HEADERS = mpc_bits_reader.h 15 AM_CFLAGS = -fpic -fvisibility=hidden -
libmpc/trunk/libmpcdec/mpc_bits_reader.h
r342 r400 35 35 #define MAX_ENUM 32 36 36 37 int mpc_bits_get_block(mpc_bits_reader * r, mpc_block * p_block);37 MPC_API int mpc_bits_get_block(mpc_bits_reader * r, mpc_block * p_block); 38 38 mpc_int32_t mpc_bits_golomb_dec(mpc_bits_reader * r, const mpc_uint_t k); 39 39 unsigned int mpc_bits_get_size(mpc_bits_reader * r, mpc_uint64_t * p_size); -
libmpc/trunk/libmpcdec/mpc_demux.c
r390 r400 157 157 * @return MPC_STATUS_FILE on errors of any kind 158 158 */ 159 mpc_int32_t mpc_demux_skip_id3v2(mpc_demux * d)159 static mpc_int32_t mpc_demux_skip_id3v2(mpc_demux * d) 160 160 { 161 161 mpc_uint8_t tmp [4]; … … 203 203 } 204 204 205 mpc_status mpc_demux_seek_init(mpc_demux * d)205 static mpc_status mpc_demux_seek_init(mpc_demux * d) 206 206 { 207 207 if (d->seek_table != 0)
Note: See TracChangeset
for help on using the changeset viewer.