Commit a2c40931 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vaf_spectrumsynth: check return code

parent 1457786d
......@@ -419,6 +419,8 @@ static int try_push_frame(AVFilterContext *ctx, int x)
}
ret = ff_filter_frame(outlink, out);
if (ret < 0)
return ret;
}
}
}
......
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