Changeset 477 for libmpc/trunk/libmpcdec/streaminfo.c
- Timestamp:
- 01/01/12 18:05:19 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/trunk/libmpcdec/streaminfo.c
r473 r477 109 109 streaminfo_read_header_sv7(mpc_streaminfo* si, mpc_bits_reader * r) 110 110 { 111 mpc_uint16_t Estimatedpeak_title = 0;112 111 mpc_uint32_t frames, last_frame_samples; 113 112 … … 121 120 mpc_bits_read(r, 2); // Link ? 122 121 si->sample_freq = samplefreqs[mpc_bits_read(r, 2)]; 123 Estimatedpeak_title = (mpc_uint16_t) mpc_bits_read(r, 16); // read the ReplayGain data122 mpc_bits_read(r, 16); // skip MaxLevel (maximum level of input PCM) 124 123 si->gain_title = (mpc_uint16_t) mpc_bits_read(r, 16); 125 124 si->peak_title = (mpc_uint16_t) mpc_bits_read(r, 16);
Note: See TracChangeset
for help on using the changeset viewer.