Commit b1c61db6 authored by michael's avatar michael

fix coverity warning CID: 255 (uninitalized variable used to build tables...

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 ...)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5162 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 38fa03cc
......@@ -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;
......
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