mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avfilter/af_rubberband: also do not ignore failures
This commit is contained in:
parent
066864aca8
commit
e668260ba9
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue