From: Anton Khirnov Date: Wed, 9 Jul 2014 10:33:03 +0000 (+0000) Subject: avconv: set the output stream timebase X-Git-Tag: v11_alpha1~230 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f3232a371cc88696184d9aef1f812656264e56c;p=platform%2Fupstream%2Flibav.git avconv: set the output stream timebase This is required by the new API. --- diff --git a/avconv.c b/avconv.c index 13968da..0ee7628 100644 --- a/avconv.c +++ b/avconv.c @@ -1972,6 +1972,8 @@ static int transcode_init(void) "Error initializing the output stream codec context.\n"); exit_program(1); } + + ost->st->time_base = ost->enc_ctx->time_base; } /* init input streams */