Commit dd5123a0 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ce91b2ea'

* commit 'ce91b2ea':
  vdpau: return MAIN instead of BASELINE for H.264 CBP
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents ab9ba888 ce91b2ea
......@@ -660,8 +660,8 @@ do { \
}
case AV_CODEC_ID_H264:
switch (avctx->profile & ~FF_PROFILE_H264_INTRA) {
case FF_PROFILE_H264_CONSTRAINED_BASELINE:
case FF_PROFILE_H264_BASELINE: PROFILE(VDP_DECODER_PROFILE_H264_BASELINE);
case FF_PROFILE_H264_CONSTRAINED_BASELINE:
case FF_PROFILE_H264_MAIN: PROFILE(VDP_DECODER_PROFILE_H264_MAIN);
case FF_PROFILE_H264_HIGH: PROFILE(VDP_DECODER_PROFILE_H264_HIGH);
default: return AVERROR(EINVAL);
......
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