Module: libav Branch: master Commit: 78bc4d69ebe6189395e5c7e4719ddef50bc943ba
Author: Rémi Denis-Courmont <[email protected]> Committer: Luca Barbato <[email protected]> Date: Sat Jan 26 22:47:55 2013 +0200 hwaccel: do not offer unsupported pixel formats Signed-off-by: Luca Barbato <[email protected]> --- libavcodec/h264.c | 8 ++++++++ libavcodec/mpegvideo.c | 8 ++++++++ 2 files changed, 16 insertions(+), 0 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 62288b0..ffe7586 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -60,10 +60,18 @@ static const uint8_t div6[QP_MAX_NUM + 1] = { }; static const enum AVPixelFormat hwaccel_pixfmt_list_h264_jpeg_420[] = { +#if CONFIG_H264_DXVA2_HWACCEL AV_PIX_FMT_DXVA2_VLD, +#endif +#if CONFIG_H264_VAAPI_HWACCEL AV_PIX_FMT_VAAPI_VLD, +#endif +#if CONFIG_H264_VDA_HWACCEL AV_PIX_FMT_VDA_VLD, +#endif +#if CONFIG_H264_VDPAU_HWACCEL AV_PIX_FMT_VDPAU, +#endif AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_NONE }; diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 6320fbc..a4105a5 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -131,10 +131,18 @@ const enum AVPixelFormat ff_pixfmt_list_420[] = { }; const enum AVPixelFormat ff_hwaccel_pixfmt_list_420[] = { +#if CONFIG_DXVA2 AV_PIX_FMT_DXVA2_VLD, +#endif +#if CONFIG_VAAPI AV_PIX_FMT_VAAPI_VLD, +#endif +#if CONFIG_VDA AV_PIX_FMT_VDA_VLD, +#endif +#if CONFIG_VDPAU AV_PIX_FMT_VDPAU, +#endif AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
