LeviLamina
Loading...
Searching...
No Matches
ProcessingConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // ProcessingConfig inner types define
10 enum class StreamName : int {
11 KInputStream = 0,
12 KOutputStream = 1,
13 KReverseInputStream = 2,
14 KReverseOutputStream = 3,
15 KNumStreamNames = 4,
16 };
17
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ProcessingConfig& operator=(ProcessingConfig const&);
29};
30
31} // namespace webrtc
Definition ProcessingConfig.h:7
Definition Alias.h:14