1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

mandelbrot: increase cache size

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2011-11-12 17:04:50 +01:00
parent fd8d03457a
commit 905202ef6e

View File

@@ -93,7 +93,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
mb->time_base.num = frame_rate_q.den; mb->time_base.num = frame_rate_q.den;
mb->time_base.den = frame_rate_q.num; mb->time_base.den = frame_rate_q.num;
mb->cache_allocated = mb->w * mb->h*2; mb->cache_allocated = mb->w * mb->h * 3;
mb->cache_used = 0; mb->cache_used = 0;
mb->point_cache= av_malloc(sizeof(*mb->point_cache)*mb->cache_allocated); 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-> next_cache= av_malloc(sizeof(*mb-> next_cache)*mb->cache_allocated);