Chromium Code Reviews| Index: content/renderer/media/rtc_video_encoder_factory.h |
| diff --git a/content/renderer/media/rtc_video_encoder_factory.h b/content/renderer/media/rtc_video_encoder_factory.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..8e405d9ccc1555e677dbcc14d945b8238d60f5d4 |
| --- /dev/null |
| +++ b/content/renderer/media/rtc_video_encoder_factory.h |
| @@ -0,0 +1,51 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_FACTORY_H_ |
| +#define CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_FACTORY_H_ |
| + |
| +#include <vector> |
| + |
| +#include "base/threading/thread.h" |
|
Ami GONE FROM CHROMIUM
2013/08/02 22:00:49
??
sheu
2013/08/03 01:31:03
Done.
|
| +#include "content/common/content_export.h" |
| +#include "third_party/libjingle/source/talk/media/webrtc/webrtcvideoencoderfactory.h" |
| + |
| +namespace media { |
| + |
| +class GpuVideoAcceleratorFactories; |
| + |
| +} // namespace media |
| + |
| +namespace content { |
| + |
| +// This classes creates RTCVideoEncoder instances (each wrapping a |
|
Ami GONE FROM CHROMIUM
2013/08/02 22:00:49
classes
sheu
2013/08/03 01:31:03
Done.
|
| +// media::VideoEncodeAccelerator) on behalf of the WebRTC stack. |
| +class CONTENT_EXPORT RTCVideoEncoderFactory |
| + : NON_EXPORTED_BASE(public cricket::WebRtcVideoEncoderFactory) { |
| + public: |
| + explicit RTCVideoEncoderFactory( |
| + const scoped_refptr<media::GpuVideoAcceleratorFactories>& gpu_factories); |
| + virtual ~RTCVideoEncoderFactory(); |
| + |
| + // cricket::WebRtcVideoEncoderFactory implementation. |
| + virtual webrtc::VideoEncoder* CreateVideoEncoder( |
| + webrtc::VideoCodecType type) OVERRIDE; |
| + virtual void AddObserver(Observer* observer) OVERRIDE; |
| + virtual void RemoveObserver(Observer* observer) OVERRIDE; |
| + virtual const std::vector<VideoCodec>& codecs() const OVERRIDE; |
| + virtual void DestroyVideoEncoder(webrtc::VideoEncoder* encoder) OVERRIDE; |
| + |
| + private: |
| + const scoped_refptr<media::GpuVideoAcceleratorFactories> gpu_factories_; |
| + |
| + // Codec support list of cricket::WebRtcVideoEncoderFactory::VideoCodec |
| + // instances. |
| + std::vector<VideoCodec> codecs_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(RTCVideoEncoderFactory); |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_RENDERER_MEDIA_RTC_VIDEO_ENCODER_FACTORY_H_ |