diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-10-15 02:05:06 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-10-15 02:05:06 +0000 |
commit | d56839fc6d28a7bbaddaf65a0e4f0705038a5832 (patch) | |
tree | 19897fa8c44f6283906a11d8563344c3d2625258 /libavcodec/ffv1.c | |
parent | 1da72577394690dd6b1d1618746298e2812fa974 (diff) | |
download | ffmpeg-d56839fc6d28a7bbaddaf65a0e4f0705038a5832.tar.gz |
Store slice position and size per keyframe in ffv1.2
Originally committed as revision 25478 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 39 |
1 files changed, 35 insertions, 4 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 0094197017..69fc9ddebc 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -618,7 +618,7 @@ static void write_quant_tables(RangeCoder *c, int16_t quant_table[5][256]){ static void write_header(FFV1Context *f){ uint8_t state[CONTEXT_SIZE]; - int i; + int i, j; RangeCoder * const c= &f->slice_context[0]->c; memset(state, 128, sizeof(state)); @@ -642,8 +642,16 @@ static void write_header(FFV1Context *f){ write_quant_tables(c, f->quant_table); }else{ - for(i=0; i<f->slice_count * f->plane_count; i++) + put_symbol(c, state, f->slice_count, 0); + for(i=0; i<f->slice_count; i++){ + FFV1Context *fs= f->slice_context[i]; + put_symbol(c, state, (fs->slice_x +1)*f->num_h_slices / f->width , 0); + put_symbol(c, state, (fs->slice_y +1)*f->num_v_slices / f->height , 0); + put_symbol(c, state, (fs->slice_width +1)*f->num_h_slices / f->width -1, 0); + put_symbol(c, state, (fs->slice_height+1)*f->num_v_slices / f->height-1, 0); + for(j=0; j<f->plane_count; j++) put_symbol(c, state, f->avctx->context_model, 0); + } } } #endif /* CONFIG_FFV1_ENCODER */ @@ -757,7 +765,7 @@ static av_cold int init_slice_contexts(FFV1Context *f){ fs->slice_x = sxs; fs->slice_y = sys; - fs->sample_buffer = av_malloc(6 * (fs->slice_width+6) * sizeof(*fs->sample_buffer)); + fs->sample_buffer = av_malloc(6 * (fs->width+6) * sizeof(*fs->sample_buffer)); if (!fs->sample_buffer) return AVERROR(ENOMEM); } @@ -1239,7 +1247,7 @@ static int read_extra_header(FFV1Context *f){ f->plane_count= 2; f->num_h_slices= 1 + get_symbol(c, state, 0); f->num_v_slices= 1 + get_symbol(c, state, 0); - if(f->num_h_slices > 256U || f->num_v_slices > 256U || f->num_h_slices*f->num_v_slices > MAX_SLICES){ + if(f->num_h_slices > (unsigned)f->width || f->num_v_slices > (unsigned)f->height){ av_log(f->avctx, AV_LOG_ERROR, "too many slices\n"); return -1; } @@ -1322,10 +1330,33 @@ static int read_header(FFV1Context *f){ av_log(f->avctx, AV_LOG_ERROR, "read_quant_table error\n"); return -1; } + }else{ + f->slice_count= get_symbol(c, state, 0); + if(f->slice_count > (unsigned)MAX_SLICES) + return -1; } + for(j=0; j<f->slice_count; j++){ FFV1Context *fs= f->slice_context[j]; fs->ac= f->ac; + + if(f->version >= 2){ + fs->slice_x = get_symbol(c, state, 0) *f->width ; + fs->slice_y = get_symbol(c, state, 0) *f->height; + fs->slice_width =(get_symbol(c, state, 0)+1)*f->width + fs->slice_x; + fs->slice_height=(get_symbol(c, state, 0)+1)*f->height + fs->slice_y; + + fs->slice_x /= f->num_h_slices; + fs->slice_y /= f->num_v_slices; + fs->slice_width = fs->slice_width /f->num_h_slices - fs->slice_x; + fs->slice_height = fs->slice_height/f->num_v_slices - fs->slice_y; + if((unsigned)fs->slice_width > f->width || (unsigned)fs->slice_height > f->height) + return -1; + if( (unsigned)fs->slice_x + (uint64_t)fs->slice_width > f->width + || (unsigned)fs->slice_y + (uint64_t)fs->slice_height > f->height) + return -1; + } + for(i=0; i<f->plane_count; i++){ PlaneContext * const p= &fs->plane[i]; |