projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
314b421
)
vaapi_h264: Fix CFR mode with frame_rate set in AVCodecContext
author
Mark Thompson
<sw@jkqxz.net>
Sat, 1 Oct 2016 08:48:44 +0000
(10:48 +0200)
committer
Mark Thompson
<sw@jkqxz.net>
Sun, 2 Oct 2016 19:23:18 +0000
(20:23 +0100)
libavcodec/vaapi_encode_h264.c
patch
|
blob
|
blame
|
history
diff --git
a/libavcodec/vaapi_encode_h264.c
b/libavcodec/vaapi_encode_h264.c
index
020f892
..
e90ed64
100644
(file)
--- a/
libavcodec/vaapi_encode_h264.c
+++ b/
libavcodec/vaapi_encode_h264.c
@@
-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;