Commit afa0b908 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/mandelbrot: raise filter_frame() error.

parent 227a4b63
......@@ -387,9 +387,7 @@ static int request_frame(AVFilterLink *link)
picref->pts = mb->pts++;
draw_mandelbrot(link->src, (uint32_t*)picref->data[0], picref->linesize[0]/4, picref->pts);
ff_filter_frame(link, picref);
return 0;
return ff_filter_frame(link, picref);
}
static const AVFilterPad mandelbrot_outputs[] = {
......
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