aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkszaq <kszaquitto@gmail.com>2016-10-01 11:42:12 +0200
committerkszaq <kszaquitto@gmail.com>2016-10-01 11:42:12 +0200
commit9a56006bf6f1546c5df83db1d5777c1757093cb5 (patch)
treee61193800df8f1f54c1e7fbb2a3c8188fee5d76b
parent968059c6a01d2a33bdb79d07cc742491ccd26644 (diff)
DVDVideoCodecAmlogic: Add more unsupported H264 formats to HW decoding blacklist
-rw-r--r--xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAmlogic.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAmlogic.cpp b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAmlogic.cpp
index c05cae0ca7..ce9d359d14 100644
--- a/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAmlogic.cpp
+++ b/xbmc/cores/VideoPlayer/DVDCodecs/Video/DVDVideoCodecAmlogic.cpp
@@ -104,7 +104,11 @@ bool CDVDVideoCodecAmlogic::Open(CDVDStreamInfo &hints, CDVDCodecOptions &option
{
case FF_PROFILE_H264_HIGH_10:
case FF_PROFILE_H264_HIGH_10_INTRA:
- // Amlogic decodes Hi10P with lots of artifacts
+ case FF_PROFILE_H264_HIGH_422:
+ case FF_PROFILE_H264_HIGH_422_INTRA:
+ case FF_PROFILE_H264_HIGH_444_PREDICTIVE:
+ case FF_PROFILE_H264_HIGH_444_INTRA:
+ case FF_PROFILE_H264_CAVLC_444:
return false;
}
if ((!aml_support_h264_4k2k()) && ((m_hints.width > 1920) || (m_hints.height > 1088)))