Commit cb987128 authored by Hendrik Leppkes's avatar Hendrik Leppkes

Merge commit '9df477e0'

* commit '9df477e0':
  yadif: update frame rate
Merged-by: 's avatarHendrik Leppkes <h.leppkes@gmail.com>
parents 4e8f1c6f 9df477e0
......@@ -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");
......
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