Skip to content
Snippets Groups Projects
Commit 48d20b91 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

snowdec: increase stack size


Fixes Ticket1632

Signed-off-by: default avatarMichael Niedermayer <michaelni@gmx.at>
parent 994923ec
No related branches found
No related tags found
No related merge requests found
......@@ -413,7 +413,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
ff_slice_buffer_destroy(&s->sb);
if ((res = ff_slice_buffer_init(&s->sb, s->plane[0].height,
(MB_SIZE >> s->block_max_depth) +
s->spatial_decomposition_count * 8 + 1,
s->spatial_decomposition_count * 11 + 1,
s->plane[0].width,
s->spatial_idwt_buffer)) < 0)
return res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment