diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2019-11-05 11:13:50 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-03-22 11:55:44 -0300 |
commit | c455a28a9e99d41d070be887228aa8609543b9a8 (patch) | |
tree | 6748897370887be0cb5bca66334415d5688b8427 | |
parent | c2b540d0c792e840f67eab2c7053b3a1df7db8de (diff) | |
download | ffmpeg-c455a28a9e99d41d070be887228aa8609543b9a8.tar.gz |
avcodec/wmadec: cosmetics
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/wmadec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wmadec.c b/libavcodec/wmadec.c index 6365fe7f47..07fd960f7f 100644 --- a/libavcodec/wmadec.c +++ b/libavcodec/wmadec.c @@ -895,11 +895,11 @@ static int wma_decode_superframe(AVCodecContext *avctx, void *data, q = s->last_superframe + s->last_superframe_len; len = bit_offset; while (len > 7) { - *q++ = (get_bits) (&s->gb, 8); + *q++ = get_bits(&s->gb, 8); len -= 8; } if (len > 0) - *q++ = (get_bits) (&s->gb, len) << (8 - len); + *q++ = get_bits(&s->gb, len) << (8 - len); memset(q, 0, AV_INPUT_BUFFER_PADDING_SIZE); /* XXX: bit_offset bits into last frame */ |