Files
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

44 lines
1.3 KiB
Java

package com.mbridge.msdk.playercommon.exoplayer2.trackselection;
import androidx.annotation.Nullable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import java.util.Arrays;
/* loaded from: classes4.dex */
public final class TrackSelectionArray {
private int hashCode;
public final int length;
private final TrackSelection[] trackSelections;
public TrackSelectionArray(TrackSelection... trackSelectionArr) {
this.trackSelections = trackSelectionArr;
this.length = trackSelectionArr.length;
}
@Nullable
public final TrackSelection get(int i) {
return this.trackSelections[i];
}
public final TrackSelection[] getAll() {
return (TrackSelection[]) this.trackSelections.clone();
}
public final int hashCode() {
if (this.hashCode == 0) {
this.hashCode = IronSourceError.ERROR_NON_EXISTENT_INSTANCE + Arrays.hashCode(this.trackSelections);
}
return this.hashCode;
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj == null || TrackSelectionArray.class != obj.getClass()) {
return false;
}
return Arrays.equals(this.trackSelections, ((TrackSelectionArray) obj).trackSelections);
}
}