Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: webkit/media/crypto/ppapi/clear_key_cdm.h

Issue 10899021: Add CDM video decoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add media library initialization. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_ 5 #ifndef WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_
6 #define WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_ 6 #define WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
13 #include "base/synchronization/lock.h" 14 #include "base/synchronization/lock.h"
14 #include "media/base/decryptor_client.h" 15 #include "media/base/decryptor_client.h"
15 #include "media/crypto/aes_decryptor.h" 16 #include "media/crypto/aes_decryptor.h"
16 #include "webkit/media/crypto/ppapi/content_decryption_module.h" 17 #include "webkit/media/crypto/ppapi/content_decryption_module.h"
17 18
18 // Enable this to use the fake decoder for testing. 19 // Enable this to use the fake decoder for testing.
19 // #define CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER 20 // #define CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER
20 21
21 namespace media { 22 namespace media {
22 class DecoderBuffer; 23 class DecoderBuffer;
23 } 24 }
24 25
25 namespace webkit_media { 26 namespace webkit_media {
26 27
28 class FFmpegCdmVideoDecoder;
29
27 // Clear key implementation of the cdm::ContentDecryptionModule interface. 30 // Clear key implementation of the cdm::ContentDecryptionModule interface.
28 class ClearKeyCdm : public cdm::ContentDecryptionModule { 31 class ClearKeyCdm : public cdm::ContentDecryptionModule {
29 public: 32 public:
30 explicit ClearKeyCdm(cdm::Allocator* allocator, cdm::CdmHost*); 33 explicit ClearKeyCdm(cdm::Allocator* allocator, cdm::CdmHost*);
31 virtual ~ClearKeyCdm(); 34 virtual ~ClearKeyCdm();
32 35
33 // ContentDecryptionModule implementation. 36 // ContentDecryptionModule implementation.
34 virtual cdm::Status GenerateKeyRequest( 37 virtual cdm::Status GenerateKeyRequest(
35 const uint8_t* init_data, 38 const uint8_t* init_data,
36 int init_data_size, 39 int init_data_size,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER 115 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER
113 116
114 Client client_; 117 Client client_;
115 media::AesDecryptor decryptor_; 118 media::AesDecryptor decryptor_;
116 119
117 // Protects the |client_| from being accessed by the |decryptor_| 120 // Protects the |client_| from being accessed by the |decryptor_|
118 // simultaneously. 121 // simultaneously.
119 base::Lock client_lock_; 122 base::Lock client_lock_;
120 123
121 cdm::Allocator* const allocator_; 124 cdm::Allocator* const allocator_;
122 125 scoped_ptr<FFmpegCdmVideoDecoder> video_decoder_;
123 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER) 126 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER)
124 cdm::Size video_size_; 127 cdm::Size video_size_;
125 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER 128 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER
126 }; 129 };
127 130
128 } // namespace webkit_media 131 } // namespace webkit_media
129 132
130 #endif // WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_ 133 #endif // WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698