diff options
author | Fei Wang <fei.w.wang@intel.com> | 2020-09-09 11:39:55 +0800 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-09-12 13:08:34 -0300 |
commit | 47be5a505657f478636ff08cef45f5c4c201ad23 (patch) | |
tree | 1c77e0d0a9c570dbcf87f71e85f3df191100b9ae /libavcodec/version.h | |
parent | bab3c32351e42f9f7f64947102f871903b2e635c (diff) | |
download | ffmpeg-47be5a505657f478636ff08cef45f5c4c201ad23.tar.gz |
avcodec: add AV1 hardware accelerated decoder
This AV1 decoder is currently only used for hardware accelerated decoding.
It can be extended into a native decoder in the future, so set its name to
"av1" and temporarily give it the lowest priority in the codec list.
Signed-off-by: Fei Wang <fei.w.wang@intel.com>
Signed-off-by: James Almer <jamrial@gmail.com>
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 4b221f96ad..5ce4ba55d9 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -28,7 +28,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 58 -#define LIBAVCODEC_VERSION_MINOR 105 +#define LIBAVCODEC_VERSION_MINOR 106 #define LIBAVCODEC_VERSION_MICRO 100 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |