Home | History | Annotate | Download | only in crypto

Lines Matching refs:stream_type

138 void PpapiDecryptor::RegisterNewKeyCB(StreamType stream_type,
140 switch (stream_type) {
153 StreamType stream_type,
159 stream_type, encrypted, decrypt_cb));
163 DVLOG(3) << "Decrypt() - stream_type: " << stream_type;
164 if (!plugin_cdm_delegate_->Decrypt(stream_type, encrypted, decrypt_cb))
168 void PpapiDecryptor::CancelDecrypt(StreamType stream_type) {
169 DVLOG(1) << "CancelDecrypt() - stream_type: " << stream_type;
170 plugin_cdm_delegate_->CancelDecrypt(stream_type);
245 void PpapiDecryptor::ResetDecoder(StreamType stream_type) {
248 &PpapiDecryptor::ResetDecoder, weak_this_, stream_type));
252 DVLOG(2) << "ResetDecoder() - stream_type: " << stream_type;
253 plugin_cdm_delegate_->ResetDecoder(stream_type);
256 void PpapiDecryptor::DeinitializeDecoder(StreamType stream_type) {
259 &PpapiDecryptor::DeinitializeDecoder, weak_this_, stream_type));
263 DVLOG(2) << "DeinitializeDecoder() - stream_type: " << stream_type;
264 plugin_cdm_delegate_->DeinitializeDecoder(stream_type);
272 void PpapiDecryptor::OnDecoderInitialized(StreamType stream_type,
274 switch (stream_type) {