Browse Source

avcodec/ivi: use init_get_bits8()

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.3
Paul B Mahol 9 years ago
parent
commit
c331be21c4
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavcodec/ivi.c

+ 3
- 1
libavcodec/ivi.c View File

@@ -1060,7 +1060,9 @@ int ff_ivi_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
int buf_size = avpkt->size; int buf_size = avpkt->size;
int result, p, b; int result, p, b;


init_get_bits(&ctx->gb, buf, buf_size * 8);
result = init_get_bits8(&ctx->gb, buf, buf_size);
if (result < 0)
return result;
ctx->frame_data = buf; ctx->frame_data = buf;
ctx->frame_size = buf_size; ctx->frame_size = buf_size;




Loading…
Cancel
Save