1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

mandelbrot: remove unused variables

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Giorgio Vazzana 2011-11-13 01:01:51 +01:00 committed by Michael Niedermayer
parent 459bba58d2
commit be97e7b9c2

View File

@ -65,7 +65,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
char frame_size [128] = "640x480";
char frame_rate [128] = "25";
AVRational frame_rate_q;
int ret;
mb->maxiter=4096;
mb->start_x=-0.743643887037158704752191506114774;
@ -108,7 +107,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
static av_cold void uninit(AVFilterContext *ctx)
{
MBContext *mb = ctx->priv;
int i;
av_freep(&mb->point_cache);
av_freep(&mb-> next_cache);