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

Side by Side Diff: webrtc/media/base/mediachannel.h

Issue 2487633002: Reland of Delete all use of cricket::VideoFrame and cricket::WebRtcVideoFrame. (Closed)
Patch Set: Rebase, and update rtcstatscollector_unittest.cc. Created 4 years, 1 month 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/base/fakevideorenderer.h ('k') | webrtc/media/base/testutils.h » ('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) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 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
(...skipping 13 matching lines...) Expand all
24 #include "webrtc/base/logging.h" 24 #include "webrtc/base/logging.h"
25 #include "webrtc/base/networkroute.h" 25 #include "webrtc/base/networkroute.h"
26 #include "webrtc/base/optional.h" 26 #include "webrtc/base/optional.h"
27 #include "webrtc/base/sigslot.h" 27 #include "webrtc/base/sigslot.h"
28 #include "webrtc/base/socket.h" 28 #include "webrtc/base/socket.h"
29 #include "webrtc/base/window.h" 29 #include "webrtc/base/window.h"
30 #include "webrtc/config.h" 30 #include "webrtc/config.h"
31 #include "webrtc/media/base/codec.h" 31 #include "webrtc/media/base/codec.h"
32 #include "webrtc/media/base/mediaconstants.h" 32 #include "webrtc/media/base/mediaconstants.h"
33 #include "webrtc/media/base/streamparams.h" 33 #include "webrtc/media/base/streamparams.h"
34 // TODO(nisse): Temporarily; to be replaced with a forward declaration
35 // of webrtc::VideoFrame when dependency on cricket::VideoFrame is deleted.
36 #include "webrtc/media/base/videoframe.h"
37 #include "webrtc/media/base/videosinkinterface.h" 34 #include "webrtc/media/base/videosinkinterface.h"
38 #include "webrtc/media/base/videosourceinterface.h" 35 #include "webrtc/media/base/videosourceinterface.h"
39 // TODO(juberti): re-evaluate this include 36 // TODO(juberti): re-evaluate this include
40 #include "webrtc/pc/audiomonitor.h" 37 #include "webrtc/pc/audiomonitor.h"
41 38
42 namespace rtc { 39 namespace rtc {
43 class RateLimiter; 40 class RateLimiter;
44 class Timing; 41 class Timing;
45 } 42 }
46 43
47 namespace webrtc { 44 namespace webrtc {
48 class AudioSinkInterface; 45 class AudioSinkInterface;
46 class VideoFrame;
49 } 47 }
50 48
51 namespace cricket { 49 namespace cricket {
52 50
53 class AudioSource; 51 class AudioSource;
54 class VideoCapturer; 52 class VideoCapturer;
55 struct RtpHeader; 53 struct RtpHeader;
56 struct VideoFormat; 54 struct VideoFormat;
57 55
58 const int kScreencastDefaultFps = 5; 56 const int kScreencastDefaultFps = 5;
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1027 // Gets the currently set codecs/payload types to be used for outgoing media. 1025 // Gets the currently set codecs/payload types to be used for outgoing media.
1028 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; 1026 virtual bool GetSendCodec(VideoCodec* send_codec) = 0;
1029 // Starts or stops transmission (and potentially capture) of local video. 1027 // Starts or stops transmission (and potentially capture) of local video.
1030 virtual bool SetSend(bool send) = 0; 1028 virtual bool SetSend(bool send) = 0;
1031 // Configure stream for sending and register a source. 1029 // Configure stream for sending and register a source.
1032 // The |ssrc| must correspond to a registered send stream. 1030 // The |ssrc| must correspond to a registered send stream.
1033 virtual bool SetVideoSend( 1031 virtual bool SetVideoSend(
1034 uint32_t ssrc, 1032 uint32_t ssrc,
1035 bool enable, 1033 bool enable,
1036 const VideoOptions* options, 1034 const VideoOptions* options,
1037 rtc::VideoSourceInterface<cricket::VideoFrame>* source) = 0; 1035 rtc::VideoSourceInterface<webrtc::VideoFrame>* source) = 0;
1038 // Sets the sink object to be used for the specified stream. 1036 // Sets the sink object to be used for the specified stream.
1039 // If SSRC is 0, the renderer is used for the 'default' stream. 1037 // If SSRC is 0, the renderer is used for the 'default' stream.
1040 virtual bool SetSink(uint32_t ssrc, 1038 virtual bool SetSink(uint32_t ssrc,
1041 rtc::VideoSinkInterface<cricket::VideoFrame>* sink) = 0; 1039 rtc::VideoSinkInterface<webrtc::VideoFrame>* sink) = 0;
1042 // Gets quality stats for the channel. 1040 // Gets quality stats for the channel.
1043 virtual bool GetStats(VideoMediaInfo* info) = 0; 1041 virtual bool GetStats(VideoMediaInfo* info) = 0;
1044 }; 1042 };
1045 1043
1046 enum DataMessageType { 1044 enum DataMessageType {
1047 // Chrome-Internal use only. See SctpDataMediaChannel for the actual PPID 1045 // Chrome-Internal use only. See SctpDataMediaChannel for the actual PPID
1048 // values. 1046 // values.
1049 DMT_NONE = 0, 1047 DMT_NONE = 0,
1050 DMT_CONTROL = 1, 1048 DMT_CONTROL = 1,
1051 DMT_BINARY = 2, 1049 DMT_BINARY = 2,
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 // Signal when the media channel is ready to send the stream. Arguments are: 1159 // Signal when the media channel is ready to send the stream. Arguments are:
1162 // writable(bool) 1160 // writable(bool)
1163 sigslot::signal1<bool> SignalReadyToSend; 1161 sigslot::signal1<bool> SignalReadyToSend;
1164 // Signal for notifying that the remote side has closed the DataChannel. 1162 // Signal for notifying that the remote side has closed the DataChannel.
1165 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; 1163 sigslot::signal1<uint32_t> SignalStreamClosedRemotely;
1166 }; 1164 };
1167 1165
1168 } // namespace cricket 1166 } // namespace cricket
1169 1167
1170 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 1168 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/media/base/fakevideorenderer.h ('k') | webrtc/media/base/testutils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698