mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_rubberband: also do not ignore failures
This commit is contained in:
parent
066864aca8
commit
e668260ba9
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue