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 MEDIA_CRYPTO_AES_DECRYPTOR_H_ | 5 #ifndef MEDIA_CRYPTO_AES_DECRYPTOR_H_ |
6 #define MEDIA_CRYPTO_AES_DECRYPTOR_H_ | 6 #define MEDIA_CRYPTO_AES_DECRYPTOR_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 int init_data_length, | 44 int init_data_length, |
45 const std::string& session_id) OVERRIDE; | 45 const std::string& session_id) OVERRIDE; |
46 virtual void CancelKeyRequest(const std::string& key_system, | 46 virtual void CancelKeyRequest(const std::string& key_system, |
47 const std::string& session_id) OVERRIDE; | 47 const std::string& session_id) OVERRIDE; |
48 // Decrypts |encrypted| buffer. |encrypted| should not be NULL. Returns a | 48 // Decrypts |encrypted| buffer. |encrypted| should not be NULL. Returns a |
49 // DecoderBuffer with the decrypted data if the decryption succeeded through | 49 // DecoderBuffer with the decrypted data if the decryption succeeded through |
50 // |decrypt_cb|. | 50 // |decrypt_cb|. |
51 virtual void Decrypt(const scoped_refptr<DecoderBuffer>& encrypted, | 51 virtual void Decrypt(const scoped_refptr<DecoderBuffer>& encrypted, |
52 const DecryptCB& decrypt_cb) OVERRIDE; | 52 const DecryptCB& decrypt_cb) OVERRIDE; |
53 virtual void CancelDecrypt() OVERRIDE; | 53 virtual void CancelDecrypt() OVERRIDE; |
| 54 virtual void InitializeVideoDecoder(const VideoDecoderConfig& config, |
| 55 const DecoderInitCB& init_cb) OVERRIDE; |
| 56 virtual void DecryptAndDecodeVideo( |
| 57 const scoped_refptr<DecoderBuffer>& encrypted, |
| 58 const VideoDecodeCB& video_decode_cb) OVERRIDE; |
| 59 virtual void CancelDecryptAndDecodeVideo() OVERRIDE; |
| 60 virtual void StopVideoDecoder() OVERRIDE; |
54 | 61 |
55 private: | 62 private: |
56 // TODO(fgalligan): Remove this and change KeyMap to use crypto::SymmetricKey | 63 // TODO(fgalligan): Remove this and change KeyMap to use crypto::SymmetricKey |
57 // as there are no decryptors that are performing an integrity check. | 64 // as there are no decryptors that are performing an integrity check. |
58 // Helper class that manages the decryption key. | 65 // Helper class that manages the decryption key. |
59 class DecryptionKey { | 66 class DecryptionKey { |
60 public: | 67 public: |
61 explicit DecryptionKey(const std::string& secret); | 68 explicit DecryptionKey(const std::string& secret); |
62 ~DecryptionKey(); | 69 ~DecryptionKey(); |
63 | 70 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 static uint32 next_session_id_; | 106 static uint32 next_session_id_; |
100 | 107 |
101 DecryptorClient* const client_; | 108 DecryptorClient* const client_; |
102 | 109 |
103 DISALLOW_COPY_AND_ASSIGN(AesDecryptor); | 110 DISALLOW_COPY_AND_ASSIGN(AesDecryptor); |
104 }; | 111 }; |
105 | 112 |
106 } // namespace media | 113 } // namespace media |
107 | 114 |
108 #endif // MEDIA_CRYPTO_AES_DECRYPTOR_H_ | 115 #endif // MEDIA_CRYPTO_AES_DECRYPTOR_H_ |
OLD | NEW |