mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-02-08 10:50:02 +00:00
vaapi_h264: Fix CFR mode with frame_rate set in AVCodecContext
(cherry picked from commit 17a0f9481c)
This commit is contained in:
parent
ded1859df1
commit
658c5afaa0
1 changed files with 2 additions and 2 deletions
|
|
@ -835,8 +835,8 @@ static int vaapi_encode_h264_init_sequence_params(AVCodecContext *avctx)
|
|||
|
||||
vseq->vui_fields.bits.timing_info_present_flag = 1;
|
||||
if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
|
||||
vseq->num_units_in_tick = avctx->framerate.num;
|
||||
vseq->time_scale = 2 * avctx->framerate.den;
|
||||
vseq->num_units_in_tick = avctx->framerate.den;
|
||||
vseq->time_scale = 2 * avctx->framerate.num;
|
||||
mseq->fixed_frame_rate_flag = 1;
|
||||
} else {
|
||||
vseq->num_units_in_tick = avctx->time_base.num;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue