mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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
Block a user