提交 40c8602f 编写于 作者: M Michael Niedermayer

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

Originally committed as revision 5162 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 60023e32
......@@ -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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册