mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
avcodec/mdec: use init_get_bits8()
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
ffa18de2e6
commit
9a5aa2c48e
@ -177,7 +177,8 @@ static int decode_frame(AVCodecContext *avctx,
|
||||
a->bitstream_buffer[i] = buf[i + 1];
|
||||
a->bitstream_buffer[i + 1] = buf[i];
|
||||
}
|
||||
init_get_bits(&a->gb, a->bitstream_buffer, buf_size * 8);
|
||||
if ((ret = init_get_bits8(&a->gb, a->bitstream_buffer, buf_size)) < 0)
|
||||
return ret;
|
||||
|
||||
/* skip over 4 preamble bytes in stream (typically 0xXX 0xXX 0x00 0x38) */
|
||||
skip_bits(&a->gb, 32);
|
||||
|
Loading…
Reference in New Issue
Block a user