diff options
author | Philip Langdale <philipl@overt.org> | 2022-08-19 16:55:44 -0700 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2022-08-25 19:04:10 -0700 |
commit | caf26a8a126d7b9853568ce0db2f6e04029fd1a2 (patch) | |
tree | 8b90c26d44d90b088a9cd442bb4be14350fb51f0 /libavcodec/version.h | |
parent | 45726aa1177ee7d9d17435f879c96ab3537d8ad3 (diff) | |
download | ffmpeg-caf26a8a126d7b9853568ce0db2f6e04029fd1a2.tar.gz |
lavc/vaapi: Switch preferred 8bit 444 format to VUYX
As vaapi doesn't actually do anything useful with the alpha channel,
and we have an alphaless format available, let's use that instead.
The changes here are mostly 1:1 switching, but do note the explicit
change in the number of declared channels from 4 to 3 to reflect that
the alpha is being ignored.
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 12421666b9..d7d5fca6b2 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 102 +#define LIBAVCODEC_VERSION_MICRO 103 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |