Browse Source

lavc/vaapi_encode: fix p_per_i calculate issue.

now gop_size <= (max_b_frames + 1) * p_per_i + 1 (IDR frame),
so celing p_per_i = (gop_size - 1 + max_b_frames) / (max_b_frames + 1)

Signed-off-by: Jun Zhao <jun.zhao@intel.com>
Signed-off-by: Leilei <leilei.shang@intel.com>
Signed-off-by: Mark Thompson <sw@jkqxz.net>
tags/n3.4
Jun Zhao Mark Thompson 9 years ago
parent
commit
08087f5462
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vaapi_encode.c

+ 1
- 1
libavcodec/vaapi_encode.c View File

@@ -1433,7 +1433,7 @@ av_cold int ff_vaapi_encode_init(AVCodecContext *avctx)
ctx->output_order = - ctx->output_delay - 1;

// Currently we never generate I frames, only IDR.
ctx->p_per_i = ((avctx->gop_size + avctx->max_b_frames) /
ctx->p_per_i = ((avctx->gop_size - 1 + avctx->max_b_frames) /
(avctx->max_b_frames + 1));
ctx->b_per_p = avctx->max_b_frames;



Loading…
Cancel
Save