Changeset 150 for libmpc/branches/r2d/libmpcdec/streaminfo.c
- Timestamp:
- 11/24/06 19:18:18 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libmpc/branches/r2d/libmpcdec/streaminfo.c
r149 r150 173 173 mpc_bits_get_size(&r, &si->samples); 174 174 si->is_true_gapless = 1; 175 si->sample_freq = samplefreqs[mpc_bits_read(&r, 4)];175 si->sample_freq = samplefreqs[mpc_bits_read(&r, 3)]; 176 176 si->channels = mpc_bits_read(&r, 4) + 1; 177 177 si->max_band = mpc_bits_read(&r, 5) + 1; 178 178 si->ms = mpc_bits_read(&r, 1); 179 si->block_pwr = mpc_bits_read(&r, 4);179 si->block_pwr = mpc_bits_read(&r, 3) * 2; 180 180 181 181 si->bitrate = 0;
Note: See TracChangeset
for help on using the changeset viewer.