From c3311515d513eaa9f693c01978c9906865537545 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Nov 2013 12:44:52 +0000 Subject: [PATCH] avcodec/flashsv: fix typo Signed-off-by: Paul B Mahol --- libavcodec/flashsv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/flashsv.c b/libavcodec/flashsv.c index 8fbf13ba81..ee330608f2 100644 --- a/libavcodec/flashsv.c +++ b/libavcodec/flashsv.c @@ -255,7 +255,7 @@ static int flashsv_decode_frame(AVCodecContext *avctx, void *data, if (buf_size < 4) return -1; - if ((ret = init_get_bits(&gb, avpkt->data, buf_size)) < 0) + if ((ret = init_get_bits8(&gb, avpkt->data, buf_size)) < 0) return ret; /* start to parse the bitstream */