Chromium Code Reviews| Index: ppapi/cpp/private/content_decryptor_private.h |
| diff --git a/ppapi/cpp/private/content_decryptor_private.h b/ppapi/cpp/private/content_decryptor_private.h |
| index 7a6189b5cbfc4ae592cc7f2c0665991c2e863a26..17dde463d662622e9a71bbe5e1b2dd14080fef5b 100644 |
| --- a/ppapi/cpp/private/content_decryptor_private.h |
| +++ b/ppapi/cpp/private/content_decryptor_private.h |
| @@ -36,6 +36,9 @@ class ContentDecryptor_Private { |
| virtual void CancelKeyRequest(const std::string& session_id) = 0; |
| virtual void Decrypt(pp::Buffer_Dev encrypted_buffer, |
| const PP_EncryptedBlockInfo& encrypted_block_info) = 0; |
| + virtual void InitializeVideoDecoder( |
| + const PP_VideoDecoderConfig& decoder_config, |
| + pp::Buffer_Dev encrypted_buffer) = 0; |
|
xhwang
2012/10/08 17:16:13
s/encrypted_buffer/extra_data_resource/ (or extra_
Tom Finegan
2012/10/08 23:23:27
Done.
|
| virtual void DecryptAndDecodeFrame( |
| pp::Buffer_Dev encrypted_frame, |
| const PP_EncryptedVideoFrameInfo& encrypted_video_frame_info) = 0; |
| @@ -57,6 +60,7 @@ class ContentDecryptor_Private { |
| int32_t system_code); |
| void DeliverBlock(pp::Buffer_Dev decrypted_block, |
| const PP_DecryptedBlockInfo& decrypted_block_info); |
| + void DecoderInitializeStatus(bool status, uint32_t request_id); |
| void DeliverFrame(pp::Buffer_Dev decrypted_frame, |
| const PP_DecryptedFrameInfo& decrypted_frame_info); |
| void DeliverSamples(pp::Buffer_Dev decrypted_samples, |