Commit 61806e9f authored by Michael Niedermayer's avatar Michael Niedermayer

spatial_decomposition_count != 5 bugfix

Originally committed as revision 10451 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fa731ccd
...@@ -4405,8 +4405,8 @@ static int decode_init(AVCodecContext *avctx) ...@@ -4405,8 +4405,8 @@ static int decode_init(AVCodecContext *avctx)
common_init(avctx); common_init(avctx);
block_size = MB_SIZE >> s->block_max_depth; block_size = MB_SIZE >> s->block_max_depth;
slice_buffer_init(&s->sb, s->plane[0].height, (block_size) + (s->spatial_decomposition_count * (s->spatial_decomposition_count + 3)) + 1, s->plane[0].width, s->spatial_idwt_buffer);
slice_buffer_init(&s->sb, s->plane[0].height, (block_size) + (s->spatial_decomposition_count * 8) + 1, s->plane[0].width, s->spatial_idwt_buffer);
return 0; return 0;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment