From bee044d7c261a9e488ee14705814361694b9acdb Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 17 Jan 2013 18:49:46 +0100 Subject: [PATCH] ffmpeg: copy tmcd track timebase parameters Fixes part of Ticket2045 Signed-off-by: Michael Niedermayer --- ffmpeg.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ffmpeg.c b/ffmpeg.c index db25f64c1b..6d53edfa64 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2139,6 +2139,12 @@ static int transcode_init(void) codec->time_base.num *= icodec->ticks_per_frame; } } + if ( codec->codec_tag == AV_RL32("tmcd") + && icodec->time_base.num < icodec->time_base.den + && icodec->time_base.num > 0 + && 121LL*icodec->time_base.num > icodec->time_base.den) { + codec->time_base = icodec->time_base; + } if(ost->frame_rate.num) codec->time_base = av_inv_q(ost->frame_rate);