Commit 9152bda8 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/af_silenceremove: fix logic error in EOF case

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 26c0c847
......@@ -469,7 +469,7 @@ static int request_frame(AVFilterLink *outlink)
(AVRational){1, outlink->sample_rate},
outlink->time_base);
ret = ff_filter_frame(ctx->inputs[0], frame);
ret = ff_filter_frame(outlink, frame);
}
s->mode = SILENCE_STOP;
}
......
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