Browse Source

flac: silence warning

Signed-off-by: Thomas Guillem <thomas@gllm.fr>
pull/89/head
Lyndon Brown 7 years ago
committed by Thomas Guillem
parent
commit
702ceefdd7
  1. 2
      modules/codec/flac.c

2
modules/codec/flac.c

@ -354,7 +354,7 @@ static void DecoderMetadataCallback( const FLAC__StreamDecoder *decoder,
}
}
/* Check if we have the 1 to 1 mapping */
if( vlc_popcount(i_vlcmask) != i_wfxchannels )
if( (unsigned) vlc_popcount(i_vlcmask) != i_wfxchannels )
{
msg_Warn( p_dec, "Unsupported channel mask %x", i_wfxmask );
return;

Loading…
Cancel
Save