OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "content/public/renderer/video_encode_accelerator.h" | 5 #include "content/public/renderer/video_encode_accelerator.h" |
6 | 6 |
7 #include "base/task_runner_util.h" | 7 #include "base/task_runner_util.h" |
8 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" | 8 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" |
9 #include "content/renderer/render_thread_impl.h" | 9 #include "content/renderer/render_thread_impl.h" |
10 #include "media/filters/gpu_video_accelerator_factories.h" | 10 #include "media/renderers/gpu_video_accelerator_factories.h" |
11 | 11 |
12 namespace content { | 12 namespace content { |
13 | 13 |
14 void CreateVideoEncodeAccelerator( | 14 void CreateVideoEncodeAccelerator( |
15 const OnCreateVideoEncodeAcceleratorCallback& callback) { | 15 const OnCreateVideoEncodeAcceleratorCallback& callback) { |
16 DCHECK(!callback.is_null()); | 16 DCHECK(!callback.is_null()); |
17 | 17 |
18 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories = | 18 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories = |
19 RenderThreadImpl::current()->GetGpuFactories(); | 19 RenderThreadImpl::current()->GetGpuFactories(); |
20 if (!gpu_factories.get()) { | 20 if (!gpu_factories.get()) { |
(...skipping 15 matching lines...) Expand all Loading... |
36 std::vector<media::VideoEncodeAccelerator::SupportedProfile> | 36 std::vector<media::VideoEncodeAccelerator::SupportedProfile> |
37 GetSupportedVideoEncodeAcceleratorProfiles() { | 37 GetSupportedVideoEncodeAcceleratorProfiles() { |
38 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories = | 38 scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories = |
39 RenderThreadImpl::current()->GetGpuFactories(); | 39 RenderThreadImpl::current()->GetGpuFactories(); |
40 if (!gpu_factories.get()) | 40 if (!gpu_factories.get()) |
41 return std::vector<media::VideoEncodeAccelerator::SupportedProfile>(); | 41 return std::vector<media::VideoEncodeAccelerator::SupportedProfile>(); |
42 return gpu_factories->GetVideoEncodeAcceleratorSupportedProfiles(); | 42 return gpu_factories->GetVideoEncodeAcceleratorSupportedProfiles(); |
43 } | 43 } |
44 | 44 |
45 } // namespace content | 45 } // namespace content |
OLD | NEW |