ffmpeg | branch: master | Ramiro Polla <ramiro.po...@gmail.com> | Tue Nov  5 
11:13:50 2019 +0100| [c455a28a9e99d41d070be887228aa8609543b9a8] | committer: 
James Almer

avcodec/wmadec: cosmetics

Reviewed-by: Michael Niedermayer <mich...@niedermayer.cc>
Signed-off-by: James Almer <jamr...@gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c455a28a9e99d41d070be887228aa8609543b9a8
---

 libavcodec/wmadec.c | 4 ++--
 1 file 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 */

_______________________________________________
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog

To unsubscribe, visit link above, or email
ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to