From b237e6282ef592e88db0a0368162a8a4c914574c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 4 Jul 2013 13:31:55 +0200 Subject: avformat/h261dec: use init_get_bits8() Signed-off-by: Michael Niedermayer --- libavformat/h261dec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/h261dec.c') diff --git a/libavformat/h261dec.c b/libavformat/h261dec.c index 1474a162bf..8d882aec61 100644 --- a/libavformat/h261dec.c +++ b/libavformat/h261dec.c @@ -33,7 +33,7 @@ static int h261_probe(AVProbeData *p) int src_fmt=0; GetBitContext gb; - init_get_bits(&gb, p->buf, p->buf_size*8); + init_get_bits8(&gb, p->buf, p->buf_size); for(i=0; ibuf_size*8; i++){ if ((code & 0x01ff0000) || !(code & 0xff00)) { -- cgit v1.2.3