diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-04-27 17:59:49 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-04-27 17:59:49 +0000 |
| commit | fa65362a42675d9d84a7ec57fdf5d8e1b575a4cd (patch) | |
| tree | 860ef46fabe4e3fb94b621cded350193e2119131 /apps/codecs/libmusepack | |
| parent | 4170ac8ac6393ad7bafd3f88f88cdf33c533bd08 (diff) | |
| download | rockbox-fa65362a42675d9d84a7ec57fdf5d8e1b575a4cd.zip rockbox-fa65362a42675d9d84a7ec57fdf5d8e1b575a4cd.tar.gz rockbox-fa65362a42675d9d84a7ec57fdf5d8e1b575a4cd.tar.bz2 rockbox-fa65362a42675d9d84a7ec57fdf5d8e1b575a4cd.tar.xz | |
Fix compiler warnings ('variable set ut not used') with GCC 4.6.0.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29792 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libmusepack')
| -rw-r--r-- | apps/codecs/libmusepack/streaminfo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/codecs/libmusepack/streaminfo.c b/apps/codecs/libmusepack/streaminfo.c index 2d8ece7..3303bc4 100644 --- a/apps/codecs/libmusepack/streaminfo.c +++ b/apps/codecs/libmusepack/streaminfo.c @@ -110,7 +110,6 @@ static mpc_status check_streaminfo(mpc_streaminfo * si) mpc_status streaminfo_read_header_sv7(mpc_streaminfo* si, mpc_bits_reader * r) { - mpc_uint16_t Estimatedpeak_title = 0; mpc_uint32_t frames, last_frame_samples; si->bitrate = 0; @@ -124,7 +123,7 @@ streaminfo_read_header_sv7(mpc_streaminfo* si, mpc_bits_reader * r) */ mpc_bits_read(r, 2); // Link ? si->sample_freq = samplefreqs[mpc_bits_read(r, 2)]; - Estimatedpeak_title = (mpc_uint16_t) mpc_bits_read(r, 16); // read the ReplayGain data + mpc_bits_read(r, 16); // Estimatedpeak_title si->gain_title = (mpc_uint16_t) mpc_bits_read(r, 16); si->peak_title = (mpc_uint16_t) mpc_bits_read(r, 16); si->gain_album = (mpc_uint16_t) mpc_bits_read(r, 16); |