diff options
author | Fei Wang <fei.w.wang@intel.com> | 2020-10-29 14:54:25 +0800 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2020-11-02 22:57:23 +0000 |
commit | 3308bbf7761a2723f784fcd6bb921dcbadc18c6e (patch) | |
tree | 2df5b35e92adb94eae25d82fa0c1b70798be39e2 /libavcodec/version.h | |
parent | dbd4254a614012ca36d75800eb9a7525742a6144 (diff) | |
download | ffmpeg-3308bbf7761a2723f784fcd6bb921dcbadc18c6e.tar.gz |
avcodec: add av1 VAAPI decoder
Example cmdline:
ffmpeg -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -v verbose \
-c:v av1 -i input.ivf -pix_fmt yuv420p -vsync passthrough -f md5 \
-y out.md5
Signed-off-by: Fei Wang <fei.w.wang@intel.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 78c4dd64ee..5173d0f090 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 112 -#define LIBAVCODEC_VERSION_MICRO 100 +#define LIBAVCODEC_VERSION_MICRO 101 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |