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
14public:
15 // InterArrivalDelta inner types declare
16 // clang-format off
17 struct SendTimeGroup;
18 // clang-format on
19
20 // InterArrivalDelta inner types define
22 public:
23 // member variables
24 // NOLINTBEGIN
31 // NOLINTEND
32
33 public:
34 // prevent constructor by default
35 SendTimeGroup& operator=(SendTimeGroup const&);
38 };
39
40public:
41 // member variables
42 // NOLINTBEGIN
47 // NOLINTEND
48
49public:
50 // prevent constructor by default
51 InterArrivalDelta& operator=(InterArrivalDelta const&);
54
55public:
56 // member functions
57 // NOLINTBEGIN
58 MCNAPI bool BelongsToBurst(::webrtc::Timestamp arrival_time, ::webrtc::Timestamp send_time) const;
59
60 MCNAPI bool ComputeDeltas(
61 ::webrtc::Timestamp send_time,
62 ::webrtc::Timestamp arrival_time,
63 ::webrtc::Timestamp system_time,
64 uint64 packet_size,
65 ::webrtc::TimeDelta* send_time_delta,
66 ::webrtc::TimeDelta* arrival_time_delta,
67 int* packet_size_delta
68 );
69
70 MCNAPI explicit InterArrivalDelta(::webrtc::TimeDelta send_time_group_length);
71
72 MCNAPI bool NewTimestampGroup(::webrtc::Timestamp arrival_time, ::webrtc::Timestamp send_time) const;
73
74 MCNAPI void Reset();
75 // NOLINTEND
76
77public:
78 // constructor thunks
79 // NOLINTBEGIN
80 MCNAPI void* $ctor(::webrtc::TimeDelta send_time_group_length);
81 // NOLINTEND
82};
83
84} // namespace webrtc
Definition InterArrivalDelta.h:13
MCAPI InterArrivalDelta(::webrtc::TimeDelta send_time_group_length)
MCAPI bool NewTimestampGroup(::webrtc::Timestamp arrival_time, ::webrtc::Timestamp send_time) const
MCAPI bool BelongsToBurst(::webrtc::Timestamp arrival_time, ::webrtc::Timestamp send_time) const
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:10
Definition Alias.h:14
Definition InterArrivalDelta.h:21