Files
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -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);
}
}