diff options
author | Mark Thompson <sw@jkqxz.net> | 2016-09-27 19:08:42 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2016-09-28 22:54:11 +0100 |
commit | 956a54129db522998a5abae869568dae2c9774cb (patch) | |
tree | 9aa8fe546e8559ac12c7b70d3dcbb4c2904ca41a | |
parent | 086e4b58b59ea3993107aa24d92bb962ec69667c (diff) | |
download | ffmpeg-956a54129db522998a5abae869568dae2c9774cb.tar.gz |
vaapi_h264: Set max_num_ref_frames to 1 when not using B frames
-rw-r--r-- | libavcodec/vaapi_encode_h264.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vaapi_encode_h264.c b/libavcodec/vaapi_encode_h264.c index 0cd966f662..020f8924e2 100644 --- a/libavcodec/vaapi_encode_h264.c +++ b/libavcodec/vaapi_encode_h264.c @@ -778,7 +778,7 @@ static int vaapi_encode_h264_init_sequence_params(AVCodecContext *avctx) vseq->level_idc = avctx->level; - vseq->max_num_ref_frames = 2; + vseq->max_num_ref_frames = 1 + (avctx->max_b_frames > 0); vseq->picture_width_in_mbs = priv->mb_width; vseq->picture_height_in_mbs = priv->mb_height; |