diff options
author | Mark Thompson <sw@jkqxz.net> | 2018-09-18 23:30:46 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2018-09-23 14:42:33 +0100 |
commit | 8479f99c7dd227d9cb94d262602f1298f71cf33b (patch) | |
tree | 1911420d4a3bb8c65fe1d884f2211cff3948b7a6 /libavcodec/vaapi_encode_vp8.c | |
parent | af532c921575eb8ee805cc2c64a914f6302442e1 (diff) | |
download | ffmpeg-8479f99c7dd227d9cb94d262602f1298f71cf33b.tar.gz |
vaapi_encode: Add support for max QP in rate control
This was added in libva 2.1.0 (VAAPI 1.1.0). Use AVCodecContext.qmax,
matching the existing behaviour for qmin, and clean up the defaults so
that we only pass min/max when explicitly set.
Diffstat (limited to 'libavcodec/vaapi_encode_vp8.c')
-rw-r--r-- | libavcodec/vaapi_encode_vp8.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vaapi_encode_vp8.c b/libavcodec/vaapi_encode_vp8.c index 40871a6bbf..db67136556 100644 --- a/libavcodec/vaapi_encode_vp8.c +++ b/libavcodec/vaapi_encode_vp8.c @@ -230,6 +230,8 @@ static const AVCodecDefault vaapi_encode_vp8_defaults[] = { { "bf", "0" }, { "g", "120" }, { "global_quality", "40" }, + { "qmin", "-1" }, + { "qmax", "-1" }, { NULL }, }; |