diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-06-11 16:56:31 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-06-21 16:27:18 +0300 |
commit | 8655c54160767de1a6b96f8bc310d6e4eaceff48 (patch) | |
tree | b3804040d919fb5a124323c01977e1f57e800181 /libavcodec/avcodec.h | |
parent | 05bf3f54e6078716f6267df530bf1d474ca3d606 (diff) | |
download | ffmpeg-8655c54160767de1a6b96f8bc310d6e4eaceff48.tar.gz |
libvpx: Support the vp9 extended profiles
Bump the minimum libvpx version to 1.3.0 and rework the configure logic
to fail only if no decoders and encoders are found.
Based on the original patch from Vittorio.
Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 7edea2c5bc..e82867ecc0 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2718,6 +2718,10 @@ typedef struct AVCodecContext { #define FF_PROFILE_JPEG2000_DCINEMA_2K 3 #define FF_PROFILE_JPEG2000_DCINEMA_4K 4 +#define FF_PROFILE_VP9_0 0 +#define FF_PROFILE_VP9_1 1 +#define FF_PROFILE_VP9_2 2 +#define FF_PROFILE_VP9_3 3 #define FF_PROFILE_HEVC_MAIN 1 #define FF_PROFILE_HEVC_MAIN_10 2 |