HomeSort by relevance Sort by last modified time
    Searched refs:cdm (Results 26 - 50 of 143) sorted by null

12 3 4 5 6

  /external/chromium_org/components/cdm/browser/
cdm_message_filter_android.h 14 namespace cdm { namespace
41 } // namespace cdm
  /external/chromium_org/media/cdm/ppapi/
cdm_file_io_test.h 15 #include "media/cdm/ppapi/api/content_decryption_module.h"
20 typedef base::Callback<cdm::FileIO*(cdm::FileIOClient* client)> CreateFileIOCB;
22 // A customizable test class that tests cdm::FileIO implementation.
39 // - When a cdm::FileIOClient method is called, the test runner compares the
46 class FileIOTest : public cdm::FileIOClient {
98 // cdm::FileIOClient implementation.
122 // All opened cdm::FileIO objects. We keep multiple cdm::FileIO objects open
123 // so that we can test multiple cdm::FileIO objects accessing the same file
    [all...]
cdm_file_io_impl.h 13 #include "media/cdm/ppapi/api/content_decryption_module.h"
30 // 2, When the file is opened by another CDM instance, or when we call Read()/
36 class CdmFileIOImpl : public cdm::FileIO {
52 CdmFileIOImpl(cdm::FileIOClient* client,
56 // cdm::FileIO implementation.
102 // - This assumes all CDM instances run in the same process for a given file
104 // - When multiple CDM instances are running in different profiles (e.g.
113 // After the lock is acquired, other cdm::FileIO objects in the same process
117 // Releases the file lock so that the file can be opened by other cdm::FileIO
164 cdm::FileIOClient* const client_
    [all...]
cdm_file_io_impl.cc 5 #include "media/cdm/ppapi/cdm_file_io_impl.h"
10 #include "media/cdm/ppapi/cdm_logging.h"
63 cdm::FileIOClient* client,
112 CDM_DLOG() << "File is in use by other cdm::FileIO objects.";
270 client_->OnOpenComplete(cdm::FileIOClient::kSuccess);
307 client_->OnReadComplete(cdm::FileIOClient::kSuccess, NULL, 0);
368 // size before CDM fires errors.
378 cdm::FileIOClient::kSuccess, data, local_buffer.size());
499 client_->OnWriteComplete(cdm::FileIOClient::kSuccess);
527 client_->OnOpenComplete(cdm::FileIOClient::kError)
    [all...]
cdm_helpers.cc 5 #include "media/cdm/ppapi/cdm_helpers.h"
13 #include "media/cdm/ppapi/api/content_decryption_module.h"
79 cdm::Buffer* PpbBufferAllocator::Allocate(uint32_t capacity) {
144 : format_(cdm::kUnknownVideoFormat),
  /external/chromium_org/content/browser/media/cdm/
browser_cdm_manager.cc 5 #include "content/browser/media/cdm/browser_cdm_manager.h"
98 // Only handles CDM messages.
235 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
236 if (!cdm) {
237 DLOG(WARNING) << "No CDM found for: " << render_frame_id << ", " << cdm_id;
276 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
277 if (!cdm) {
278 DLOG(WARNING) << "No CDM found for: " << render_frame_id << ", " << cdm_id;
290 cdm->UpdateSession(session_id, &response[0], response.size());
296 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id) local
371 BrowserCdm* cdm = GetCdm(render_frame_id, cdm_id); local
    [all...]
  /external/chromium_org/media/base/
renderer.h 64 // Associates the |cdm| with this Renderer.
65 virtual void SetCdm(MediaKeys* cdm) = 0;
  /external/chromium_org/media/blink/
null_encrypted_media_player_support.cc 56 blink::WebContentDecryptionModule* cdm) {
60 blink::WebContentDecryptionModule* cdm,
null_encrypted_media_player_support.h 48 blink::WebContentDecryptionModule* cdm) OVERRIDE;
50 blink::WebContentDecryptionModule* cdm,
webmediaplayer_impl.h 160 blink::WebContentDecryptionModule* cdm);
162 blink::WebContentDecryptionModule* cdm,
  /external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeys.cpp 119 // 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)
179 , m_cdm(cdm)
203 // FIXME: Check whether sessionType is actually supported by the CDM.
248 // We don't need the CDM anymore
    [all...]
  /external/chromium_org/components/cdm/renderer/
widevine_key_systems.cc 5 #include "components/cdm/renderer/widevine_key_systems.h"
19 namespace cdm { namespace
59 } // namespace cdm
android_key_systems.cc 5 #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
  /external/chromium_org/chrome/renderer/media/
chrome_key_systems.cc 15 #include "components/cdm/renderer/widevine_key_systems.h"
19 #include "components/cdm/renderer/android_key_systems.h"
64 "application/x-ppapi-clearkey-cdm";
94 // will be refused by ClearKeyCdm. This is to test the CDM initialization
147 DVLOG(1) << "Widevine CDM is not currently available.";
172 cdm::AddWidevineWithCodecs(cdm::WIDEVINE,
189 cdm::AddAndroidWidevine(key_systems_info);
  /external/chromium_org/content/browser/media/
media_web_contents_observer.cc 9 #include "content/browser/media/cdm/browser_cdm_manager.h"
142 NOTREACHED() << "OnSetCdm: CDM not found for " << cdm_id;
146 media::BrowserCdm* cdm = local
148 if (!cdm) {
149 NOTREACHED() << "OnSetCdm: CDM not found for " << cdm_id;
155 media_player->SetCdm(cdm);
  /external/chromium_org/content/renderer/media/crypto/
encrypted_media_player_support_impl.h 55 blink::WebContentDecryptionModule* cdm) OVERRIDE;
57 blink::WebContentDecryptionModule* cdm,
120 // Non-owned pointer to the CDM. Updated via calls to
encrypted_media_player_support_impl.cc 181 #error Browser side CDM in WMPI for prefixed EME API not supported yet.
308 blink::WebContentDecryptionModule* cdm) {
310 if (!cdm)
313 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
321 blink::WebContentDecryptionModule* cdm,
324 if (!cdm) {
332 web_cdm_ = ToWebContentDecryptionModuleImpl(cdm);
341 // is connected, setting the CDM will happen in SetDecryptorReadyCB().
  /external/chromium_org/media/base/android/
media_player_android.h 75 // Associates the |cdm| with this player.
76 virtual void SetCdm(BrowserCdm* cdm);
  /external/chromium_org/media/mojo/services/
mojo_renderer_impl.h 58 virtual void SetCdm(MediaKeys* cdm) OVERRIDE;
  /external/chromium_org/third_party/widevine/cdm/
widevine_cdm_version_h.target.darwin-arm.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)
widevine_cdm_version_h.target.darwin-arm64.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)
widevine_cdm_version_h.target.darwin-mips.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)
widevine_cdm_version_h.target.darwin-mips64.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)
widevine_cdm_version_h.target.darwin-x86.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)
widevine_cdm_version_h.target.darwin-x86_64.mk 17 $(gyp_shared_intermediate_dir)/widevine_cdm_version.h: $(LOCAL_PATH)/third_party/widevine/cdm/android/widevine_cdm_version.h $(GYP_TARGET_DEPENDENCIES) | $(ACP)

Completed in 908 milliseconds

12 3 4 5 6