diff options
author | RĂ©mi Denis-Courmont <remi@remlab.net> | 2014-10-14 12:59:54 +0300 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2014-10-15 06:21:56 +0000 |
commit | d565fef1b83b6c5f8afb32229260b79f67c68109 (patch) | |
tree | 41e5ec95bdd57b55a43c4f73b2c2f2b4145e4f24 /libavcodec/version.h | |
parent | c1724623ce0433c6a9ee72133b1fd4db75ec7193 (diff) | |
download | ffmpeg-d565fef1b83b6c5f8afb32229260b79f67c68109.tar.gz |
vdpau: add AV_HWACCEL_FLAG_IGNORE_LEVEL to skip the codec level check
Decoding acceleration may work even if the codec level is higher than
the stated limit of the VDPAU driver. Or the problem may be considered
acceptable by the user. This flag allows skipping the codec level
capability checks and proceed with decoding.
Applications should obviously not set this flag by default, but only if
the user explicitly requested this behavior (and presumably knows how
to turn it back off if it fails).
Signed-off-by: Anton Khirnov <anton@khirnov.net>
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 c44686d6ec..097dee392b 100644 --- a/libavcodec/version.h +++ b/libavcodec/version.h @@ -29,7 +29,7 @@ #include "libavutil/version.h" #define LIBAVCODEC_VERSION_MAJOR 56 -#define LIBAVCODEC_VERSION_MINOR 3 +#define LIBAVCODEC_VERSION_MINOR 4 #define LIBAVCODEC_VERSION_MICRO 0 #define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \ |