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