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

Side by Side Diff: webrtc/video_engine/vie_channel.h

Issue 1392513002: Disable pacer disabling. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove RTP FIR + test refactoring Created 5 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/video/video_send_stream.cc ('k') | webrtc/video_engine/vie_channel.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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 int ReceiveDelay() const; 102 int ReceiveDelay() const;
103 103
104 void SetRTCPMode(const RtcpMode rtcp_mode); 104 void SetRTCPMode(const RtcpMode rtcp_mode);
105 void SetProtectionMode(bool enable_nack, 105 void SetProtectionMode(bool enable_nack,
106 bool enable_fec, 106 bool enable_fec,
107 int payload_type_red, 107 int payload_type_red,
108 int payload_type_fec); 108 int payload_type_fec);
109 bool IsSendingFecEnabled(); 109 bool IsSendingFecEnabled();
110 int SetSenderBufferingMode(int target_delay_ms); 110 int SetSenderBufferingMode(int target_delay_ms);
111 int SetReceiverBufferingMode(int target_delay_ms); 111 int SetReceiverBufferingMode(int target_delay_ms);
112 int32_t SetKeyFrameRequestMethod(const KeyFrameRequestMethod method);
113 void EnableRemb(bool enable); 112 void EnableRemb(bool enable);
114 int SetSendTimestampOffsetStatus(bool enable, int id); 113 int SetSendTimestampOffsetStatus(bool enable, int id);
115 int SetReceiveTimestampOffsetStatus(bool enable, int id); 114 int SetReceiveTimestampOffsetStatus(bool enable, int id);
116 int SetSendAbsoluteSendTimeStatus(bool enable, int id); 115 int SetSendAbsoluteSendTimeStatus(bool enable, int id);
117 int SetReceiveAbsoluteSendTimeStatus(bool enable, int id); 116 int SetReceiveAbsoluteSendTimeStatus(bool enable, int id);
118 int SetSendVideoRotationStatus(bool enable, int id); 117 int SetSendVideoRotationStatus(bool enable, int id);
119 int SetReceiveVideoRotationStatus(bool enable, int id); 118 int SetReceiveVideoRotationStatus(bool enable, int id);
120 int SetSendTransportSequenceNumber(bool enable, int id); 119 int SetSendTransportSequenceNumber(bool enable, int id);
121 int SetReceiveTransportSequenceNumber(bool enable, int id); 120 int SetReceiveTransportSequenceNumber(bool enable, int id);
122 void SetRtcpXrRrtrStatus(bool enable); 121 void SetRtcpXrRrtrStatus(bool enable);
123 void SetTransmissionSmoothingStatus(bool enable);
124 void EnableTMMBR(bool enable); 122 void EnableTMMBR(bool enable);
125 123
126 // Sets SSRC for outgoing stream. 124 // Sets SSRC for outgoing stream.
127 int32_t SetSSRC(const uint32_t SSRC, 125 int32_t SetSSRC(const uint32_t SSRC,
128 const StreamType usage, 126 const StreamType usage,
129 const unsigned char simulcast_idx); 127 const unsigned char simulcast_idx);
130 128
131 // Gets SSRC for outgoing stream number |idx|. 129 // Gets SSRC for outgoing stream number |idx|.
132 int32_t GetLocalSSRC(uint8_t idx, unsigned int* ssrc); 130 int32_t GetLocalSSRC(uint8_t idx, unsigned int* ssrc);
133 131
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 size_t num_rtts_ GUARDED_BY(crit_); 445 size_t num_rtts_ GUARDED_BY(crit_);
448 446
449 // RtpRtcp modules, declared last as they use other members on construction. 447 // RtpRtcp modules, declared last as they use other members on construction.
450 const std::vector<RtpRtcp*> rtp_rtcp_modules_; 448 const std::vector<RtpRtcp*> rtp_rtcp_modules_;
451 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); 449 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_);
452 }; 450 };
453 451
454 } // namespace webrtc 452 } // namespace webrtc
455 453
456 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ 454 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_
OLDNEW
« no previous file with comments | « webrtc/video/video_send_stream.cc ('k') | webrtc/video_engine/vie_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698