summaryrefslogtreecommitdiff
path: root/libavcodec/wmadec.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2019-11-05 11:13:50 +0100
committerJames Almer <jamrial@gmail.com>2020-03-22 11:55:44 -0300
commitc455a28a9e99d41d070be887228aa8609543b9a8 (patch)
tree6748897370887be0cb5bca66334415d5688b8427 /libavcodec/wmadec.c
parentc2b540d0c792e840f67eab2c7053b3a1df7db8de (diff)
avcodec/wmadec: cosmetics
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/wmadec.c')
-rw-r--r--libavcodec/wmadec.c4
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 */