OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_RENDERER_MEDIA_RTC_VIDEO_DECODER_FACTORY_TV_H_ |
| 6 #define CONTENT_RENDERER_MEDIA_RTC_VIDEO_DECODER_FACTORY_TV_H_ |
| 7 |
| 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 10 #include "base/message_loop.h" |
| 11 #include "content/common/content_export.h" |
| 12 #include "media/base/demuxer.h" |
| 13 #include "third_party/libjingle/source/talk/media/webrtc/webrtcvideodecoderfacto
ry.h" |
| 14 |
| 15 namespace webrtc { |
| 16 class VideoDecoder; |
| 17 } |
| 18 |
| 19 namespace content { |
| 20 |
| 21 class CONTENT_EXPORT RTCVideoDecoderFactoryTv |
| 22 : NON_EXPORTED_BASE(public cricket::WebRtcVideoDecoderFactory) { |
| 23 public: |
| 24 RTCVideoDecoderFactoryTv(); |
| 25 |
| 26 // cricket::WebRtcVideoDecoderFactory implementation. |
| 27 virtual webrtc::VideoDecoder* CreateVideoDecoder( |
| 28 webrtc::VideoCodecType type) OVERRIDE; |
| 29 virtual void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) OVERRIDE; |
| 30 |
| 31 private: |
| 32 DISALLOW_COPY_AND_ASSIGN(RTCVideoDecoderFactoryTv); |
| 33 }; |
| 34 |
| 35 } // namespace content |
| 36 |
| 37 #endif // CONTENT_RENDERER_MEDIA_RTC_VIDEO_DECODER_FACTORY_TV_H_ |
OLD | NEW |