fix coverity warning CID: 255 (uninitalized variable used to build tables which arent used, well there is a slight change of a FPU exception maybe ...)
Originally committed as revision 5162 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
60023e3234
commit
40c8602f64
@ -222,7 +222,7 @@ static int wma_decode_init(AVCodecContext * avctx)
|
||||
float *window;
|
||||
uint8_t *extradata;
|
||||
float bps, bps1;
|
||||
volatile float high_freq_factor;
|
||||
volatile float high_freq_factor= 0; //initial value should not matter as the tables build from this are unused if !use_noise_coding
|
||||
int sample_rate1;
|
||||
int coef_vlc_table;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user