Commit 75173154 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ebd5320a'

* commit 'ebd5320a':
  vdpau: add support for 4:2:2 and 4:4:4 chroma sampling
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents d7aaeea5 ebd5320a
...@@ -1054,6 +1054,9 @@ static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback) ...@@ -1054,6 +1054,9 @@ static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
*fmt++ = AV_PIX_FMT_YUV420P14; *fmt++ = AV_PIX_FMT_YUV420P14;
break; break;
case 8: case 8:
#if CONFIG_H264_VDPAU_HWACCEL
*fmt++ = AV_PIX_FMT_VDPAU;
#endif
if (CHROMA444(h)) { if (CHROMA444(h)) {
if (h->avctx->colorspace == AVCOL_SPC_YCGCO) if (h->avctx->colorspace == AVCOL_SPC_YCGCO)
av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n"); av_log(h->avctx, AV_LOG_WARNING, "Detected unsupported YCgCo colorspace.\n");
...@@ -1078,9 +1081,6 @@ static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback) ...@@ -1078,9 +1081,6 @@ static enum AVPixelFormat get_pixel_format(H264Context *h, int force_callback)
#if CONFIG_H264_VDA_HWACCEL #if CONFIG_H264_VDA_HWACCEL
*fmt++ = AV_PIX_FMT_VDA_VLD; *fmt++ = AV_PIX_FMT_VDA_VLD;
*fmt++ = AV_PIX_FMT_VDA; *fmt++ = AV_PIX_FMT_VDA;
#endif
#if CONFIG_H264_VDPAU_HWACCEL
*fmt++ = AV_PIX_FMT_VDPAU;
#endif #endif
if (h->avctx->codec->pix_fmts) if (h->avctx->codec->pix_fmts)
choices = h->avctx->codec->pix_fmts; choices = h->avctx->codec->pix_fmts;
......
...@@ -155,6 +155,10 @@ int ff_vdpau_common_init(AVCodecContext *avctx, VdpDecoderProfile profile, ...@@ -155,6 +155,10 @@ int ff_vdpau_common_init(AVCodecContext *avctx, VdpDecoderProfile profile,
if (av_vdpau_get_surface_parameters(avctx, &type, &width, &height)) if (av_vdpau_get_surface_parameters(avctx, &type, &width, &height))
return AVERROR(ENOSYS); return AVERROR(ENOSYS);
if (!(hwctx->flags & AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH) &&
type != VDP_CHROMA_TYPE_420)
return AVERROR(ENOSYS);
status = vdctx->get_proc_address(vdctx->device, status = vdctx->get_proc_address(vdctx->device,
VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES, VDP_FUNC_ID_VIDEO_SURFACE_QUERY_CAPABILITIES,
&func); &func);
...@@ -744,7 +748,7 @@ int av_vdpau_bind_context(AVCodecContext *avctx, VdpDevice device, ...@@ -744,7 +748,7 @@ int av_vdpau_bind_context(AVCodecContext *avctx, VdpDevice device,
{ {
VDPAUHWContext *hwctx; VDPAUHWContext *hwctx;
if (flags & ~AV_HWACCEL_FLAG_IGNORE_LEVEL) if (flags & ~(AV_HWACCEL_FLAG_IGNORE_LEVEL|AV_HWACCEL_FLAG_ALLOW_HIGH_DEPTH))
return AVERROR(EINVAL); return AVERROR(EINVAL);
if (av_reallocp(&avctx->hwaccel_context, sizeof(*hwctx))) if (av_reallocp(&avctx->hwaccel_context, sizeof(*hwctx)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment