LeviLamina
Loading...
Searching...
No Matches
RTCErrorDetailType.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
7enum class RTCErrorDetailType : int {
8 None = 0,
9 DataChannelFailure = 1,
10 DtlsFailure = 2,
11 FingerprintFailure = 3,
12 SctpFailure = 4,
13 SdpSyntaxError = 5,
14 HardwareEncoderNotAvailable = 6,
15 HardwareEncoderError = 7,
16};
17
18}