From 5b4cc686126c65d4e586bf4e55f93aaf3637eca0 Mon Sep 17 00:00:00 2001 From: jstebbins Date: Wed, 3 Nov 2010 00:35:02 +0000 Subject: [PATCH] fix framerate detection of ffmpeg sources found another spot where ticks_per_frame was not being accounted for. git-svn-id: svn://localhost/HandBrake/trunk@3643 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- libhb/decavcodec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index e461f634..379365b5 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -1332,6 +1332,10 @@ static int decavcodecviInfo( hb_work_object_t *w, hb_work_info_t *info ) // need it in units of the 27MHz MPEG clock. */ info->rate = 27000000; info->rate_base = pv->duration * 300.; + if ( pv->context->ticks_per_frame > 1 ) + { + info->rate_base *= 2; + } return 1; } return 0; -- 2.11.0