You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avfilter/vf_scdet: fix introduced discrepancy with latest change
This commit is contained in:
@@ -170,7 +170,7 @@ static int activate(AVFilterContext *ctx)
|
||||
av_ts2timestr(frame->pts, &inlink->time_base));
|
||||
}
|
||||
if (s->sc_pass) {
|
||||
if (s->scene_score > s->threshold)
|
||||
if (s->scene_score >= s->threshold)
|
||||
return ff_filter_frame(outlink, frame);
|
||||
else {
|
||||
av_frame_free(&frame);
|
||||
|
Reference in New Issue
Block a user