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 virtual ~TransformableAudioFrameInterface() /*override*/ = default;
23
24 virtual ::rtc::ArrayView<uint const> GetContributingSources() const = 0;
25
26 virtual ::std::optional<ushort> const SequenceNumber() const = 0;
27
28 virtual ::std::optional<uint64> AbsoluteCaptureTimestamp() const = 0;
29
30 virtual ::webrtc::TransformableAudioFrameInterface::FrameType Type() const;
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36
37 // NOLINTEND
38};
39
40} // namespace webrtc
Definition TransformableAudioFrameInterface.h:10
Definition TransformableFrameInterface.h:12