mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
29 lines
517 B
Java
29 lines
517 B
Java
|
package org.webrtc;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum VideoCodecStatus {
|
||
|
REQUEST_SLI(2),
|
||
|
NO_OUTPUT(1),
|
||
|
OK(0),
|
||
|
ERROR(-1),
|
||
|
LEVEL_EXCEEDED(-2),
|
||
|
MEMORY(-3),
|
||
|
ERR_PARAMETER(-4),
|
||
|
ERR_SIZE(-5),
|
||
|
TIMEOUT(-6),
|
||
|
UNINITIALIZED(-7),
|
||
|
ERR_REQUEST_SLI(-12),
|
||
|
FALLBACK_SOFTWARE(-13),
|
||
|
TARGET_BITRATE_OVERSHOOT(-14);
|
||
|
|
||
|
private final int number;
|
||
|
|
||
|
public int getNumber() {
|
||
|
return this.number;
|
||
|
}
|
||
|
|
||
|
VideoCodecStatus(int i) {
|
||
|
this.number = i;
|
||
|
}
|
||
|
}
|