From 0ca8f17a2e588af1588228c3d1d486420ea963e5 Mon Sep 17 00:00:00 2001 From: Gloria Wang Date: Fri, 13 May 2011 15:07:37 -0700 Subject: [PATCH] Change the DRM error code name Merge to master Change-Id: I9851b24b5327476e1c20c13ab166bc3fc0f98eb9 --- proprietary/wvm/WVMExtractorImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proprietary/wvm/WVMExtractorImpl.cpp b/proprietary/wvm/WVMExtractorImpl.cpp index de65227b..f90fbd1e 100644 --- a/proprietary/wvm/WVMExtractorImpl.cpp +++ b/proprietary/wvm/WVMExtractorImpl.cpp @@ -99,10 +99,10 @@ WVMExtractorImpl::WVMExtractorImpl(sp dataSource) if (sDecryptHandle != NULL) { if (sDecryptHandle->status != RightsStatus::RIGHTS_VALID) { - mSetupStatus = ERROR_NO_LICENSE; + mSetupStatus = ERROR_DRM_NO_LICENSE; } } else - mSetupStatus = ERROR_NO_LICENSE; + mSetupStatus = ERROR_DRM_NO_LICENSE; // Set an info listener to handle messages from the drm plugin mInfoListener = new WVMInfoListener();