Commit be54c4d2 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

id3tag: kill a warning about casting

parent 7160ce9f
...@@ -136,7 +136,8 @@ static void ParseID3Tag( demux_t *p_demux, const uint8_t *p_data, int i_size ) ...@@ -136,7 +136,8 @@ static void ParseID3Tag( demux_t *p_demux, const uint8_t *p_data, int i_size )
while( i_data >= 4 ) while( i_data >= 4 )
{ {
const unsigned int i_peak_size = p_data[3]; const unsigned int i_peak_size = p_data[3];
const float f_gain = (float)GetWBE( &p_data[1] ) / 512.0; float f_temp = GetWBE( &p_data[1] );
const float f_gain = f_temp / 512.0;
char psz_value[32]; char psz_value[32];
if( i_data < i_peak_size + 4 ) if( i_data < i_peak_size + 4 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment