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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 | 294 |
295 uint16_t ModuleRtpRtcpImpl::SequenceNumber() const { | 295 uint16_t ModuleRtpRtcpImpl::SequenceNumber() const { |
296 return rtp_sender_.SequenceNumber(); | 296 return rtp_sender_.SequenceNumber(); |
297 } | 297 } |
298 | 298 |
299 // Set SequenceNumber, default is a random number. | 299 // Set SequenceNumber, default is a random number. |
300 void ModuleRtpRtcpImpl::SetSequenceNumber(const uint16_t seq_num) { | 300 void ModuleRtpRtcpImpl::SetSequenceNumber(const uint16_t seq_num) { |
301 rtp_sender_.SetSequenceNumber(seq_num); | 301 rtp_sender_.SetSequenceNumber(seq_num); |
302 } | 302 } |
303 | 303 |
304 bool ModuleRtpRtcpImpl::SetRtpStateForSsrc(uint32_t ssrc, | 304 void ModuleRtpRtcpImpl::SetRtpState(const RtpState& rtp_state) { |
305 const RtpState& rtp_state) { | 305 SetStartTimestamp(rtp_state.start_timestamp); |
306 if (rtp_sender_.SSRC() == ssrc) { | 306 rtp_sender_.SetRtpState(rtp_state); |
307 SetStartTimestamp(rtp_state.start_timestamp); | |
308 rtp_sender_.SetRtpState(rtp_state); | |
309 return true; | |
310 } | |
311 if (rtp_sender_.RtxSsrc() == ssrc) { | |
312 rtp_sender_.SetRtxRtpState(rtp_state); | |
313 return true; | |
314 } | |
315 return false; | |
316 } | 307 } |
317 | 308 |
318 bool ModuleRtpRtcpImpl::GetRtpStateForSsrc(uint32_t ssrc, RtpState* rtp_state) { | 309 void ModuleRtpRtcpImpl::SetRtxState(const RtpState& rtp_state) { |
319 if (rtp_sender_.SSRC() == ssrc) { | 310 rtp_sender_.SetRtxRtpState(rtp_state); |
320 *rtp_state = rtp_sender_.GetRtpState(); | 311 } |
321 return true; | 312 |
322 } | 313 RtpState ModuleRtpRtcpImpl::GetRtpState() const { |
323 if (rtp_sender_.RtxSsrc() == ssrc) { | 314 return rtp_sender_.GetRtpState(); |
324 *rtp_state = rtp_sender_.GetRtxRtpState(); | 315 } |
325 return true; | 316 |
326 } | 317 RtpState ModuleRtpRtcpImpl::GetRtxState() const { |
327 return false; | 318 return rtp_sender_.GetRtxRtpState(); |
328 } | 319 } |
329 | 320 |
330 uint32_t ModuleRtpRtcpImpl::SSRC() const { | 321 uint32_t ModuleRtpRtcpImpl::SSRC() const { |
331 return rtp_sender_.SSRC(); | 322 return rtp_sender_.SSRC(); |
332 } | 323 } |
333 | 324 |
334 // Configure SSRC, default is a random number. | 325 // Configure SSRC, default is a random number. |
335 void ModuleRtpRtcpImpl::SetSSRC(const uint32_t ssrc) { | 326 void ModuleRtpRtcpImpl::SetSSRC(const uint32_t ssrc) { |
336 rtp_sender_.SetSSRC(ssrc); | 327 rtp_sender_.SetSSRC(ssrc); |
337 rtcp_sender_.SetSSRC(ssrc); | 328 rtcp_sender_.SetSSRC(ssrc); |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 void ModuleRtpRtcpImpl::RegisterSendChannelRtpStatisticsCallback( | 985 void ModuleRtpRtcpImpl::RegisterSendChannelRtpStatisticsCallback( |
995 StreamDataCountersCallback* callback) { | 986 StreamDataCountersCallback* callback) { |
996 rtp_sender_.RegisterRtpStatisticsCallback(callback); | 987 rtp_sender_.RegisterRtpStatisticsCallback(callback); |
997 } | 988 } |
998 | 989 |
999 StreamDataCountersCallback* | 990 StreamDataCountersCallback* |
1000 ModuleRtpRtcpImpl::GetSendChannelRtpStatisticsCallback() const { | 991 ModuleRtpRtcpImpl::GetSendChannelRtpStatisticsCallback() const { |
1001 return rtp_sender_.GetRtpStatisticsCallback(); | 992 return rtp_sender_.GetRtpStatisticsCallback(); |
1002 } | 993 } |
1003 } // namespace webrtc | 994 } // namespace webrtc |
OLD | NEW |