| OLD | NEW |
| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER | 110 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER |
| 108 | 111 |
| 109 Client client_; | 112 Client client_; |
| 110 media::AesDecryptor decryptor_; | 113 media::AesDecryptor decryptor_; |
| 111 | 114 |
| 112 // Protects the |client_| from being accessed by the |decryptor_| | 115 // Protects the |client_| from being accessed by the |decryptor_| |
| 113 // simultaneously. | 116 // simultaneously. |
| 114 base::Lock client_lock_; | 117 base::Lock client_lock_; |
| 115 | 118 |
| 116 cdm::Allocator* const allocator_; | 119 cdm::Allocator* const allocator_; |
| 117 | 120 scoped_ptr<FFmpegCdmVideoDecoder> video_decoder_; |
| 118 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER) | 121 #if defined(CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER) |
| 119 cdm::Size video_size_; | 122 cdm::Size video_size_; |
| 120 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER | 123 #endif // CLEAR_KEY_CDM_USE_FAKE_VIDEO_DECODER |
| 121 }; | 124 }; |
| 122 | 125 |
| 123 } // namespace webkit_media | 126 } // namespace webkit_media |
| 124 | 127 |
| 125 #endif // WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_ | 128 #endif // WEBKIT_MEDIA_CRYPTO_PPAPI_CLEAR_KEY_CDM_H_ |
| OLD | NEW |