LeviLamina
Loading...
Searching...
No Matches
AudioDecoderFactory.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 AudioDecoder; }
12namespace webrtc { struct AudioCodecSpec; }
13namespace webrtc { struct SdpAudioFormat; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 3
23 virtual ::std::vector<::webrtc::AudioCodecSpec> GetSupportedDecoders() = 0;
24
25 // vIndex: 4
26 virtual bool IsSupportedDecoder(::webrtc::SdpAudioFormat const&) = 0;
27
28 // vIndex: 5
29 virtual ::std::unique_ptr<::webrtc::AudioDecoder>
30 MakeAudioDecoder(::webrtc::SdpAudioFormat const&, ::std::optional<::webrtc::AudioCodecPairId>) = 0;
31
32 // vIndex: 2
33 virtual ~AudioDecoderFactory() /*override*/ = default;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace webrtc
Definition AudioDecoderFactory.h:18
Definition RefCountInterface.h:10
Definition SdpAudioFormat.h:7