Commit 11f87ca7 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Anton Khirnov

vf_frei0r: also set AVFilterLink.frame_rate

(cherry picked from ffmpeg commit 353cf95f)
Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 7d12cba9
......@@ -459,6 +459,7 @@ static int source_config_props(AVFilterLink *outlink)
outlink->w = s->w;
outlink->h = s->h;
outlink->time_base = s->time_base;
outlink->frame_rate = av_inv_q(s->time_base);
if (s->destruct && s->instance)
s->destruct(s->instance);
......
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