HomeSort by relevance Sort by last modified time
    Searched refs:decryptor (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/media/filters/
pipeline_integration_test_base.h 28 class Decryptor;
74 bool Start(const base::FilePath& file_path, Decryptor* decryptor);
133 scoped_ptr<Renderer> CreateRenderer(Decryptor* decryptor);
135 void SetDecryptor(Decryptor* decryptor,
pipeline_integration_test_base.cc 143 Decryptor* decryptor) {
153 CreateRenderer(decryptor),
240 Decryptor* decryptor) {
255 decryptor),
288 decryptor),
311 Decryptor* decryptor,
314 decryptor,
    [all...]
decrypting_audio_decoder.h 14 #include "media/base/decryptor.h"
25 class Decryptor;
27 // Decryptor-based AudioDecoder implementation that can decrypt and decode
33 // We do not currently have a way to let the Decryptor choose the output
35 // Decryptor implementations to decode audio into a fixed integer sample
71 // called when the decryptor has been completely attached to the pipeline.
72 void SetDecryptor(Decryptor* decryptor,
78 // Callback for Decryptor::InitializeAudioDecoder() during initialization.
83 // Callback for Decryptor::DecryptAndDecodeAudio()
    [all...]
decrypting_demuxer_stream.h 12 #include "media/base/decryptor.h"
25 // Decryptor-based DemuxerStream implementation that converts a potentially
71 // called when the decryptor has been completely attached to the pipeline.
72 void SetDecryptor(Decryptor* decryptor,
81 // Callback for Decryptor::Decrypt().
82 void DeliverBuffer(Decryptor::Status status,
92 // Returns Decryptor::StreamType converted from |stream_type_|.
93 Decryptor::StreamType GetDecryptorStreamType() const;
113 // Callback to request/cancel decryptor creation notification
    [all...]
decrypting_video_decoder.h 10 #include "media/base/decryptor.h"
21 class Decryptor;
23 // Decryptor-based VideoDecoder implementation that can decrypt and decode
60 // called when the decryptor has been completely attached to the pipeline.
61 void SetDecryptor(Decryptor* decryptor,
64 // Callback for Decryptor::InitializeVideoDecoder() during initialization.
69 // Callback for Decryptor::DecryptAndDecodeVideo().
71 Decryptor::Status status,
92 // Callback to request/cancel decryptor creation notification
    [all...]
decrypting_video_decoder.cc 15 #include "media/base/decryptor.h"
64 decryptor_->DeinitializeDecoder(Decryptor::kVideo);
111 decryptor_->ResetDecoder(Decryptor::kVideo);
139 decryptor_->DeinitializeDecoder(Decryptor::kVideo);
154 Decryptor* decryptor,
163 if (!decryptor) {
170 decryptor_ = decryptor;
196 Decryptor::kVideo,
224 Decryptor::Status status
    [all...]
decrypting_audio_decoder.cc 20 #include "media/base/decryptor.h"
85 decryptor_->DeinitializeDecoder(Decryptor::kAudio);
130 decryptor_->ResetDecoder(Decryptor::kAudio);
159 decryptor_->DeinitializeDecoder(Decryptor::kAudio);
174 Decryptor* decryptor,
184 if (!decryptor) {
191 decryptor_ = decryptor;
225 Decryptor::kAudio,
250 Decryptor::Status status
    [all...]
decrypting_demuxer_stream.cc 15 #include "media/base/decryptor.h"
164 Decryptor* decryptor,
174 if (!decryptor) {
181 decryptor_ = decryptor;
268 Decryptor::Status status,
273 DCHECK_NE(status, Decryptor::kNeedMoreData);
287 DCHECK_EQ(status == Decryptor::kSuccess, decrypted_buffer.get() != NULL);
289 if (status == Decryptor::kError) {
297 if (status == Decryptor::kNoKey)
    [all...]
audio_decoder_selector_unittest.cc 28 ACTION_P3(ExecuteCallbackWithVerifier, decryptor, done_cb, verifier) {
31 arg0.Run(decryptor, done_cb);
162 // Use NiceMock since we don't care about most of calls on the decryptor, e.g.
242 // There is a decryptor but the stream is not encrypted. The decoder will be
264 // The stream is encrypted and there's no decryptor. No decoder can be selected.
274 // Decryptor can only do decryption and there's no decoder available. No decoder
293 // Decryptor can do decryption-only and there's a decoder available. The decoder
316 // Decryptor can only do decryption and there are multiple decoders available.
345 // Decryptor can do decryption and decoding. A DecryptingAudioDecoder will be
decrypting_demuxer_stream_unittest.cc 53 // Sets the |decryptor| if the DecryptorReadyCB (arg0) is not null. Sets
54 // |is_decryptor_set| to true if a non-NULL |decryptor| has been set through the
56 ACTION_P3(SetDecryptorIfNotNull, decryptor, done_cb, is_decryptor_set) {
58 arg0.Run(decryptor, done_cb);
60 *is_decryptor_set = !arg0.is_null() && decryptor;
115 void ExpectDecryptorNotification(Decryptor* decryptor, bool expected_result) {
118 decryptor,
132 EXPECT_CALL(*decryptor_, RegisterNewKeyCB(Decryptor::kAudio, _))
172 // For clearbuffer, decryptor->Decrypt() will not be called
    [all...]
pipeline_integration_test.cc 139 AesDecryptor* decryptor) = 0;
151 AesDecryptor* decryptor() { function in class:media::FakeEncryptedMedia
255 AesDecryptor* decryptor) OVERRIDE {
257 decryptor->CreateSession(type,
278 decryptor->UpdateSession(current_session_id_,
297 AesDecryptor* decryptor) OVERRIDE {
304 decryptor->CreateSession(type,
319 decryptor->UpdateSession(current_session_id_,
383 AesDecryptor* decryptor) OVERRIDE {
596 CreateRenderer(encrypted_media->decryptor()),
    [all...]
video_decoder_selector_unittest.cc 27 ACTION_P3(ExecuteCallbackWithVerifier, decryptor, done_cb, verifier) {
30 arg0.Run(decryptor, done_cb);
158 // Use NiceMock since we don't care about most of calls on the decryptor, e.g.
238 // There is a decryptor but the stream is not encrypted. The decoder will be
260 // The stream is encrypted and there's no decryptor. No decoder can be selected.
270 // Decryptor can only do decryption and there's no decoder available. No decoder
289 // Decryptor can do decryption-only and there's a decoder available. The decoder
312 // Decryptor can only do decryption and there are multiple decoders available.
341 // Decryptor can do decryption and decoding. A DecryptingVideoDecoder will be
decrypting_audio_decoder_unittest.cc 101 void ExpectDecryptorNotification(Decryptor* decryptor, bool expected_result) {
103 RunCallback<0>(decryptor,
114 EXPECT_CALL(*decryptor_, RegisterNewKeyCB(Decryptor::kAudio, _))
128 EXPECT_CALL(*decryptor_, DeinitializeDecoder(Decryptor::kAudio));
131 EXPECT_CALL(*decryptor_, RegisterNewKeyCB(Decryptor::kAudio, _))
151 const Decryptor::AudioDecodeCB& audio_decode_cb) {
158 audio_decode_cb.Run(Decryptor::kNeedMoreData, Decryptor::AudioBuffers());
163 audio_decode_cb.Run(Decryptor::kSuccess
    [all...]
decrypting_video_decoder_unittest.cc 74 void ExpectDecryptorNotification(Decryptor* decryptor, bool expected_result) {
76 RunCallback<0>(decryptor,
97 EXPECT_CALL(*decryptor_, RegisterNewKeyCB(Decryptor::kVideo, _))
105 EXPECT_CALL(*decryptor_, DeinitializeDecoder(Decryptor::kVideo));
108 EXPECT_CALL(*decryptor_, RegisterNewKeyCB(Decryptor::kVideo, _))
127 const Decryptor::VideoDecodeCB& video_decode_cb) {
134 video_decode_cb.Run(Decryptor::kNeedMoreData,
140 video_decode_cb.Run(Decryptor::kSuccess, decoded_video_frame_);
175 // the decryptor
    [all...]
video_frame_stream_unittest.cc 32 ACTION_P3(ExecuteCallbackWithVerifier, decryptor, done_cb, verifier) {
35 arg0.Run(decryptor, done_cb);
88 // Decryptor can only decrypt (not decrypt-and-decode) so that
144 void Decrypt(Decryptor::StreamType stream_type,
146 const Decryptor::DecryptCB& decrypt_cb) {
149 decrypt_cb.Run(Decryptor::kNoKey, NULL);
153 DCHECK_EQ(stream_type, Decryptor::kVideo);
158 decrypt_cb.Run(Decryptor::kSuccess, decrypted);
247 // Initialize will fail because no decryptor is available.
345 // Use NiceMock since we don't care about most of calls on the decryptor,
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
Session.cpp 77 AesCtrDecryptor decryptor; local
78 return decryptor.decrypt(
  /external/chromium_org/chrome/utility/importer/
firefox_importer.cc 347 NSSDecryptor decryptor; local
348 if (!decryptor.Init(source_path_, source_path_) &&
349 !decryptor.Init(app_path_, source_path_)) {
358 decryptor.ReadAndParseSignons(file, &forms);
367 decryptor.ParseSignons(content, &forms);
  /external/chromium_org/chromeos/network/onc/
onc_utils.cc 139 crypto::Encryptor decryptor; local
140 if (!decryptor.Init(key.get(), crypto::Encryptor::CBC, initial_vector)) {
146 if (!decryptor.Decrypt(ciphertext, &plaintext)) {
  /external/chromium_org/crypto/
encryptor_unittest.cc 96 crypto::Encryptor decryptor; local
97 EXPECT_TRUE(decryptor.Init(wrong_key.get(), crypto::Encryptor::CBC, iv));
98 EXPECT_FALSE(decryptor.Decrypt(ciphertext, &decrypted));
  /frameworks/av/drm/mediadrm/plugins/clearkey/tests/
AesCtrDecryptorUnittest.cpp 39 AesCtrDecryptor decryptor; local
40 return decryptor.decrypt(keyVector, iv, source, destination, subSamples,
  /external/chromium_org/media/
media.target.darwin-arm.mk 95 media/base/decryptor.cc \
media.target.darwin-arm64.mk 95 media/base/decryptor.cc \
media.target.darwin-mips.mk 95 media/base/decryptor.cc \
media.target.darwin-mips64.mk 95 media/base/decryptor.cc \
media.target.darwin-x86.mk 95 media/base/decryptor.cc \

Completed in 6015 milliseconds

1 2