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

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

Issue 1788583004: Enable setting the maximum bitrate limit in RtpSender. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 9 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
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
11 #ifndef WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 11 #ifndef WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
12 #define WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 12 #define WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
13 13
14 #include <memory> 14 #include <memory>
15 #include <string> 15 #include <string>
16 #include <vector> 16 #include <vector>
17 17
18 #include "webrtc/api/rtpparameters.h"
18 #include "webrtc/base/basictypes.h" 19 #include "webrtc/base/basictypes.h"
19 #include "webrtc/base/buffer.h" 20 #include "webrtc/base/buffer.h"
20 #include "webrtc/base/dscp.h" 21 #include "webrtc/base/dscp.h"
21 #include "webrtc/base/logging.h" 22 #include "webrtc/base/logging.h"
22 #include "webrtc/base/optional.h" 23 #include "webrtc/base/optional.h"
23 #include "webrtc/base/sigslot.h" 24 #include "webrtc/base/sigslot.h"
24 #include "webrtc/base/socket.h" 25 #include "webrtc/base/socket.h"
25 #include "webrtc/base/window.h" 26 #include "webrtc/base/window.h"
26 #include "webrtc/media/base/codec.h" 27 #include "webrtc/media/base/codec.h"
27 #include "webrtc/media/base/constants.h" 28 #include "webrtc/media/base/constants.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 for (size_t i = 0; i < vals.size(); ++i) { 73 for (size_t i = 0; i < vals.size(); ++i) {
73 if (i > 0) { 74 if (i > 0) {
74 ost << ", "; 75 ost << ", ";
75 } 76 }
76 ost << vals[i].ToString(); 77 ost << vals[i].ToString();
77 } 78 }
78 ost << "]"; 79 ost << "]";
79 return ost.str(); 80 return ost.str();
80 } 81 }
81 82
83 template <typename T>
84 static T MinPositive(T a, T b) {
pthatcher1 2016/03/12 01:21:03 This would be more clear as the min of rtc::Option
skvlad 2016/03/15 21:18:18 I'm going to send a separate code review for the c
pthatcher1 2016/03/16 00:48:42 sure
85 if (a <= 0)
Taylor Brandstetter 2016/03/12 01:57:06 nit: {}s
skvlad 2016/03/15 21:18:18 Done.
86 return b;
87 if (b <= 0)
88 return a;
89 return std::min(a, b);
90 }
91
82 // Construction-time settings, passed to 92 // Construction-time settings, passed to
83 // MediaControllerInterface::Create, and passed on when creating 93 // MediaControllerInterface::Create, and passed on when creating
84 // MediaChannels. 94 // MediaChannels.
85 struct MediaConfig { 95 struct MediaConfig {
86 // Set DSCP value on packets. This flag comes from the 96 // Set DSCP value on packets. This flag comes from the
87 // PeerConnection constraint 'googDscp'. 97 // PeerConnection constraint 'googDscp'.
88 bool enable_dscp = false; 98 bool enable_dscp = false;
89 99
90 // Video-specific config 100 // Video-specific config
91 101
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure. 895 ERROR_PLAY_SRTP_ERROR, // Generic SRTP failure.
886 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. 896 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
887 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. 897 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
888 }; 898 };
889 899
890 VoiceMediaChannel() {} 900 VoiceMediaChannel() {}
891 VoiceMediaChannel(const MediaConfig& config) : MediaChannel(config) {} 901 VoiceMediaChannel(const MediaConfig& config) : MediaChannel(config) {}
892 virtual ~VoiceMediaChannel() {} 902 virtual ~VoiceMediaChannel() {}
893 virtual bool SetSendParameters(const AudioSendParameters& params) = 0; 903 virtual bool SetSendParameters(const AudioSendParameters& params) = 0;
894 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0; 904 virtual bool SetRecvParameters(const AudioRecvParameters& params) = 0;
905 virtual webrtc::RTCRtpParameters GetRtpParameters(uint32_t ssrc) = 0;
Taylor Brandstetter 2016/03/12 01:57:06 Again, can probably be const.
skvlad 2016/03/15 21:18:18 Done.
906 virtual bool SetRtpParameters(uint32_t ssrc,
907 const webrtc::RTCRtpParameters& parameters) = 0;
895 // Starts or stops playout of received audio. 908 // Starts or stops playout of received audio.
896 virtual bool SetPlayout(bool playout) = 0; 909 virtual bool SetPlayout(bool playout) = 0;
897 // Starts or stops sending (and potentially capture) of local audio. 910 // Starts or stops sending (and potentially capture) of local audio.
898 virtual bool SetSend(SendFlags flag) = 0; 911 virtual bool SetSend(SendFlags flag) = 0;
899 // Configure stream for sending. 912 // Configure stream for sending.
900 virtual bool SetAudioSend(uint32_t ssrc, 913 virtual bool SetAudioSend(uint32_t ssrc,
901 bool enable, 914 bool enable,
902 const AudioOptions* options, 915 const AudioOptions* options,
903 AudioRenderer* renderer) = 0; 916 AudioRenderer* renderer) = 0;
904 // Gets current energy levels for all incoming streams. 917 // Gets current energy levels for all incoming streams.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets. 970 ERROR_PLAY_SRTP_AUTH_FAILED, // Failed to authenticate packets.
958 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected. 971 ERROR_PLAY_SRTP_REPLAY, // Packet replay detected.
959 }; 972 };
960 973
961 VideoMediaChannel() {} 974 VideoMediaChannel() {}
962 VideoMediaChannel(const MediaConfig& config) : MediaChannel(config) {} 975 VideoMediaChannel(const MediaConfig& config) : MediaChannel(config) {}
963 virtual ~VideoMediaChannel() {} 976 virtual ~VideoMediaChannel() {}
964 977
965 virtual bool SetSendParameters(const VideoSendParameters& params) = 0; 978 virtual bool SetSendParameters(const VideoSendParameters& params) = 0;
966 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0; 979 virtual bool SetRecvParameters(const VideoRecvParameters& params) = 0;
980 virtual webrtc::RTCRtpParameters GetRtpParameters(uint32_t ssrc) = 0;
981 virtual bool SetRtpParameters(uint32_t ssrc,
982 const webrtc::RTCRtpParameters& parameters) = 0;
967 // Gets the currently set codecs/payload types to be used for outgoing media. 983 // Gets the currently set codecs/payload types to be used for outgoing media.
968 virtual bool GetSendCodec(VideoCodec* send_codec) = 0; 984 virtual bool GetSendCodec(VideoCodec* send_codec) = 0;
969 // Starts or stops transmission (and potentially capture) of local video. 985 // Starts or stops transmission (and potentially capture) of local video.
970 virtual bool SetSend(bool send) = 0; 986 virtual bool SetSend(bool send) = 0;
971 // Configure stream for sending. 987 // Configure stream for sending.
972 virtual bool SetVideoSend(uint32_t ssrc, 988 virtual bool SetVideoSend(uint32_t ssrc,
973 bool enable, 989 bool enable,
974 const VideoOptions* options) = 0; 990 const VideoOptions* options) = 0;
975 // Sets the sink object to be used for the specified stream. 991 // Sets the sink object to be used for the specified stream.
976 // If SSRC is 0, the renderer is used for the 'default' stream. 992 // If SSRC is 0, the renderer is used for the 'default' stream.
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
1104 // Signal when the media channel is ready to send the stream. Arguments are: 1120 // Signal when the media channel is ready to send the stream. Arguments are:
1105 // writable(bool) 1121 // writable(bool)
1106 sigslot::signal1<bool> SignalReadyToSend; 1122 sigslot::signal1<bool> SignalReadyToSend;
1107 // Signal for notifying that the remote side has closed the DataChannel. 1123 // Signal for notifying that the remote side has closed the DataChannel.
1108 sigslot::signal1<uint32_t> SignalStreamClosedRemotely; 1124 sigslot::signal1<uint32_t> SignalStreamClosedRemotely;
1109 }; 1125 };
1110 1126
1111 } // namespace cricket 1127 } // namespace cricket
1112 1128
1113 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_ 1129 #endif // WEBRTC_MEDIA_BASE_MEDIACHANNEL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698