| 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 CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 5 #ifndef CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| 6 #define CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 6 #define CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 virtual bool OnMessageReceived(const IPC::Message& message); | 33 virtual bool OnMessageReceived(const IPC::Message& message); |
| 34 | 34 |
| 35 // media::VideoDecodeAccelerator implementation. | 35 // media::VideoDecodeAccelerator implementation. |
| 36 virtual const std::vector<uint32>& GetConfig( | 36 virtual const std::vector<uint32>& GetConfig( |
| 37 const std::vector<uint32>& prototype_config); | 37 const std::vector<uint32>& prototype_config); |
| 38 virtual bool Initialize(const std::vector<uint32>& config); | 38 virtual bool Initialize(const std::vector<uint32>& config); |
| 39 virtual bool Decode(media::BitstreamBuffer* bitstream_buffer, | 39 virtual bool Decode(media::BitstreamBuffer* bitstream_buffer, |
| 40 media::VideoDecodeAcceleratorCallback* callback); | 40 media::VideoDecodeAcceleratorCallback* callback); |
| 41 virtual void AssignPictureBuffer( | 41 virtual void AssignPictureBuffer( |
| 42 std::vector<PictureBuffer*> picture_buffers); | 42 std::vector<PictureBuffer*> picture_buffers); |
| 43 virtual void ReusePictureBuffer(PictureBuffer* picture_buffer); | 43 virtual void ReusePictureBuffer(uint32 picture_buffer_id); |
| 44 virtual bool Flush(media::VideoDecodeAcceleratorCallback* callback); | 44 virtual bool Flush(media::VideoDecodeAcceleratorCallback* callback); |
| 45 virtual bool Abort(media::VideoDecodeAcceleratorCallback* callback); | 45 virtual bool Abort(media::VideoDecodeAcceleratorCallback* callback); |
| 46 | 46 |
| 47 private: | 47 private: |
| 48 // Message loop that this object runs on. | 48 // Message loop that this object runs on. |
| 49 MessageLoop* message_loop_; | 49 MessageLoop* message_loop_; |
| 50 | 50 |
| 51 // A router used to send us IPC messages. | 51 // A router used to send us IPC messages. |
| 52 MessageRouter* router_; | 52 MessageRouter* router_; |
| 53 | 53 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 66 // Transfer buffers for both input and output. | 66 // Transfer buffers for both input and output. |
| 67 // TODO(vmr): move into plugin provided IPC buffers. | 67 // TODO(vmr): move into plugin provided IPC buffers. |
| 68 scoped_ptr<base::SharedMemory> input_transfer_buffer_; | 68 scoped_ptr<base::SharedMemory> input_transfer_buffer_; |
| 69 | 69 |
| 70 std::vector<uint32> configs_; | 70 std::vector<uint32> configs_; |
| 71 | 71 |
| 72 DISALLOW_COPY_AND_ASSIGN(VideoDecodeAcceleratorHost); | 72 DISALLOW_COPY_AND_ASSIGN(VideoDecodeAcceleratorHost); |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 #endif // CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 75 #endif // CONTENT_RENDERER_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| OLD | NEW |