projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1062880
)
yadif: update frame rate
author
Michael Niedermayer
<michaelni@gmx.at>
Tue, 3 Nov 2015 17:57:21 +0000
(09:57 -0800)
committer
Anton Khirnov
<anton@khirnov.net>
Mon, 9 Nov 2015 07:09:41 +0000
(08:09 +0100)
(cherry picked from ffmpeg commit
31619584556466e4beab98e9b04ed4c5ba0db178
)
Signed-off-by: Anton Khirnov <anton@khirnov.net>
libavfilter/vf_yadif.c
patch
|
blob
|
blame
|
history
diff --git
a/libavfilter/vf_yadif.c
b/libavfilter/vf_yadif.c
index
574eac4
..
75e20a8
100644
(file)
--- 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;