| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_THUNK_VIDEO_DECODER_API_H_ | 5 #ifndef PPAPI_THUNK_VIDEO_DECODER_API_H_ |
| 6 #define PPAPI_THUNK_VIDEO_DECODER_API_H_ | 6 #define PPAPI_THUNK_VIDEO_DECODER_API_H_ |
| 7 | 7 |
| 8 #include "ppapi/c/dev/ppb_video_decoder_dev.h" | 8 #include "ppapi/c/dev/ppb_video_decoder_dev.h" |
| 9 | 9 |
| 10 namespace ppapi { | 10 namespace ppapi { |
| 11 namespace thunk { | 11 namespace thunk { |
| 12 | 12 |
| 13 class PPB_VideoDecoder_API { | 13 class PPB_VideoDecoder_API { |
| 14 public: | 14 public: |
| 15 virtual ~PPB_VideoDecoder_API() {} |
| 16 |
| 15 virtual PP_Bool GetConfigs(const PP_VideoConfigElement* proto_config, | 17 virtual PP_Bool GetConfigs(const PP_VideoConfigElement* proto_config, |
| 16 PP_VideoConfigElement* matching_configs, | 18 PP_VideoConfigElement* matching_configs, |
| 17 uint32_t matching_configs_size, | 19 uint32_t matching_configs_size, |
| 18 uint32_t* num_of_matching_configs) = 0; | 20 uint32_t* num_of_matching_configs) = 0; |
| 19 virtual int32_t Initialize(PP_Resource context_id, | 21 virtual int32_t Initialize(PP_Resource context_id, |
| 20 const PP_VideoConfigElement* decoder_config, | 22 const PP_VideoConfigElement* decoder_config, |
| 21 PP_CompletionCallback callback) = 0; | 23 PP_CompletionCallback callback) = 0; |
| 22 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer, | 24 virtual int32_t Decode(const PP_VideoBitstreamBuffer_Dev* bitstream_buffer, |
| 23 PP_CompletionCallback callback) = 0; | 25 PP_CompletionCallback callback) = 0; |
| 24 virtual void AssignGLESBuffers(uint32_t no_of_buffers, | 26 virtual void AssignGLESBuffers(uint32_t no_of_buffers, |
| 25 const PP_GLESBuffer_Dev* buffers) = 0; | 27 const PP_GLESBuffer_Dev* buffers) = 0; |
| 26 virtual void AssignSysmemBuffers(uint32_t no_of_buffers, | 28 virtual void AssignSysmemBuffers(uint32_t no_of_buffers, |
| 27 const PP_SysmemBuffer_Dev* buffers) = 0; | 29 const PP_SysmemBuffer_Dev* buffers) = 0; |
| 28 virtual void ReusePictureBuffer(int32_t picture_buffer_id) = 0; | 30 virtual void ReusePictureBuffer(int32_t picture_buffer_id) = 0; |
| 29 virtual int32_t Flush(PP_CompletionCallback callback) = 0; | 31 virtual int32_t Flush(PP_CompletionCallback callback) = 0; |
| 30 virtual int32_t Abort(PP_CompletionCallback callback) = 0; | 32 virtual int32_t Abort(PP_CompletionCallback callback) = 0; |
| 31 }; | 33 }; |
| 32 | 34 |
| 33 } // namespace thunk | 35 } // namespace thunk |
| 34 } // namespace ppapi | 36 } // namespace ppapi |
| 35 | 37 |
| 36 #endif // PPAPI_THUNK_VIDEO_DECODER_API_H_ | 38 #endif // PPAPI_THUNK_VIDEO_DECODER_API_H_ |
| OLD | NEW |