OLD | NEW |
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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 void EnableRemb(bool enable); | 113 void EnableRemb(bool enable); |
114 int SetSendTimestampOffsetStatus(bool enable, int id); | 114 int SetSendTimestampOffsetStatus(bool enable, int id); |
115 int SetReceiveTimestampOffsetStatus(bool enable, int id); | 115 int SetReceiveTimestampOffsetStatus(bool enable, int id); |
116 int SetSendAbsoluteSendTimeStatus(bool enable, int id); | 116 int SetSendAbsoluteSendTimeStatus(bool enable, int id); |
117 int SetReceiveAbsoluteSendTimeStatus(bool enable, int id); | 117 int SetReceiveAbsoluteSendTimeStatus(bool enable, int id); |
118 int SetSendVideoRotationStatus(bool enable, int id); | 118 int SetSendVideoRotationStatus(bool enable, int id); |
119 int SetReceiveVideoRotationStatus(bool enable, int id); | 119 int SetReceiveVideoRotationStatus(bool enable, int id); |
120 int SetSendTransportSequenceNumber(bool enable, int id); | 120 int SetSendTransportSequenceNumber(bool enable, int id); |
121 int SetReceiveTransportSequenceNumber(bool enable, int id); | 121 int SetReceiveTransportSequenceNumber(bool enable, int id); |
122 void SetRtcpXrRrtrStatus(bool enable); | 122 void SetRtcpXrRrtrStatus(bool enable); |
123 void SetTransmissionSmoothingStatus(bool enable); | |
124 void EnableTMMBR(bool enable); | 123 void EnableTMMBR(bool enable); |
125 | 124 |
126 // Sets SSRC for outgoing stream. | 125 // Sets SSRC for outgoing stream. |
127 int32_t SetSSRC(const uint32_t SSRC, | 126 int32_t SetSSRC(const uint32_t SSRC, |
128 const StreamType usage, | 127 const StreamType usage, |
129 const unsigned char simulcast_idx); | 128 const unsigned char simulcast_idx); |
130 | 129 |
131 // Gets SSRC for outgoing stream number |idx|. | 130 // Gets SSRC for outgoing stream number |idx|. |
132 int32_t GetLocalSSRC(uint8_t idx, unsigned int* ssrc); | 131 int32_t GetLocalSSRC(uint8_t idx, unsigned int* ssrc); |
133 | 132 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 size_t num_rtts_ GUARDED_BY(crit_); | 446 size_t num_rtts_ GUARDED_BY(crit_); |
448 | 447 |
449 // RtpRtcp modules, declared last as they use other members on construction. | 448 // RtpRtcp modules, declared last as they use other members on construction. |
450 const std::vector<RtpRtcp*> rtp_rtcp_modules_; | 449 const std::vector<RtpRtcp*> rtp_rtcp_modules_; |
451 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); | 450 size_t num_active_rtp_rtcp_modules_ GUARDED_BY(crit_); |
452 }; | 451 }; |
453 | 452 |
454 } // namespace webrtc | 453 } // namespace webrtc |
455 | 454 |
456 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ | 455 #endif // WEBRTC_VIDEO_ENGINE_VIE_CHANNEL_H_ |
OLD | NEW |