| 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 PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 5 #ifndef PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
| 6 #define PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 6 #define PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/private/pp_content_decryptor.h" | 8 #include "ppapi/c/private/pp_content_decryptor.h" |
| 9 #include "ppapi/c/private/ppb_content_decryptor_private.h" | 9 #include "ppapi/c/private/ppb_content_decryptor_private.h" |
| 10 #include "ppapi/c/private/ppp_content_decryptor_private.h" | 10 #include "ppapi/c/private/ppp_content_decryptor_private.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 virtual void CancelKeyRequest(const std::string& session_id) = 0; | 36 virtual void CancelKeyRequest(const std::string& session_id) = 0; |
| 37 virtual void Decrypt(pp::Buffer_Dev encrypted_buffer, | 37 virtual void Decrypt(pp::Buffer_Dev encrypted_buffer, |
| 38 const PP_EncryptedBlockInfo& encrypted_block_info) = 0; | 38 const PP_EncryptedBlockInfo& encrypted_block_info) = 0; |
| 39 virtual void InitializeVideoDecoder( | 39 virtual void InitializeVideoDecoder( |
| 40 const PP_VideoDecoderConfig& decoder_config, | 40 const PP_VideoDecoderConfig& decoder_config, |
| 41 pp::Buffer_Dev extra_data_resource) = 0; | 41 pp::Buffer_Dev extra_data_resource) = 0; |
| 42 virtual void DeinitializeDecoder(PP_DecryptorStreamType decoder_type, | 42 virtual void DeinitializeDecoder(PP_DecryptorStreamType decoder_type, |
| 43 uint32_t request_id) = 0; | 43 uint32_t request_id) = 0; |
| 44 virtual void ResetDecoder(PP_DecryptorStreamType decoder_type, | 44 virtual void ResetDecoder(PP_DecryptorStreamType decoder_type, |
| 45 uint32_t request_id) = 0; | 45 uint32_t request_id) = 0; |
| 46 virtual void DecryptAndDecodeFrame( | 46 virtual void DecryptAndDecode( |
| 47 pp::Buffer_Dev encrypted_frame, | 47 PP_DecryptorStreamType decoder_type, |
| 48 const PP_EncryptedVideoFrameInfo& encrypted_video_frame_info) = 0; | 48 pp::Buffer_Dev encrypted_buffer, |
| 49 const PP_EncryptedBlockInfo& encrypted_block_info) = 0; |
| 49 | 50 |
| 50 // PPB_ContentDecryptor_Private methods for passing data from the decryptor | 51 // PPB_ContentDecryptor_Private methods for passing data from the decryptor |
| 51 // to the browser. | 52 // to the browser. |
| 52 void NeedKey(const std::string& key_system, | 53 void NeedKey(const std::string& key_system, |
| 53 const std::string& session_id, | 54 const std::string& session_id, |
| 54 pp::VarArrayBuffer init_data); | 55 pp::VarArrayBuffer init_data); |
| 55 void KeyAdded(const std::string& key_system, | 56 void KeyAdded(const std::string& key_system, |
| 56 const std::string& session_id); | 57 const std::string& session_id); |
| 57 void KeyMessage(const std::string& key_system, | 58 void KeyMessage(const std::string& key_system, |
| 58 const std::string& session_id, | 59 const std::string& session_id, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 74 void DeliverSamples(pp::Buffer_Dev decrypted_samples, | 75 void DeliverSamples(pp::Buffer_Dev decrypted_samples, |
| 75 const PP_DecryptedBlockInfo& decrypted_block_info); | 76 const PP_DecryptedBlockInfo& decrypted_block_info); |
| 76 | 77 |
| 77 private: | 78 private: |
| 78 InstanceHandle associated_instance_; | 79 InstanceHandle associated_instance_; |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 } // namespace pp | 82 } // namespace pp |
| 82 | 83 |
| 83 #endif // PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ | 84 #endif // PPAPI_CPP_PRIVATE_CONTENT_DECRYPTOR_PRIVATE_H_ |
| OLD | NEW |