Changeset 311
- Timestamp:
- 05/09/07 14:52:10 (17 years ago)
- Location:
- libmpc/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/include/mpc/streaminfo.h
r220 r311 80 80 mpc_uint64_t samples; ///< Number of samples in the stream 81 81 mpc_uint64_t beg_silence; ///< Number of samples that must not be played at the beginning of the stream 82 mpc_uint64_t end_silence; ///< Number of samples that must not be played at the end of the stream83 82 //@} 84 83 -
libmpc/trunk/libmpcdec/streaminfo.c
r310 r311 93 93 tmp = "--Unstable--"; 94 94 95 sprintf(si->encoder, "%s %u.%u build%u", tmp, major, minor, build);95 sprintf(si->encoder, "%s %u.%u.%u", tmp, major, minor, build); 96 96 } 97 97 } … … 195 195 mpc_bits_get_size(&r, &si->samples); 196 196 mpc_bits_get_size(&r, &si->beg_silence); 197 mpc_bits_get_size(&r, &si->end_silence);198 197 199 198 si->is_true_gapless = 1; -
libmpc/trunk/libmpcenc/encode_sv7.c
r243 r311 115 115 writeBits ( e, tmp[i], 8 ); 116 116 writeBits ( e, 0, 8 ); // nb of samples to skip at beginning 117 writeBits ( e, 0, 8 ); // nb of samples to skip at end118 117 119 118 switch ( SampleFreq ) { -
libmpc/trunk/mpcenc/config.h
r308 r311 32 32 33 33 #define MPCENC_MAJOR 1 34 #define MPCENC_MINOR 2 135 #define MPCENC_BUILD 134 #define MPCENC_MINOR 23 35 #define MPCENC_BUILD 0 36 36 37 37 /* end of config.h */
Note: See TracChangeset
for help on using the changeset viewer.