bandwidth_estimation_settings.h (1117B)
1 /* 2 * Copyright (c) 2024 The WebRTC project authors. All Rights Reserved. 3 * 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 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef API_TRANSPORT_BANDWIDTH_ESTIMATION_SETTINGS_H_ 12 #define API_TRANSPORT_BANDWIDTH_ESTIMATION_SETTINGS_H_ 13 14 #include "rtc_base/system/rtc_export.h" 15 namespace webrtc { 16 // Configuration settings affecting bandwidth estimation. 17 // These settings can be set and changed by an application. 18 struct RTC_EXPORT BandwidthEstimationSettings { 19 // A bandwith estimation probe may be sent using a RtpTransceiver with 20 // direction SendOnly or SendRecv that supports RTX. The probe can be sent 21 // without first sending media packets in which case Rtp padding packets are 22 // used. 23 bool allow_probe_without_media = false; 24 }; 25 26 } // namespace webrtc 27 #endif // API_TRANSPORT_BANDWIDTH_ESTIMATION_SETTINGS_H_