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:
Michael Niedermayer 2006-03-13 23:29:00 +00:00
parent 60023e3234
commit 40c8602f64
1 changed files with 1 additions and 1 deletions

View File

@ -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;