diff options
author | Luca Barbato | 2015-06-11 16:56:31 +0200 |
---|---|---|
committer | Luca Barbato | 2015-06-21 16:27:18 +0300 |
commit | 8655c54160767de1a6b96f8bc310d6e4eaceff48 (patch) | |
tree | b3804040d919fb5a124323c01977e1f57e800181 /libavcodec/libvpx.h | |
parent | 05bf3f54e6078716f6267df530bf1d474ca3d606 (diff) |
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/libvpx.h')
-rw-r--r-- | libavcodec/libvpx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/libvpx.h b/libavcodec/libvpx.h index cb1ed0959f..b990b769b3 100644 --- a/libavcodec/libvpx.h +++ b/libavcodec/libvpx.h @@ -23,6 +23,7 @@ #include "avcodec.h" -int ff_vp9_check_experimental(AVCodecContext *avctx); +enum AVPixelFormat ff_vpx_imgfmt_to_pixfmt(vpx_img_fmt_t img); +vpx_img_fmt_t ff_vpx_pixfmt_to_imgfmt(enum AVPixelFormat pix); #endif /* AVCODEC_LIBVPX_H */ |