LeviLamina
Loading...
Searching...
No Matches
AudioEncoderFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class AudioCodecPairId; }
11namespace webrtc { class AudioEncoder; }
12namespace webrtc { struct AudioCodecInfo; }
13namespace webrtc { struct AudioCodecSpec; }
14namespace webrtc { struct SdpAudioFormat; }
15// clang-format on
16
17namespace webrtc {
18
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 3
24 virtual ::std::vector<::webrtc::AudioCodecSpec> GetSupportedEncoders() = 0;
25
26 // vIndex: 4
27 virtual ::std::optional<::webrtc::AudioCodecInfo> QueryAudioEncoder(::webrtc::SdpAudioFormat const&) = 0;
28
29 // vIndex: 5
30 virtual ::std::unique_ptr<::webrtc::AudioEncoder>
31 MakeAudioEncoder(int, ::webrtc::SdpAudioFormat const&, ::std::optional<::webrtc::AudioCodecPairId>) = 0;
32
33 // vIndex: 2
34 virtual ~AudioEncoderFactory() /*override*/ = default;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
49
50} // namespace webrtc
Definition AudioEncoderFactory.h:19
Definition RefCountInterface.h:10
Definition SdpAudioFormat.h:7