OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ | 5 #ifndef MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ |
6 #define MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ | 6 #define MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 const scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; | 152 const scoped_refptr<base::SingleThreadTaskRunner> main_task_runner_; |
153 | 153 |
154 // GPU IO thread task runner. | 154 // GPU IO thread task runner. |
155 const scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; | 155 const scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_; |
156 | 156 |
157 // Task runner used for posting encode tasks. If | 157 // Task runner used for posting encode tasks. If |
158 // TryToSetupEncodeOnSeperateThread() is true, |io_task_runner_| is used, | 158 // TryToSetupEncodeOnSeperateThread() is true, |io_task_runner_| is used, |
159 // otherwise |main_thread_task_runner_|. | 159 // otherwise |main_thread_task_runner_|. |
160 scoped_refptr<base::SingleThreadTaskRunner> encode_task_runner_; | 160 scoped_refptr<base::SingleThreadTaskRunner> encode_task_runner_; |
161 | 161 |
| 162 base::WeakPtr<GpuVideoEncodeAccelerator> weak_this_for_encoder_worker_; |
| 163 base::WeakPtr<GpuVideoEncodeAccelerator> weak_this_; |
| 164 |
162 // Weak pointer for referring back to |this| on |encoder_worker_task_runner_|. | 165 // Weak pointer for referring back to |this| on |encoder_worker_task_runner_|. |
163 base::WeakPtrFactory<GpuVideoEncodeAccelerator> | 166 base::WeakPtrFactory<GpuVideoEncodeAccelerator> |
164 weak_this_factory_for_encoder_worker_; | 167 weak_this_factory_for_encoder_worker_; |
165 | 168 |
166 // Weak pointer for VideoFrames that refer back to |this| on | 169 // Weak pointer for VideoFrames that refer back to |this| on |
167 // |main_task_runner| or |io_task_runner_|. | 170 // |main_task_runner| or |io_task_runner_|. |io_task_runner_| is used if and |
| 171 // only if |filter_| is applied. |
168 base::WeakPtrFactory<GpuVideoEncodeAccelerator> weak_this_factory_; | 172 base::WeakPtrFactory<GpuVideoEncodeAccelerator> weak_this_factory_; |
169 | 173 |
170 DISALLOW_COPY_AND_ASSIGN(GpuVideoEncodeAccelerator); | 174 DISALLOW_COPY_AND_ASSIGN(GpuVideoEncodeAccelerator); |
171 }; | 175 }; |
172 | 176 |
173 } // namespace media | 177 } // namespace media |
174 | 178 |
175 #endif // MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ | 179 #endif // MEDIA_GPU_IPC_SERVICE_GPU_VIDEO_ENCODE_ACCELERATOR_H_ |
OLD | NEW |