mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/vf_threshold: use time_base from framesync
Fixes non-monotonous timestamps.
This commit is contained in:
parent
37e69b40df
commit
3d78ad43f7
|
@ -277,7 +277,6 @@ static int config_output(AVFilterLink *outlink)
|
|||
|
||||
outlink->w = base->w;
|
||||
outlink->h = base->h;
|
||||
outlink->time_base = base->time_base;
|
||||
outlink->sample_aspect_ratio = base->sample_aspect_ratio;
|
||||
outlink->frame_rate = base->frame_rate;
|
||||
|
||||
|
@ -304,7 +303,10 @@ static int config_output(AVFilterLink *outlink)
|
|||
s->fs.opaque = s;
|
||||
s->fs.on_event = process_frame;
|
||||
|
||||
return ff_framesync_configure(&s->fs);
|
||||
ret = ff_framesync_configure(&s->fs);
|
||||
outlink->time_base = s->fs.time_base;
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int activate(AVFilterContext *ctx)
|
||||
|
|
Loading…
Reference in New Issue