123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef API_CALL_BITRATE_ALLOCATION_H_
- #define API_CALL_BITRATE_ALLOCATION_H_
- #include "api/units/data_rate.h"
- #include "api/units/time_delta.h"
- namespace webrtc {
- struct BitrateAllocationUpdate {
-
-
-
- DataRate target_bitrate = DataRate::Zero();
-
-
-
-
- DataRate stable_target_bitrate = DataRate::Zero();
-
- double packet_loss_ratio = 0;
-
- TimeDelta round_trip_time = TimeDelta::PlusInfinity();
-
- TimeDelta bwe_period = TimeDelta::PlusInfinity();
-
-
-
- double cwnd_reduce_ratio = 0;
- };
- }
- #endif
|