From 72815200c65ff4587df5e8da908b9281e044f1ca Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Sat, 28 May 2005 14:17:39 +0000 Subject: [PATCH] NTSC fix git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt@729 d19143bc-622f-0410-bfdd-b5b2a6649095 --- src/modules/avformat/consumer_avformat.c | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/modules/avformat/consumer_avformat.c b/src/modules/avformat/consumer_avformat.c index 1f10f6b..febd134 100644 --- a/src/modules/avformat/consumer_avformat.c +++ b/src/modules/avformat/consumer_avformat.c @@ -417,9 +417,8 @@ static AVStream *add_video_stream( mlt_consumer this, AVFormatContext *oc, int c c->bit_rate_tolerance = mlt_properties_get_int( properties, "video_bit_rate_tolerance" ); c->width = mlt_properties_get_int( properties, "width" ); c->height = mlt_properties_get_int( properties, "height" ); - c->time_base.den = mlt_properties_get_double( properties, "fps" ); - c->time_base.num = mlt_properties_get_double( properties, "frame_rate_base" ); - c->time_base.num = 1; + c->time_base.den = mlt_properties_get_int( properties, "frame_rate_den" ); + c->time_base.num = mlt_properties_get_int( properties, "frame_rate_num" ); c->gop_size = mlt_properties_get_int( properties, "gop_size" ); c->pix_fmt = PIX_FMT_YUV420P; -- 1.7.4.4