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

avfilter/af_rubberband: also do not ignore failures

parent 066864ac
......@@ -186,7 +186,7 @@ static int activate(AVFilterContext *ctx)
return ret;
if (ret > 0) {
ret = filter_frame(inlink, in);
if (ret > 0)
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