Searched defs:cdm (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/components/cdm/renderer/
H A Dandroid_key_systems.h12 namespace cdm { namespace
22 } // namespace cdm
H A Dwidevine_key_systems.h12 namespace cdm { namespace
26 } // namespace cdm
H A Dandroid_key_systems.cc5 #include "components/cdm/renderer/android_key_systems.h"
11 #include "components/cdm/common/cdm_messages_android.h"
12 #include "components/cdm/renderer/widevine_key_systems.h"
20 namespace cdm { namespace
73 } // namespace cdm
H A Dwidevine_key_systems.cc5 #include "components/cdm/renderer/widevine_key_systems.h"
19 namespace cdm { namespace
59 } // namespace cdm
/external/chromium_org/components/cdm/browser/
H A Dcdm_message_filter_android.h14 namespace cdm { namespace
41 } // namespace cdm
H A Dcdm_message_filter_android.cc5 #include "components/cdm/browser/cdm_message_filter_android.h"
10 #include "components/cdm/common/cdm_messages_android.h"
20 namespace cdm { namespace
121 } // namespace cdm
/external/chromium_org/content/renderer/media/
H A Dwebcontentdecryptionmodule_impl.h83 blink::WebContentDecryptionModule* cdm) {
84 return static_cast<WebContentDecryptionModuleImpl*>(cdm);
82 ToWebContentDecryptionModuleImpl( blink::WebContentDecryptionModule* cdm) argument
/external/chromium_org/content/browser/media/
H A Dmedia_web_contents_observer.cc9 #include "content/browser/media/cdm/browser_cdm_manager.h"
146 media::BrowserCdm* cdm = local
148 if (!cdm) {
155 media_player->SetCdm(cdm);
/external/chromium_org/media/blink/
H A Dnull_encrypted_media_player_support.cc56 blink::WebContentDecryptionModule* cdm) {
60 blink::WebContentDecryptionModule* cdm,
55 SetContentDecryptionModule( blink::WebContentDecryptionModule* cdm) argument
59 SetContentDecryptionModule( blink::WebContentDecryptionModule* cdm, blink::WebContentDecryptionModuleResult result) argument
H A Dwebmediaplayer_impl.cc668 blink::WebContentDecryptionModule* cdm) {
671 encrypted_media_support_->SetContentDecryptionModule(cdm);
675 blink::WebContentDecryptionModule* cdm,
679 encrypted_media_support_->SetContentDecryptionModule(cdm, result);
667 setContentDecryptionModule( blink::WebContentDecryptionModule* cdm) argument
674 setContentDecryptionModule( blink::WebContentDecryptionModule* cdm, blink::WebContentDecryptionModuleResult result) argument
/external/chromium_org/media/mojo/services/
H A Dmojo_renderer_impl.cc92 void MojoRendererImpl::SetCdm(MediaKeys* cdm) { argument
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
H A DMediaKeys.cpp119 // 4.1 Let cdm be the content decryption module corresponding to
121 // 4.2 Load and initialize the cdm if necessary.
125 OwnPtr<WebContentDecryptionModule> cdm = controller->createContentDecryptionModule(executionContext(), m_keySystem); local
127 // 4.3 If cdm fails to load or initialize, reject promise with a new
130 if (!cdm) {
137 MediaKeys* mediaKeys = new MediaKeys(executionContext(), m_keySystem, cdm.release());
176 MediaKeys::MediaKeys(ExecutionContext* context, const String& keySystem, PassOwnPtr<WebContentDecryptionModule> cdm) argument
179 , m_cdm(cdm)
H A DMediaKeySession.cpp232 WebContentDecryptionModule* cdm = mediaKeys->contentDecryptionModule(); local
233 m_session = adoptPtr(cdm->createSession());
456 // 10.2 Let cdm be the CDM loaded during the initialization of
458 // 10.3 Use the cdm to execute the following steps:
462 // 10.3.2 If the init data is not supported by the cdm, reject
477 // Continue the update call by passing message to the cdm. Once
485 // 3.1 Let cdm be the cdm loaded in create().
486 // 3.2 Use the cdm to execute the following steps:
500 // It may be obtained from cdm
[all...]
/external/chromium_org/content/browser/media/cdm/
H A Dbrowser_cdm_manager.cc5 #include "content/browser/media/cdm/browser_cdm_manager.h"
235 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
236 if (!cdm) {
276 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
277 if (!cdm) {
290 cdm->UpdateSession(session_id, &response[0], response.size());
296 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
297 if (!cdm) {
303 cdm->ReleaseSession(session_id);
327 scoped_ptr<BrowserCdm> cdm(
371 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
[all...]
/external/chromium_org/media/filters/
H A Drenderer_impl.cc145 void RendererImpl::SetCdm(MediaKeys* cdm) { argument
/external/chromium_org/content/renderer/media/crypto/
H A Dencrypted_media_player_support_impl.cc308 blink::WebContentDecryptionModule* cdm) {
310 if (!cdm)
313 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
321 blink::WebContentDecryptionModule* cdm,
324 if (!cdm) {
332 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
307 SetContentDecryptionModule( blink::WebContentDecryptionModule* cdm) argument
320 SetContentDecryptionModule( blink::WebContentDecryptionModule* cdm, blink::WebContentDecryptionModuleResult result) argument
/external/chromium_org/media/cdm/ppapi/
H A Dcdm_wrapper.h13 #include "media/cdm/ppapi/api/content_decryption_module.h"
14 #include "media/cdm/ppapi/cdm_helpers.h"
15 #include "media/cdm/ppapi/supported_cdm_versions.h"
54 cdm::SessionType session_type) = 0;
75 virtual cdm::Status Decrypt(const cdm::InputBuffer& encrypted_buffer,
76 cdm::DecryptedBlock* decrypted_buffer) = 0;
77 virtual cdm::Status InitializeAudioDecoder(
78 const cdm::AudioDecoderConfig& audio_decoder_config) = 0;
79 virtual cdm
396 CdmWrapperImpl(CdmInterface* cdm) argument
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebMediaPlayer.h163 virtual void setContentDecryptionModule(WebContentDecryptionModule* cdm, WebContentDecryptionModuleResult result) { result.completeWithError(WebContentDecryptionModuleExceptionNotSupportedError, 0, "ERROR"); } argument
/external/chromium_org/media/base/android/
H A Dmedia_source_player.cc270 void MediaSourcePlayer::SetCdm(BrowserCdm* cdm) { argument
286 drm_bridge_ = static_cast<MediaDrmBridge*>(cdm);
/external/chromium_org/content/renderer/media/android/
H A Dwebmediaplayer_android.cc1645 blink::WebContentDecryptionModule* cdm) {
1649 if (!cdm)
1652 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
1666 blink::WebContentDecryptionModule* cdm,
1671 if (!cdm) {
1679 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
1644 setContentDecryptionModule( blink::WebContentDecryptionModule* cdm) argument
1665 setContentDecryptionModule( blink::WebContentDecryptionModule* cdm, blink::WebContentDecryptionModuleResult result) argument

Completed in 2197 milliseconds