Commit ba31e59e authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: Override r_frame_rate by corrected timebase only for interlaced streams

Fixes Ticket1664
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 901f4bb6
......@@ -558,7 +558,7 @@ static int configure_input_video_filter(FilterGraph *fg, InputFilter *ifilter,
int pad_idx = in->pad_idx;
int ret;
if (!ist->framerate.num) {
if (!ist->framerate.num && ist->st->codec->ticks_per_frame>1) {
AVRational codec_fr = av_inv_q(ist->st->codec->time_base);
codec_fr.den *= ist->st->codec->ticks_per_frame;
if(codec_fr.num>0 && codec_fr.den>0 && av_q2d(codec_fr) < av_q2d(fr)*0.7)
......
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