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

Side by Side Diff: media/crypto/aes_decryptor.h

Issue 10969028: Add video decoding methods in Decryptor and add DecryptingVideoDecoder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reorder methods in the unittest 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
« no previous file with comments | « media/base/video_decoder.h ('k') | media/crypto/aes_decryptor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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
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_
OLDNEW
« no previous file with comments | « media/base/video_decoder.h ('k') | media/crypto/aes_decryptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698