diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-20 14:57:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-20 15:37:23 +0200 |
commit | 9408316a85f7e237889435834db369b05a8e0862 (patch) | |
tree | f5b6925f0c306c120f0df5c301a63db6d45e4e14 /libavcodec | |
parent | 8456089f5066104eb392be04ef7a1f532e182c28 (diff) | |
download | ffmpeg-9408316a85f7e237889435834db369b05a8e0862.tar.gz |
ffv1: refactor slice decoding init loop so that the first is less a special case
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ffv1.c | 33 |
1 files changed, 18 insertions, 15 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 7d985f0a37..1b0e874753 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -1862,28 +1862,31 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac if(avctx->debug&FF_DEBUG_PICT_INFO) av_log(avctx, AV_LOG_ERROR, "keyframe:%d coder:%d\n", p->key_frame, f->ac); - if(!f->ac){ - bytes_read = c->bytestream - c->bytestream_start - 1; - if(bytes_read ==0) av_log(avctx, AV_LOG_ERROR, "error at end of AC stream\n"); //FIXME -//printf("pos=%d\n", bytes_read); - init_get_bits(&f->slice_context[0]->gb, buf + bytes_read, (buf_size - bytes_read) * 8); - } else { - bytes_read = 0; /* avoid warning */ - } - buf_p= buf + buf_size; - for(i=f->slice_count-1; i>0; i--){ + for(i=f->slice_count-1; i>=0; i--){ FFV1Context *fs= f->slice_context[i]; - int v= AV_RB24(buf_p-3)+3; - if(buf_p - buf <= v){ + int v; + + if(i) v = AV_RB24(buf_p-3)+3; + else v = buf_p - c->bytestream_start; + if(buf_p - c->bytestream_start < v){ av_log(avctx, AV_LOG_ERROR, "Slice pointer chain broken\n"); return -1; } buf_p -= v; - if(fs->ac){ - ff_init_range_decoder(&fs->c, buf_p, v); + + if(i){ + if(fs->ac){ + ff_init_range_decoder(&fs->c, buf_p, v); + }else{ + init_get_bits(&fs->gb, buf_p, v * 8); + } }else{ - init_get_bits(&fs->gb, buf_p, v * 8); + if(!f->ac){ + bytes_read = c->bytestream - c->bytestream_start - 1; + if(bytes_read ==0) av_log(avctx, AV_LOG_ERROR, "error at end of AC stream\n"); //FIXME + init_get_bits(&fs->gb, buf + bytes_read, (buf_size - bytes_read) * 8); + } } } |