| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/base/android/browser_cdm_factory_android.h" | 5 #include "media/base/android/browser_cdm_factory_android.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "media/base/android/media_drm_bridge.h" | 10 #include "media/base/android/media_drm_bridge.h" |
| 11 #include "media/base/media_switches.h" | 11 #include "media/base/media_switches.h" |
| 12 #include "media/base/provision_fetcher.h" |
| 12 #include "third_party/widevine/cdm/widevine_cdm_common.h" | 13 #include "third_party/widevine/cdm/widevine_cdm_common.h" |
| 13 | 14 |
| 14 namespace media { | 15 namespace media { |
| 15 | 16 |
| 16 ScopedBrowserCdmPtr BrowserCdmFactoryAndroid::CreateBrowserCdm( | 17 ScopedBrowserCdmPtr BrowserCdmFactoryAndroid::CreateBrowserCdm( |
| 17 const std::string& key_system, | 18 const std::string& key_system, |
| 18 bool use_hw_secure_codecs, | 19 bool use_hw_secure_codecs, |
| 20 scoped_ptr<ProvisionFetcher> provision_fetcher, |
| 19 const SessionMessageCB& session_message_cb, | 21 const SessionMessageCB& session_message_cb, |
| 20 const SessionClosedCB& session_closed_cb, | 22 const SessionClosedCB& session_closed_cb, |
| 21 const LegacySessionErrorCB& legacy_session_error_cb, | 23 const LegacySessionErrorCB& legacy_session_error_cb, |
| 22 const SessionKeysChangeCB& session_keys_change_cb, | 24 const SessionKeysChangeCB& session_keys_change_cb, |
| 23 const SessionExpirationUpdateCB& session_expiration_update_cb) { | 25 const SessionExpirationUpdateCB& session_expiration_update_cb) { |
| 24 if (!MediaDrmBridge::IsKeySystemSupported(key_system)) { | 26 if (!MediaDrmBridge::IsKeySystemSupported(key_system)) { |
| 25 NOTREACHED() << "Key system not supported unexpectedly: " << key_system; | 27 NOTREACHED() << "Key system not supported unexpectedly: " << key_system; |
| 26 return ScopedBrowserCdmPtr(); | 28 return ScopedBrowserCdmPtr(); |
| 27 } | 29 } |
| 28 | 30 |
| 29 ScopedMediaDrmBridgePtr cdm( | 31 ScopedMediaDrmBridgePtr cdm(MediaDrmBridge::Create( |
| 30 MediaDrmBridge::Create(key_system, session_message_cb, session_closed_cb, | 32 key_system, provision_fetcher.Pass(), session_message_cb, |
| 31 legacy_session_error_cb, session_keys_change_cb, | 33 session_closed_cb, legacy_session_error_cb, session_keys_change_cb, |
| 32 session_expiration_update_cb)); | 34 session_expiration_update_cb)); |
| 33 if (!cdm) { | 35 if (!cdm) { |
| 34 NOTREACHED() << "MediaDrmBridge cannot be created for " << key_system; | 36 NOTREACHED() << "MediaDrmBridge cannot be created for " << key_system; |
| 35 return ScopedBrowserCdmPtr(); | 37 return ScopedBrowserCdmPtr(); |
| 36 } | 38 } |
| 37 | 39 |
| 38 if (key_system == kWidevineKeySystem) { | 40 if (key_system == kWidevineKeySystem) { |
| 39 MediaDrmBridge::SecurityLevel security_level = | 41 MediaDrmBridge::SecurityLevel security_level = |
| 40 use_hw_secure_codecs ? MediaDrmBridge::SECURITY_LEVEL_1 | 42 use_hw_secure_codecs ? MediaDrmBridge::SECURITY_LEVEL_1 |
| 41 : MediaDrmBridge::SECURITY_LEVEL_3; | 43 : MediaDrmBridge::SECURITY_LEVEL_3; |
| 42 if (!cdm->SetSecurityLevel(security_level)) { | 44 if (!cdm->SetSecurityLevel(security_level)) { |
| 43 DVLOG(1) << "failed to set security level " << security_level; | 45 DVLOG(1) << "failed to set security level " << security_level; |
| 44 return ScopedBrowserCdmPtr(); | 46 return ScopedBrowserCdmPtr(); |
| 45 } | 47 } |
| 46 } else { | 48 } else { |
| 47 // Assume other key systems require hardware-secure codecs and thus do not | 49 // Assume other key systems require hardware-secure codecs and thus do not |
| 48 // support full compositing. | 50 // support full compositing. |
| 49 if (!use_hw_secure_codecs) { | 51 if (!use_hw_secure_codecs) { |
| 50 NOTREACHED() | 52 NOTREACHED() |
| 51 << key_system | 53 << key_system |
| 52 << " may require use_video_overlay_for_embedded_encrypted_video"; | 54 << " may require use_video_overlay_for_embedded_encrypted_video"; |
| 53 return ScopedBrowserCdmPtr(); | 55 return ScopedBrowserCdmPtr(); |
| 54 } | 56 } |
| 55 } | 57 } |
| 56 | 58 |
| 57 return cdm.Pass(); | 59 return cdm.Pass(); |
| 58 } | 60 } |
| 59 | 61 |
| 60 } // namespace media | 62 } // namespace media |
| OLD | NEW |