diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-09-09 22:49:14 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-09-12 22:11:55 +0100 |
commit | 30645174e333c7db1946ab09be769db9be9d7481 (patch) | |
tree | 0d16ee3a5f564803891c992ea21d230b68bcf116 | |
parent | f940c859c23ae201b0170cf541ea8f6b7a52dd49 (diff) | |
download | ffmpeg-30645174e333c7db1946ab09be769db9be9d7481.tar.gz |
vaapi_h264: Fix CPB/DPB delays
This should be ticks, not time_scale steps - it was wrong for all
framerates not a multiple of 1/2.
-rw-r--r-- | libavcodec/vaapi_encode_h264.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index 271644ebbe..1288249be7 100644 --- a/libavcodec/vaapi_encode_h264.c +++ b/libavcodec/vaapi_encode_h264.c @@ -612,10 +612,8 @@ static int vaapi_encode_h264_init_picture_params(AVCodecContext *avctx, if (opt->sei & SEI_TIMING) { memset(&priv->pic_timing, 0, sizeof(priv->pic_timing)); - priv->pic_timing.cpb_removal_delay = - 2 * sps->vui.num_units_in_tick * priv->cpb_delay; - priv->pic_timing.dpb_output_delay = - 2 * sps->vui.num_units_in_tick * priv->dpb_delay; + priv->pic_timing.cpb_removal_delay = 2 * priv->cpb_delay; + priv->pic_timing.dpb_output_delay = 2 * priv->dpb_delay; priv->sei_needed = 1; } |