Commit e749b378 authored by Michael Niedermayer's avatar Michael Niedermayer

vsrc_mandelbrot: increase zyklus array size so that optimizations can write a bit more.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 649d3932
......@@ -148,7 +148,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
mb->cache_used = 0;
mb->point_cache= av_malloc(sizeof(*mb->point_cache)*mb->cache_allocated);
mb-> next_cache= av_malloc(sizeof(*mb-> next_cache)*mb->cache_allocated);
mb-> zyklus = av_malloc(sizeof(*mb->zyklus) * mb->maxiter);
mb-> zyklus = av_malloc(sizeof(*mb->zyklus) * (mb->maxiter+16));
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