| 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 CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 5 #ifndef CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 6 #define CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 // Notify |client_| of an error. Posts a task to avoid re-entrancy. | 58 // Notify |client_| of an error. Posts a task to avoid re-entrancy. |
| 59 void PostNotifyError(Error); | 59 void PostNotifyError(Error); |
| 60 | 60 |
| 61 void Send(IPC::Message* message); | 61 void Send(IPC::Message* message); |
| 62 | 62 |
| 63 // IPC handlers, proxying media::VideoDecodeAccelerator::Client for the GPU | 63 // IPC handlers, proxying media::VideoDecodeAccelerator::Client for the GPU |
| 64 // process. Should not be called directly. | 64 // process. Should not be called directly. |
| 65 void OnCdmAttached(bool success); | 65 void OnCdmAttached(bool success); |
| 66 void OnBitstreamBufferProcessed(int32_t bitstream_buffer_id); | 66 void OnBitstreamBufferProcessed(int32_t bitstream_buffer_id); |
| 67 void OnProvidePictureBuffer(uint32_t num_requested_buffers, | 67 void OnProvidePictureBuffer(uint32_t num_requested_buffers, |
| 68 uint32_t textures_per_buffer, |
| 68 const gfx::Size& dimensions, | 69 const gfx::Size& dimensions, |
| 69 uint32_t texture_target); | 70 uint32_t texture_target); |
| 70 void OnDismissPictureBuffer(int32_t picture_buffer_id); | 71 void OnDismissPictureBuffer(int32_t picture_buffer_id); |
| 71 void OnPictureReady(int32_t picture_buffer_id, | 72 void OnPictureReady(int32_t picture_buffer_id, |
| 72 int32_t bitstream_buffer_id, | 73 int32_t bitstream_buffer_id, |
| 73 const gfx::Rect& visible_rect, | 74 const gfx::Rect& visible_rect, |
| 74 bool allow_overlay, | 75 bool allow_overlay, |
| 75 bool size_changed); | 76 bool size_changed); |
| 76 void OnFlushDone(); | 77 void OnFlushDone(); |
| 77 void OnResetDone(); | 78 void OnResetDone(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 98 | 99 |
| 99 // WeakPtr factory for posting tasks back to itself. | 100 // WeakPtr factory for posting tasks back to itself. |
| 100 base::WeakPtrFactory<GpuVideoDecodeAcceleratorHost> weak_this_factory_; | 101 base::WeakPtrFactory<GpuVideoDecodeAcceleratorHost> weak_this_factory_; |
| 101 | 102 |
| 102 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecodeAcceleratorHost); | 103 DISALLOW_COPY_AND_ASSIGN(GpuVideoDecodeAcceleratorHost); |
| 103 }; | 104 }; |
| 104 | 105 |
| 105 } // namespace content | 106 } // namespace content |
| 106 | 107 |
| 107 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ | 108 #endif // CONTENT_COMMON_GPU_CLIENT_GPU_VIDEO_DECODE_ACCELERATOR_HOST_H_ |
| OLD | NEW |