diff options
author | Alex Converse <alex.converse@gmail.com> | 2011-09-09 14:50:33 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-09-09 15:01:00 -0700 |
commit | 0c1f5b93d9b97c4cc3684ba91a040e90bfc760d2 (patch) | |
tree | 7d4e9c59e1ffc5db43aa589e1fade7a14b50fbb7 /libavcodec | |
parent | b7ce4f1d1c3add86ece7ca595ea6c4a10b471055 (diff) | |
download | ffmpeg-0c1f5b93d9b97c4cc3684ba91a040e90bfc760d2.tar.gz |
cljr: init_get_bits size in bits instead of bytes
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cljr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cljr.c b/libavcodec/cljr.c index 3050fe204e..b1cb6f07e3 100644 --- a/libavcodec/cljr.c +++ b/libavcodec/cljr.c @@ -67,7 +67,7 @@ static int decode_frame(AVCodecContext *avctx, p->pict_type= AV_PICTURE_TYPE_I; p->key_frame= 1; - init_get_bits(&a->gb, buf, buf_size); + init_get_bits(&a->gb, buf, buf_size * 8); for(y=0; y<avctx->height; y++){ uint8_t *luma= &a->picture.data[0][ y*a->picture.linesize[0] ]; |