Module: libav Branch: master Commit: 674b79148ff29f40cbd569f5585bf99c71204bf5
Author: Michael Niedermayer <[email protected]> Committer: Martin Storsjö <[email protected]> Date: Tue May 26 08:45:41 2015 +0200 hevc: Fix HWACCEL_MAX for D3D11 Signed-off-by: Martin Storsjö <[email protected]> --- libavcodec/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c index 62768aa..f6a6409 100644 --- a/libavcodec/hevc.c +++ b/libavcodec/hevc.c @@ -431,7 +431,7 @@ static void export_stream_params(AVCodecContext *avctx, static int set_sps(HEVCContext *s, const HEVCSPS *sps) { - #define HWACCEL_MAX (CONFIG_HEVC_DXVA2_HWACCEL) + #define HWACCEL_MAX (CONFIG_HEVC_DXVA2_HWACCEL + CONFIG_HEVC_D3D11VA_HWACCEL) enum AVPixelFormat pix_fmts[HWACCEL_MAX + 2], *fmt = pix_fmts; int ret; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
