LeviLamina
Loading...
Searching...
No Matches
DelayIncreaseDetectorInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/BandwidthUsage.h"
7
8namespace webrtc {
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
15
16 virtual void Update(
17 double recv_delta_ms,
18 double send_delta_ms,
19 int64 send_time_ms,
20 int64 arrival_time_ms,
21 uint64 packet_size,
22 bool calculated_deltas
23 ) = 0;
24
25 virtual ::webrtc::BandwidthUsage State() const = 0;
26 // NOLINTEND
27
28public:
29 // destructor thunk
30 // NOLINTBEGIN
31 MCNAPI void $dtor();
32 // NOLINTEND
33
34public:
35 // virtual function thunks
36 // NOLINTBEGIN
37
38 // NOLINTEND
39
40public:
41 // vftables
42 // NOLINTBEGIN
43 MCNAPI static void** $vftable();
44 // NOLINTEND
45};
46
47} // namespace webrtc
Definition DelayIncreaseDetectorInterface.h:10