aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Browet <koying@semperpax.com>2013-09-26 10:55:55 -0700
committerChris Browet <koying@semperpax.com>2013-09-26 10:55:55 -0700
commit6742497221ec146f33627434af044c4912c5e42f (patch)
treebc82fe905a9b94896ebd0be192ae73fb43077417
parent75ef7398507c8af444d768b6d34e8d686ef84269 (diff)
parent4ea0c6f22e0ecb19700cf2d2ad65a712b6b52d93 (diff)
Merge pull request #3334 from koying/CHGstfrockchip
CHG: [stagefright] remove Rockchip blacklist (solved in latest firmwares)
-rw-r--r--xbmc/cores/dvdplayer/DVDCodecs/Video/StageFrightVideo.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/xbmc/cores/dvdplayer/DVDCodecs/Video/StageFrightVideo.cpp b/xbmc/cores/dvdplayer/DVDCodecs/Video/StageFrightVideo.cpp
index d2373eabee..4060f3bc65 100644
--- a/xbmc/cores/dvdplayer/DVDCodecs/Video/StageFrightVideo.cpp
+++ b/xbmc/cores/dvdplayer/DVDCodecs/Video/StageFrightVideo.cpp
@@ -541,19 +541,6 @@ bool CStageFrightVideo::Open(CDVDStreamInfo &hints)
CLog::Log(LOGERROR, "%s::%s - %s\n", CLASSNAME, __func__,"Blacklisted component (MP4)");
goto fail;
}
- else if (!strncmp(component, "OMX.rk.", 7))
- {
- if (g_advancedSettings.m_stagefrightConfig.useAVCcodec != 1 && g_advancedSettings.m_stagefrightConfig.useMP4codec != 1)
- {
- if (p->width % 32 != 0 || p->height % 16 != 0)
- {
- // Buggy. Hard crash on non MOD16 height videos and stride errors for non MOD32 width
- CLog::Log(LOGERROR, "%s::%s - %s\n", CLASSNAME, __func__,"Blacklisted component (MOD16)");
- goto fail;
-
- }
- }
- }
}
cropLeft = cropTop = cropRight = cropBottom = 0;