mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-05-07 00:50:27 +00:00
lavfi/settb: rescale input frame durations
This commit is contained in:
parent
476c90c207
commit
7c299c1178
1 changed files with 1 additions and 0 deletions
|
|
@ -128,6 +128,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
|
|||
AVFilterLink *outlink = ctx->outputs[0];
|
||||
|
||||
frame->pts = rescale_pts(inlink, outlink, frame->pts);
|
||||
frame->duration = av_rescale_q(frame->duration, inlink->time_base, outlink->time_base);
|
||||
|
||||
return ff_filter_frame(outlink, frame);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue