Browse Source

vf_mandelbrot: give all av_log a context

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
c322f19855
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vsrc_mandelbrot.c

+ 1
- 1
libavfilter/vsrc_mandelbrot.c View File

@@ -376,7 +376,7 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
FFSWAP(void*, mb->next_cache, mb->point_cache);
mb->cache_used = next_cidx;
if(mb->cache_used == mb->cache_allocated)
av_log(0, AV_LOG_INFO, "Mandelbrot cache is too small!\n");
av_log(ctx, AV_LOG_INFO, "Mandelbrot cache is too small!\n");
}

static int request_frame(AVFilterLink *link)


Loading…
Cancel
Save