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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
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);
}
}