From 01c17b5224ce0c9899a58f639ef6611fe626ef5f Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 15 Jul 2014 15:45:06 +0200 Subject: [PATCH] ffmpeg: Fix copying timebase to muxer context Fixes Ticket3741 Signed-off-by: Michael Niedermayer --- ffmpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg.c b/ffmpeg.c index 0bdbe14506..1c1a5599d0 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2880,7 +2880,7 @@ static int transcode_init(void) ost->st->codec->codec= ost->enc_ctx->codec; // copy timebase while removing common factors - ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0}); + ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0, 1}); } /* init input streams */