Commit 63bc6430 authored by Anton Khirnov's avatar Anton Khirnov

lavfi/yadif: update output frame durations

parent 99fe00ab
......@@ -151,6 +151,7 @@ int ff_yadif_filter_frame(AVFilterLink *link, AVFrame *frame)
av_frame_free(&yadif->prev);
if (yadif->out->pts != AV_NOPTS_VALUE)
yadif->out->pts *= 2;
yadif->out->duration *= 2;
return ff_filter_frame(ctx->outputs[0], yadif->out);
}
......@@ -168,6 +169,8 @@ FF_ENABLE_DEPRECATION_WARNINGS
if (yadif->out->pts != AV_NOPTS_VALUE)
yadif->out->pts *= 2;
if (!(yadif->mode & 1))
yadif->out->duration *= 2;
return return_frame(ctx, 0);
}
......
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