Add Discord community version (64-bit only)

- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package com.mbridge.msdk.playercommon.exoplayer2;
import androidx.annotation.Nullable;
import com.mbridge.msdk.playercommon.exoplayer2.util.Assertions;
/* loaded from: classes4.dex */
public final class SeekParameters {
public static final SeekParameters CLOSEST_SYNC;
public static final SeekParameters DEFAULT;
public static final SeekParameters EXACT;
public static final SeekParameters NEXT_SYNC;
public static final SeekParameters PREVIOUS_SYNC;
public final long toleranceAfterUs;
public final long toleranceBeforeUs;
public final int hashCode() {
return (((int) this.toleranceBeforeUs) * 31) + ((int) this.toleranceAfterUs);
}
static {
SeekParameters seekParameters = new SeekParameters(0L, 0L);
EXACT = seekParameters;
CLOSEST_SYNC = new SeekParameters(Long.MAX_VALUE, Long.MAX_VALUE);
PREVIOUS_SYNC = new SeekParameters(Long.MAX_VALUE, 0L);
NEXT_SYNC = new SeekParameters(0L, Long.MAX_VALUE);
DEFAULT = seekParameters;
}
public SeekParameters(long j, long j2) {
Assertions.checkArgument(j >= 0);
Assertions.checkArgument(j2 >= 0);
this.toleranceBeforeUs = j;
this.toleranceAfterUs = j2;
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj == null || SeekParameters.class != obj.getClass()) {
return false;
}
SeekParameters seekParameters = (SeekParameters) obj;
return this.toleranceBeforeUs == seekParameters.toleranceBeforeUs && this.toleranceAfterUs == seekParameters.toleranceAfterUs;
}
}