diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-11-03 09:57:21 -0800 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-11-09 08:09:41 +0100 |
commit | 9df477e03ef74068f3de130adc4dd34349a16ef2 (patch) | |
tree | 54aaf9791eca4001388c30f9f485f1344746dd98 | |
parent | 1062880d69a4fdc8d8929dd5c22bb447182f1c41 (diff) | |
download | ffmpeg-9df477e03ef74068f3de130adc4dd34349a16ef2.tar.gz |
yadif: update frame rate
(cherry picked from ffmpeg commit 31619584556466e4beab98e9b04ed4c5ba0db178)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
-rw-r--r-- | libavfilter/vf_yadif.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c index 574eac4a03..75e20a8419 100644 --- a/libavfilter/vf_yadif.c +++ b/libavfilter/vf_yadif.c @@ -462,6 +462,10 @@ static int config_props(AVFilterLink *link) link->w = link->src->inputs[0]->w; link->h = link->src->inputs[0]->h; + if (s->mode & 1) + link->frame_rate = av_mul_q(link->src->inputs[0]->frame_rate, + (AVRational){2, 1}); + s->csp = av_pix_fmt_desc_get(link->format); if (s->csp->comp[0].depth > 8) { s->filter_line = filter_line_c_16bit; |