LeviLamina
Loading...
Searching...
No Matches
IntervalBudget.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // member functions
10 // NOLINTBEGIN
11 MCAPI void IncreaseBudget(int64);
12
13 MCAPI IntervalBudget(int, bool);
14
15 MCAPI void UseBudget(uint64);
16
17 MCAPI double budget_ratio() const;
18
19 MCAPI void set_target_rate_kbps(int);
20 // NOLINTEND
21
22public:
23 // constructor thunks
24 // NOLINTBEGIN
25 MCAPI void* $ctor(int, bool);
26 // NOLINTEND
27};
28
29} // namespace webrtc
Definition IntervalBudget.h:7