Loading drm/libmediadrm/CryptoHal.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ Vector<sp<ICryptoFactory>> CryptoHal::makeCryptoFactories() { if (factories.size() == 0) { // must be in passthrough mode, load the default passthrough service auto passthrough = ICryptoFactory::getService("crypto"); auto passthrough = ICryptoFactory::getService(); if (passthrough != NULL) { ALOGI("makeCryptoFactories: using default crypto instance"); factories.push_back(passthrough); Loading drm/libmediadrm/DrmHal.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -220,7 +220,7 @@ Vector<sp<IDrmFactory>> DrmHal::makeDrmFactories() { if (factories.size() == 0) { // must be in passthrough mode, load the default passthrough service auto passthrough = IDrmFactory::getService("drm"); auto passthrough = IDrmFactory::getService(); if (passthrough != NULL) { ALOGI("makeDrmFactories: using default drm instance"); factories.push_back(passthrough); Loading Loading
drm/libmediadrm/CryptoHal.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -134,7 +134,7 @@ Vector<sp<ICryptoFactory>> CryptoHal::makeCryptoFactories() { if (factories.size() == 0) { // must be in passthrough mode, load the default passthrough service auto passthrough = ICryptoFactory::getService("crypto"); auto passthrough = ICryptoFactory::getService(); if (passthrough != NULL) { ALOGI("makeCryptoFactories: using default crypto instance"); factories.push_back(passthrough); Loading
drm/libmediadrm/DrmHal.cpp +1 −1 Original line number Diff line number Diff line Loading @@ -220,7 +220,7 @@ Vector<sp<IDrmFactory>> DrmHal::makeDrmFactories() { if (factories.size() == 0) { // must be in passthrough mode, load the default passthrough service auto passthrough = IDrmFactory::getService("drm"); auto passthrough = IDrmFactory::getService(); if (passthrough != NULL) { ALOGI("makeDrmFactories: using default drm instance"); factories.push_back(passthrough); Loading