LeviLamina
Loading...
Searching...
No Matches
TransformableAudioFrameInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/TransformableFrameInterface.h"
7
8namespace webrtc {
9
11public:
12 // TransformableAudioFrameInterface inner types define
13 enum class FrameType : int {
14 KEmptyFrame = 0,
15 KAudioFrameSpeech = 1,
16 KAudioFrameCN = 2,
17 };
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~TransformableAudioFrameInterface() /*override*/ = default;
24
25 // vIndex: 10
26 virtual ::rtc::ArrayView<uint const> GetContributingSources() const = 0;
27
28 // vIndex: 11
29 virtual ::std::optional<ushort> const SequenceNumber() const = 0;
30
31 // vIndex: 12
32 virtual ::std::optional<uint64> AbsoluteCaptureTimestamp() const = 0;
33
34 // vIndex: 13
35 virtual ::webrtc::TransformableAudioFrameInterface::FrameType Type() const;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
50
51} // namespace webrtc
Definition TransformableAudioFrameInterface.h:10
Definition TransformableFrameInterface.h:12