| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 std::vector<uint32_t> csrcs_ GUARDED_BY(send_critsect_); | 320 std::vector<uint32_t> csrcs_ GUARDED_BY(send_critsect_); |
| 321 int rtx_ GUARDED_BY(send_critsect_); | 321 int rtx_ GUARDED_BY(send_critsect_); |
| 322 uint32_t ssrc_rtx_ GUARDED_BY(send_critsect_); | 322 uint32_t ssrc_rtx_ GUARDED_BY(send_critsect_); |
| 323 // Mapping rtx_payload_type_map_[associated] = rtx. | 323 // Mapping rtx_payload_type_map_[associated] = rtx. |
| 324 std::map<int8_t, int8_t> rtx_payload_type_map_ GUARDED_BY(send_critsect_); | 324 std::map<int8_t, int8_t> rtx_payload_type_map_ GUARDED_BY(send_critsect_); |
| 325 size_t rtp_overhead_bytes_per_packet_ GUARDED_BY(send_critsect_); | 325 size_t rtp_overhead_bytes_per_packet_ GUARDED_BY(send_critsect_); |
| 326 | 326 |
| 327 RateLimiter* const retransmission_rate_limiter_; | 327 RateLimiter* const retransmission_rate_limiter_; |
| 328 OverheadObserver* overhead_observer_; | 328 OverheadObserver* overhead_observer_; |
| 329 | 329 |
| 330 const bool send_side_bwe_with_overhead_; |
| 331 |
| 330 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); | 332 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RTPSender); |
| 331 }; | 333 }; |
| 332 | 334 |
| 333 } // namespace webrtc | 335 } // namespace webrtc |
| 334 | 336 |
| 335 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ | 337 #endif // WEBRTC_MODULES_RTP_RTCP_SOURCE_RTP_SENDER_H_ |
| OLD | NEW |