| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 WEBKIT_GLUE_PLUGINS_PEPPER_VIDEO_DECODER_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ |
| 6 #define WEBKIT_GLUE_PLUGINS_PEPPER_VIDEO_DECODER_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" |
| 8 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 9 #include "webkit/glue/plugins/pepper_plugin_delegate.h" | 10 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 10 #include "webkit/glue/plugins/pepper_resource.h" | 11 #include "webkit/plugins/ppapi/resource.h" |
| 11 | 12 |
| 12 struct PP_VideoDecoderConfig_Dev; | 13 struct PP_VideoDecoderConfig_Dev; |
| 13 struct PP_VideoCompressedDataBuffer_Dev; | 14 struct PP_VideoCompressedDataBuffer_Dev; |
| 14 struct PP_VideoUncompressedDataBuffer_Dev; | 15 struct PP_VideoUncompressedDataBuffer_Dev; |
| 15 struct PPB_VideoDecoder_Dev; | 16 struct PPB_VideoDecoder_Dev; |
| 16 | 17 |
| 17 namespace pepper { | 18 namespace webkit { |
| 19 namespace plugins { |
| 20 namespace ppapi { |
| 18 | 21 |
| 19 class PluginInstance; | 22 class PluginInstance; |
| 20 | 23 |
| 21 class VideoDecoder : public Resource { | 24 class PPB_VideoDecoder_Impl : public Resource { |
| 22 public: | 25 public: |
| 23 VideoDecoder(PluginInstance* instance); | 26 PPB_VideoDecoder_Impl(PluginInstance* instance); |
| 24 virtual ~VideoDecoder(); | 27 virtual ~PPB_VideoDecoder_Impl(); |
| 25 | 28 |
| 26 // Returns a pointer to the interface implementing PPB_VideoDecoder that is | 29 // Returns a pointer to the interface implementing PPB_VideoDecoder that is |
| 27 // exposed to the plugin. | 30 // exposed to the plugin. |
| 28 static const PPB_VideoDecoder_Dev* GetInterface(); | 31 static const PPB_VideoDecoder_Dev* GetInterface(); |
| 29 | 32 |
| 30 // Resource overrides. | 33 // Resource overrides. |
| 31 virtual VideoDecoder* AsVideoDecoder(); | 34 virtual PPB_VideoDecoder_Impl* AsVideoDecoder(); |
| 32 | 35 |
| 33 PluginInstance* instance() { return instance_.get(); } | 36 PluginInstance* instance() { return instance_.get(); } |
| 34 | 37 |
| 35 // PPB_VideoDecoder implementation. | 38 // PPB_VideoDecoder implementation. |
| 36 bool Init(const PP_VideoDecoderConfig_Dev& decoder_config); | 39 bool Init(const PP_VideoDecoderConfig_Dev& decoder_config); |
| 37 bool Decode(PP_VideoCompressedDataBuffer_Dev& input_buffer); | 40 bool Decode(PP_VideoCompressedDataBuffer_Dev& input_buffer); |
| 38 int32_t Flush(PP_CompletionCallback& callback); | 41 int32_t Flush(PP_CompletionCallback& callback); |
| 39 bool ReturnUncompressedDataBuffer(PP_VideoUncompressedDataBuffer_Dev& buffer); | 42 bool ReturnUncompressedDataBuffer(PP_VideoUncompressedDataBuffer_Dev& buffer); |
| 40 | 43 |
| 41 private: | 44 private: |
| 42 // This is NULL before initialization, and if this VideoDecoder is | 45 // This is NULL before initialization, and if this PPB_VideoDecoder_Impl is |
| 43 // swapped with another. | 46 // swapped with another. |
| 44 scoped_ptr<PluginDelegate::PlatformVideoDecoder> platform_video_decoder_; | 47 scoped_ptr<PluginDelegate::PlatformVideoDecoder> platform_video_decoder_; |
| 45 scoped_refptr<PluginInstance> instance_; | 48 scoped_refptr<PluginInstance> instance_; |
| 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(PPB_VideoDecoder_Impl); |
| 46 }; | 51 }; |
| 47 | 52 |
| 48 } // namespace pepper | 53 } // namespace ppapi |
| 54 } // namespace plugins |
| 55 } // namespace webkit |
| 49 | 56 |
| 50 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_VIDEO_DECODER_H_ | 57 #endif // WEBKIT_PLUGINS_PPAPI_PPB_VIDEO_DECODER_IMPL_H_ |
| OLD | NEW |