mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 05:50:43 +00:00
ffmpeg: remove common factors from copied timebase
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8e7c8325d2
commit
9098f0ecd7
3
ffmpeg.c
3
ffmpeg.c
@ -2879,7 +2879,8 @@ static int transcode_init(void)
|
||||
}
|
||||
ost->st->codec->codec= ost->enc_ctx->codec;
|
||||
|
||||
ost->st->time_base = ost->enc_ctx->time_base;
|
||||
// copy timebase while removing common factors
|
||||
ost->st->time_base = av_add_q(ost->enc_ctx->time_base, (AVRational){0});
|
||||
}
|
||||
|
||||
/* init input streams */
|
||||
|
Loading…
Reference in New Issue
Block a user