diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-10-01 22:51:13 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-10-24 23:55:29 +0100 |
commit | f0a978a519167e5ad5dd479245a7b5da77488d43 (patch) | |
tree | c234bcc66f7d6036e3b7152b265d95270022d62a /libavcodec/vaapi_decode.c | |
parent | a126b67e1b01d5886afaa6bcad108a85392ce15c (diff) | |
download | ffmpeg-f0a978a519167e5ad5dd479245a7b5da77488d43.tar.gz |
vaapi: Remove H.264 baseline profile
This has been deprecated in libva2 because hardware does not and will not
support it. Therefore never consider it for decode, and for encode assume
the user meant constrained baseline profile instead.
Diffstat (limited to 'libavcodec/vaapi_decode.c')
-rw-r--r-- | libavcodec/vaapi_decode.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vaapi_decode.c b/libavcodec/vaapi_decode.c index 5ae98d8fd7..febe22a710 100644 --- a/libavcodec/vaapi_decode.c +++ b/libavcodec/vaapi_decode.c @@ -247,7 +247,6 @@ static const struct { MAP(MPEG4, MPEG4_MAIN, MPEG4Main ), MAP(H264, H264_CONSTRAINED_BASELINE, H264ConstrainedBaseline), - MAP(H264, H264_BASELINE, H264Baseline), MAP(H264, H264_MAIN, H264Main ), MAP(H264, H264_HIGH, H264High ), #if VA_CHECK_VERSION(0, 37, 0) |