LeviLamina
Loading...
Searching...
No Matches
IntervalBudget.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 IntervalBudget& operator=(IntervalBudget const&);
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCNAPI void IncreaseBudget(int64 delta_time_ms);
27
28 MCNAPI IntervalBudget(int initial_target_rate_kbps, bool can_build_up_underuse);
29
30 MCNAPI void UseBudget(uint64 bytes);
31
32 MCNAPI double budget_ratio() const;
33
34 MCNAPI void set_target_rate_kbps(int target_rate_kbps);
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void* $ctor(int initial_target_rate_kbps, bool can_build_up_underuse);
41 // NOLINTEND
42};
43
44} // namespace webrtc
Definition IntervalBudget.h:7
MCAPI IntervalBudget(int initial_target_rate_kbps, bool can_build_up_underuse)
MCAPI double budget_ratio() const
MCAPI void set_target_rate_kbps(int target_rate_kbps)
MCAPI void * $ctor(int initial_target_rate_kbps, bool can_build_up_underuse)
MCAPI void IncreaseBudget(int64 delta_time_ms)
MCAPI void UseBudget(uint64 bytes)
Definition Alias.h:14