Commit 01c17b52 authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: Fix copying timebase to muxer context

Fixes Ticket3741
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7bf5084e
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment