[FFmpeg-cvslog] vaapi_h265: Fix CFR mode with framerate set in AVCodecContext

Mark Thompson git at videolan.org
Wed Feb 8 23:01:14 EET 2017


ffmpeg | branch: master | Mark Thompson <sw at jkqxz.net> | Tue Nov 29 22:13:58 2016 +0000| [37de9ce713ebb65d8b040f4f83ba7542f0754485] | committer: Mark Thompson

vaapi_h265: Fix CFR mode with framerate set in AVCodecContext

Same issue as 17a0f9481cf07af0feb3838ca315b970117e8000.

(cherry picked from commit 7d81698b89172d2dcf1b78d4b42ba86262360559)

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=37de9ce713ebb65d8b040f4f83ba7542f0754485
---

 libavcodec/vaapi_encode_h265.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavcodec/vaapi_encode_h265.c b/libavcodec/vaapi_encode_h265.c
index 35665e4..6ed1270 100644
--- a/libavcodec/vaapi_encode_h265.c
+++ b/libavcodec/vaapi_encode_h265.c
@@ -825,8 +825,8 @@ static int vaapi_encode_h265_init_sequence_params(AVCodecContext *avctx)
 
         vseq->bits_per_second = avctx->bit_rate;
         if (avctx->framerate.num > 0 && avctx->framerate.den > 0) {
-            vseq->vui_num_units_in_tick = avctx->framerate.num;
-            vseq->vui_time_scale        = avctx->framerate.den;
+            vseq->vui_num_units_in_tick = avctx->framerate.den;
+            vseq->vui_time_scale        = avctx->framerate.num;
         } else {
             vseq->vui_num_units_in_tick = avctx->time_base.num;
             vseq->vui_time_scale        = avctx->time_base.den;



More information about the ffmpeg-cvslog mailing list