mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
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;
|
float *window;
|
||||||
uint8_t *extradata;
|
uint8_t *extradata;
|
||||||
float bps, bps1;
|
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 sample_rate1;
|
||||||
int coef_vlc_table;
|
int coef_vlc_table;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user