Commit 7979c8dc authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Id3tag: constify when possible.

parent 3663b861
......@@ -136,7 +136,7 @@ static void ParseID3Tag( demux_t *p_demux, const uint8_t *p_data, int i_size )
while( i_data >= 4 )
{
const unsigned int i_peak_size = p_data[3];
float f_temp = GetWBE( &p_data[1] );
const float f_temp = GetWBE( &p_data[1] );
const float f_gain = f_temp / 512.0;
char psz_value[32];
......
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