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

Side by Side Diff: webrtc/media/engine/webrtcvideoengine2.h

Issue 2411953002: Reland of Make cricket::VideoFrame inherit webrtc::VideoFrame. (Closed)
Patch Set: Fix for windows build. Created 4 years, 2 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
« no previous file with comments | « webrtc/media/engine/webrtcvideocapturer.cc ('k') | webrtc/media/engine/webrtcvideoengine2.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ 11 #ifndef WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_
12 #define WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ 12 #define WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_
13 13
14 #include <map> 14 #include <map>
15 #include <memory> 15 #include <memory>
16 #include <set> 16 #include <set>
17 #include <string> 17 #include <string>
18 #include <vector> 18 #include <vector>
19 19
20 #include "webrtc/base/asyncinvoker.h" 20 #include "webrtc/base/asyncinvoker.h"
21 #include "webrtc/base/criticalsection.h" 21 #include "webrtc/base/criticalsection.h"
22 #include "webrtc/base/networkroute.h" 22 #include "webrtc/base/networkroute.h"
23 #include "webrtc/base/thread_annotations.h" 23 #include "webrtc/base/thread_annotations.h"
24 #include "webrtc/base/thread_checker.h" 24 #include "webrtc/base/thread_checker.h"
25 #include "webrtc/media/base/videosinkinterface.h" 25 #include "webrtc/media/base/videosinkinterface.h"
26 #include "webrtc/media/base/videosourceinterface.h" 26 #include "webrtc/media/base/videosourceinterface.h"
27 #include "webrtc/call.h" 27 #include "webrtc/call.h"
28 #include "webrtc/media/base/mediaengine.h" 28 #include "webrtc/media/base/mediaengine.h"
29 #include "webrtc/media/base/videoframe.h"
29 #include "webrtc/media/engine/webrtcvideodecoderfactory.h" 30 #include "webrtc/media/engine/webrtcvideodecoderfactory.h"
30 #include "webrtc/media/engine/webrtcvideoencoderfactory.h" 31 #include "webrtc/media/engine/webrtcvideoencoderfactory.h"
31 #include "webrtc/transport.h" 32 #include "webrtc/transport.h"
32 #include "webrtc/video_frame.h"
33 #include "webrtc/video_receive_stream.h" 33 #include "webrtc/video_receive_stream.h"
34 #include "webrtc/video_send_stream.h" 34 #include "webrtc/video_send_stream.h"
35 35
36 namespace webrtc { 36 namespace webrtc {
37 class VideoDecoder; 37 class VideoDecoder;
38 class VideoEncoder; 38 class VideoEncoder;
39 struct MediaConfig; 39 struct MediaConfig;
40 } 40 }
41 41
42 namespace rtc { 42 namespace rtc {
43 class Thread; 43 class Thread;
44 } // namespace rtc 44 } // namespace rtc
45 45
46 namespace cricket { 46 namespace cricket {
47 47
48 class VideoCapturer; 48 class VideoCapturer;
49 class VideoFrame;
50 class VideoProcessor; 49 class VideoProcessor;
51 class VideoRenderer; 50 class VideoRenderer;
52 class VoiceMediaChannel; 51 class VoiceMediaChannel;
53 class WebRtcDecoderObserver; 52 class WebRtcDecoderObserver;
54 class WebRtcEncoderObserver; 53 class WebRtcEncoderObserver;
55 class WebRtcLocalStreamInfo; 54 class WebRtcLocalStreamInfo;
56 class WebRtcRenderAdapter; 55 class WebRtcRenderAdapter;
57 class WebRtcVideoChannel2; 56 class WebRtcVideoChannel2;
58 class WebRtcVideoChannelRecvInfo; 57 class WebRtcVideoChannelRecvInfo;
59 class WebRtcVideoChannelSendInfo; 58 class WebRtcVideoChannelSendInfo;
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 VideoSendParameters send_params_; 537 VideoSendParameters send_params_;
539 VideoOptions default_send_options_; 538 VideoOptions default_send_options_;
540 VideoRecvParameters recv_params_; 539 VideoRecvParameters recv_params_;
541 bool red_disabled_by_remote_side_; 540 bool red_disabled_by_remote_side_;
542 int64_t last_stats_log_ms_; 541 int64_t last_stats_log_ms_;
543 }; 542 };
544 543
545 } // namespace cricket 544 } // namespace cricket
546 545
547 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_ 546 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVIDEOENGINE2_H_
OLDNEW
« no previous file with comments | « webrtc/media/engine/webrtcvideocapturer.cc ('k') | webrtc/media/engine/webrtcvideoengine2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698