Mercurial > libavcodec.hg
diff wmadec.c @ 3195:10cda832bd0f libavcodec
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 ...)
| author | michael |
|---|---|
| date | Mon, 13 Mar 2006 23:29:00 +0000 |
| parents | babf844e1308 |
| children | d3c05c7dabcd |
line wrap: on
line diff
--- a/wmadec.c Mon Mar 13 01:27:13 2006 +0000 +++ b/wmadec.c Mon Mar 13 23:29:00 2006 +0000 @@ -222,7 +222,7 @@ 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;
