diff options
author | OvchinnikovDmitrii <ovchinnikov.dmitrii@gmail.com> | 2019-08-08 21:33:25 +0300 |
---|---|---|
committer | Philip Langdale <philipl@overt.org> | 2019-08-27 18:28:31 -0700 |
commit | f8ad2ddd7a51df5d6e768ba2a6f65ee64b94e29b (patch) | |
tree | 7d3c747e777b5f511962bac6cbaae2ad61aef481 /libavcodec/version.h | |
parent | b319feb05f40d23ec17c8346c819becc4c13210f (diff) | |
download | ffmpeg-f8ad2ddd7a51df5d6e768ba2a6f65ee64b94e29b.tar.gz |
libavcodec/amfenc: Vulkan initialization support for encoder.
Added linux support for amf encoder through vulkan.
To use h.264(AMD VCE) encoder on linux amdgru-pro version 19.20+ and
amf-amdgpu-pro package(amdgru-pro contains, but does not install
automatically) are required.
This driver can be installed using amdgpu-pro-install script in
official amd driver archive.
Initialization of amf encoder occurs in this order:
1) trying to initialize through dx11(only windows)
2) trying to initialize through dx9(only windows)
3) trying to initialize through vulkan
Only Vulkan initialization available on linux.
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 e70ebc0c70..cda6dbae47 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #define LIBAVCODEC_VERSION_MAJOR 58 #define LIBAVCODEC_VERSION_MINOR 55 -#define LIBAVCODEC_VERSION_MICRO 101 +#define LIBAVCODEC_VERSION_MICRO 102 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ LIBAVCODEC_VERSION_MINOR, \ |