Skip to content

Commit dc6206f

Browse files
author
Torsten Jager
committed
mpc: kill -Wextra warnings.
1 parent 3f4be30 commit dc6206f

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

contrib/libmpcdec/idtag.c

+4
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,11 @@
4242
mpc_int32_t
4343
JumpID3v2 (mpc_reader* r) {
4444
unsigned char tmp [10];
45+
#if 0
4546
mpc_uint32_t Unsynchronisation; // ID3v2.4-flag
4647
mpc_uint32_t ExtHeaderPresent; // ID3v2.4-flag
4748
mpc_uint32_t ExperimentalFlag; // ID3v2.4-flag
49+
#endif
4850
mpc_uint32_t FooterPresent; // ID3v2.4-flag
4951
mpc_int32_t ret;
5052

@@ -60,9 +62,11 @@ JumpID3v2 (mpc_reader* r) {
6062
return 0;
6163

6264
// read flags
65+
#if 0
6366
Unsynchronisation = tmp[5] & 0x80;
6467
ExtHeaderPresent = tmp[5] & 0x40;
6568
ExperimentalFlag = tmp[5] & 0x20;
69+
#endif
6670
FooterPresent = tmp[5] & 0x10;
6771

6872
if ( tmp[5] & 0x0F )

contrib/libmpcdec/mpc_decoder.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ static void mpc_decoder_bitstream_jump(mpc_decoder *d, const mpc_uint32_t bits)
125125
}
126126
}
127127

128-
void mpc_decoder_update_buffer(mpc_decoder *d, mpc_uint32_t RING)
128+
static void mpc_decoder_update_buffer(mpc_decoder *d, mpc_uint32_t RING)
129129
{
130130
if ((RING ^ d->Zaehler) & MEMSIZE2 ) {
131131
// update buffer

contrib/libmpcdec/streaminfo.c

+10-7
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,16 @@ streaminfo_read_header_sv7(mpc_streaminfo * si, mpc_uint32_t HeaderData[8])
120120
break;
121121
}
122122
}
123-
124-
// if ( si->peak_title == 0 ) // there is no correct peak_title contained within header
125-
// si->peak_title = (mpc_uint16_t)(Estimatedpeak_title * 1.18);
126-
// if ( si->peak_album == 0 )
127-
// si->peak_album = si->peak_title; // no correct peak_album, use peak_title
128-
129-
//si->sample_freq = 44100; // AB: used by all files up to SV7
123+
#if 0
124+
if ( si->peak_title == 0 ) // there is no correct peak_title contained within header
125+
si->peak_title = (mpc_uint16_t)(Estimatedpeak_title * 1.18);
126+
if ( si->peak_album == 0 )
127+
si->peak_album = si->peak_title; // no correct peak_album, use peak_title
128+
129+
si->sample_freq = 44100; // AB: used by all files up to SV7
130+
#else
131+
(void)Estimatedpeak_title;
132+
#endif
130133
si->channels = 2;
131134

132135
return ERROR_CODE_OK;

0 commit comments

Comments
 (0)