Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(224)

Side by Side Diff: content/renderer/media/rtc_video_decoder_factory_tv.h

Issue 14247018: Implement WebRTC in Chrome for TV (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_H_
6 #define CONTENT_RENDERER_MEDIA_RTC_VIDEO_DECODER_FACTORY_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_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698