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