mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 00:02:52 +00:00
vsrc_mandelbrot: Fix vsrc_mandelbrot.c:358:85: warning: ‘epsilon’ may be used uninitialized in this function [-Wuninitialized]
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
b329fc346e
commit
656911d84d
@ -279,7 +279,7 @@ static void draw_mandelbrot(AVFilterContext *ctx, uint32_t *color, int linesize,
|
||||
}
|
||||
|
||||
for(x=0; x<mb->w; x++){
|
||||
float epsilon;
|
||||
float av_uninit(epsilon);
|
||||
const double cr=mb->start_x+scale*(x-mb->w/2);
|
||||
double zr=cr;
|
||||
double zi=ci;
|
||||
|
Loading…
Reference in New Issue
Block a user