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>
pull/362/head
Andreas Rheinhardt 4 years ago
parent d5e575ef6a
commit 0bc522a0a1
  1. 2
      libavcodec/wma.c

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

Loading…
Cancel
Save