diff options
author | Philip Langdale <philipl@overt.org> | 2022-08-04 20:35:04 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2022-08-09 09:22:49 -0700 |
commit | 109515e16dfffa6bb34de75c5253b7cbb1f12fa6 (patch) | |
tree | 42316804ffa8a0eb58f755b7dbafb1c797394cff /libavcodec/version.h | |
parent | 737298b4f7b60bc2b755fe8fa9135f50a496d94d (diff) | |
download | ffmpeg-109515e16dfffa6bb34de75c5253b7cbb1f12fa6.tar.gz |
lavc/vaapi_encode: enable 8bit 4:4:4 encoding for HEVC and VP9
Sufficiently recent Intel hardware is able to do encoding of 8bit 4:4:4
content in HEVC and VP9. The main requirement here is that the frames
must be provided in the AYUV format.
Enabling support is done by adding the appropriate encoding profiles
and noting that AYUV is officially a four channel format with alpha so
we must state that we expect all four channels.
Diffstat (limited to 'libavcodec/version.h')
-rw-r--r-- | libavcodec/version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/version.h b/libavcodec/version.h index e488eee355..777be76edf 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -30,7 +30,7 @@ #include "version_major.h" #define LIBAVCODEC_VERSION_MINOR 42 -#define LIBAVCODEC_VERSION_MICRO 100 +#define LIBAVCODEC_VERSION_MICRO 101 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |