summaryrefslogtreecommitdiff
path: root/libavfilter/vf_yadif.c
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 14:50:33 +0100
committerHendrik Leppkes <h.leppkes@gmail.com>2015-11-11 14:50:33 +0100
commitcb987128666a431f793e03ed5a50bd6c35685dda (patch)
treec177ee9f64c29a2481ffbb66457ff0aa498f406b /libavfilter/vf_yadif.c
parent4e8f1c6fb0022ef9ddfe95faa0cf7e301d165f61 (diff)
parent9df477e03ef74068f3de130adc4dd34349a16ef2 (diff)
Merge commit '9df477e03ef74068f3de130adc4dd34349a16ef2'
* commit '9df477e03ef74068f3de130adc4dd34349a16ef2': yadif: update frame rate Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
Diffstat (limited to 'libavfilter/vf_yadif.c')
-rw-r--r--libavfilter/vf_yadif.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index b546a088c9..8791129201 100644
--- a/libavfilter/vf_yadif.c
+++ b/libavfilter/vf_yadif.c
@@ -476,8 +476,9 @@ 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});
+ if(s->mode & 1)
+ link->frame_rate = av_mul_q(link->src->inputs[0]->frame_rate,
+ (AVRational){2, 1});
if (link->w < 3 || link->h < 3) {
av_log(ctx, AV_LOG_ERROR, "Video of less than 3 columns or lines is not supported\n");