diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-11-05 12:44:52 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-11-05 12:44:52 +0000 |
commit | c3311515d513eaa9f693c01978c9906865537545 (patch) | |
tree | d6b1dd2338b9b1e209fc40ab7eb3dbcfcbbb8cd4 | |
parent | ad1dfe04a1bf5c95e8964945e6349050ebefc67d (diff) | |
download | ffmpeg-c3311515d513eaa9f693c01978c9906865537545.tar.gz |
avcodec/flashsv: fix typo
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavcodec/flashsv.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |