summaryrefslogtreecommitdiffstats
path: root/drm
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-12-14 10:57:05 -0800
committerJames Dong <jdong@google.com>2011-12-14 11:01:59 -0800
commitd70c64db9f67dbe8f888de6b1bdcc835226ec526 (patch)
treee17eebfa186779ee6b04bb35c4260e12cb74fddc /drm
parent2e335cb02891d3653b938340a11698844e2c3d6d (diff)
downloadframeworks_base-d70c64db9f67dbe8f888de6b1bdcc835226ec526.zip
frameworks_base-d70c64db9f67dbe8f888de6b1bdcc835226ec526.tar.gz
frameworks_base-d70c64db9f67dbe8f888de6b1bdcc835226ec526.tar.bz2
Revert the following patches because they may lead to power regression because SHA/MD5 module is stuck
1. Revert "Fix drm flag setting missed in false drm recognition fix." This reverts commit 9f704f6c46a171357e49c411c83458b9d4565f3b. 2. Revert "Fixed the false drm recognition." This reverts commit aadbd80b307c817698ce5110ff8e002804d1b230. 3. Revert "Fix drm enumeration order, resolves failure to play forward lock ringtones" This reverts commit a5cbf023e349f2394ba6fc58d73b4375cfec4369. 4. Revert "Fix ANRs due to Widevine DRM plugin sniff taking too long." This reverts commit d0d19db1ca1c289b069db33f4665bcb9386064e9. As a result of the reverting, many ANRs from WV sniffing are back. related-to-bug: 5739618
Diffstat (limited to 'drm')
-rw-r--r--drm/drmserver/DrmManager.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/drm/drmserver/DrmManager.cpp b/drm/drmserver/DrmManager.cpp
index eaf884d..b2fa053 100644
--- a/drm/drmserver/DrmManager.cpp
+++ b/drm/drmserver/DrmManager.cpp
@@ -99,12 +99,11 @@ void DrmManager::removeUniqueId(int uniqueId) {
status_t DrmManager::loadPlugIns() {
- String8 pluginDirPath("/system/lib/drm");
- loadPlugIns(pluginDirPath);
-
String8 vendorPluginDirPath("/vendor/lib/drm");
loadPlugIns(vendorPluginDirPath);
+ String8 pluginDirPath("/system/lib/drm");
+ loadPlugIns(pluginDirPath);
return DRM_NO_ERROR;
}