| 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 #ifndef MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ | 5 #ifndef MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| 6 #define MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ | 6 #define MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "media/base/media_export.h" | 9 #include "media/base/media_export.h" |
| 10 #include "media/base/renderer_factory.h" | 10 #include "media/base/renderer_factory.h" |
| 11 | 11 |
| 12 namespace media { | 12 namespace media { |
| 13 | 13 |
| 14 class AudioHardwareConfig; | 14 class AudioHardwareConfig; |
| 15 class AudioRendererSink; | 15 class AudioRendererSink; |
| 16 class GpuVideoAcceleratorFactories; | 16 class GpuVideoAcceleratorFactories; |
| 17 class MediaLog; | 17 class MediaLog; |
| 18 class VideoRendererSink; | |
| 19 | 18 |
| 20 // The default factory class for creating RendererImpl. | 19 // The default factory class for creating RendererImpl. |
| 21 class MEDIA_EXPORT DefaultRendererFactory : public RendererFactory { | 20 class MEDIA_EXPORT DefaultRendererFactory : public RendererFactory { |
| 22 public: | 21 public: |
| 23 DefaultRendererFactory( | 22 DefaultRendererFactory( |
| 24 const scoped_refptr<MediaLog>& media_log, | 23 const scoped_refptr<MediaLog>& media_log, |
| 25 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories, | 24 const scoped_refptr<GpuVideoAcceleratorFactories>& gpu_factories, |
| 26 const AudioHardwareConfig& audio_hardware_config); | 25 const AudioHardwareConfig& audio_hardware_config); |
| 27 ~DefaultRendererFactory() final; | 26 ~DefaultRendererFactory() final; |
| 28 | 27 |
| 29 scoped_ptr<Renderer> CreateRenderer( | 28 scoped_ptr<Renderer> CreateRenderer( |
| 30 const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner, | 29 const scoped_refptr<base::SingleThreadTaskRunner>& media_task_runner, |
| 31 AudioRendererSink* audio_renderer_sink, | 30 AudioRendererSink* audio_renderer_sink) final; |
| 32 VideoRendererSink* video_renderer_sink) final; | |
| 33 | 31 |
| 34 private: | 32 private: |
| 35 scoped_refptr<MediaLog> media_log_; | 33 scoped_refptr<MediaLog> media_log_; |
| 36 | 34 |
| 37 // Factories for supporting video accelerators. May be null. | 35 // Factories for supporting video accelerators. May be null. |
| 38 scoped_refptr<GpuVideoAcceleratorFactories> gpu_factories_; | 36 scoped_refptr<GpuVideoAcceleratorFactories> gpu_factories_; |
| 39 | 37 |
| 40 const AudioHardwareConfig& audio_hardware_config_; | 38 const AudioHardwareConfig& audio_hardware_config_; |
| 41 | 39 |
| 42 DISALLOW_COPY_AND_ASSIGN(DefaultRendererFactory); | 40 DISALLOW_COPY_AND_ASSIGN(DefaultRendererFactory); |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 } // namespace media | 43 } // namespace media |
| 46 | 44 |
| 47 #endif // MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ | 45 #endif // MEDIA_RENDERERS_DEFAULT_RENDERER_FACTORY_H_ |
| OLD | NEW |