LeviLamina
Loading...
Searching...
No Matches
InterArrivalDelta.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class TimeDelta; }
8namespace webrtc { class Timestamp; }
9// clang-format on
10
11namespace webrtc {
12
13class InterArrivalDelta {
14public:
15 // InterArrivalDelta inner types declare
16 // clang-format off
17 struct SendTimeGroup;
18 // clang-format on
19
20 // InterArrivalDelta inner types define
21 struct SendTimeGroup {
22 public:
23 // member variables
24 // NOLINTBEGIN
31 // NOLINTEND
32
33 public:
34 // prevent constructor by default
35 SendTimeGroup& operator=(SendTimeGroup const&);
36 SendTimeGroup(SendTimeGroup const&);
37 SendTimeGroup();
38 };
39
40public:
41 // member variables
42 // NOLINTBEGIN
47 // NOLINTEND
48
49public:
50 // prevent constructor by default
51 InterArrivalDelta& operator=(InterArrivalDelta const&);
52 InterArrivalDelta(InterArrivalDelta const&);
53 InterArrivalDelta();
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCNAPI bool ComputeDeltas(
59 ::webrtc::Timestamp send_time,
60 ::webrtc::Timestamp arrival_time,
61 ::webrtc::Timestamp system_time,
62 uint64 packet_size,
63 ::webrtc::TimeDelta* send_time_delta,
64 ::webrtc::TimeDelta* arrival_time_delta,
65 int* packet_size_delta
66 );
67
68 MCNAPI explicit InterArrivalDelta(::webrtc::TimeDelta send_time_group_length);
69
70 MCNAPI void Reset();
71 // NOLINTEND
72
73public:
74 // constructor thunks
75 // NOLINTBEGIN
76 MCNAPI void* $ctor(::webrtc::TimeDelta send_time_group_length);
77 // NOLINTEND
78};
79
80} // namespace webrtc
MCAPI InterArrivalDelta(::webrtc::TimeDelta send_time_group_length)
MCAPI void * $ctor(::webrtc::TimeDelta send_time_group_length)
MCAPI bool ComputeDeltas(::webrtc::Timestamp send_time, ::webrtc::Timestamp arrival_time, ::webrtc::Timestamp system_time, uint64 packet_size, ::webrtc::TimeDelta *send_time_delta, ::webrtc::TimeDelta *arrival_time_delta, int *packet_size_delta)
Definition TimeDelta.h:10
Definition Timestamp.h:15
Definition Alias.h:14
Definition InterArrivalDelta.h:21