1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avcodec/wma: Remove nonsense volatile

The address of this variable never leaks, so it cannot be modified
by anyone else at all.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2021-05-06 07:47:03 +02:00
parent d5e575ef6a
commit 0bc522a0a1

View File

@@ -79,7 +79,7 @@ av_cold int ff_wma_init(AVCodecContext *avctx, int flags2)
WMACodecContext *s = avctx->priv_data;
int i, ret;
float bps1, high_freq;
volatile float bps;
float bps;
int sample_rate1;
int coef_vlc_table;