Browse Source

avcodec/binkaudio: use init_get_bits8()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.2-rc1
Paul B Mahol 12 years ago
parent
commit
1de8dfcbc4
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libavcodec/binkaudio.c

+ 2
- 1
libavcodec/binkaudio.c View File

@@ -308,7 +308,8 @@ static int decode_frame(AVCodecContext *avctx, void *data,
return AVERROR(ENOMEM);
s->packet_buffer = buf;
memcpy(s->packet_buffer, avpkt->data, avpkt->size);
init_get_bits(gb, s->packet_buffer, avpkt->size * 8);
if ((ret = init_get_bits8(gb, s->packet_buffer, avpkt->size)) < 0)
return ret;
consumed = avpkt->size;

/* skip reported size */


Loading…
Cancel
Save