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,50 @@
package com.mbridge.msdk.playercommon.exoplayer2.trackselection;
import androidx.annotation.Nullable;
import com.mbridge.msdk.playercommon.exoplayer2.Format;
import com.mbridge.msdk.playercommon.exoplayer2.source.TrackGroup;
import com.mbridge.msdk.playercommon.exoplayer2.source.chunk.MediaChunk;
import java.util.List;
/* loaded from: classes4.dex */
public interface TrackSelection {
public interface Factory {
TrackSelection createTrackSelection(TrackGroup trackGroup, int... iArr);
}
boolean blacklist(int i, long j);
void disable();
void enable();
int evaluateQueueSize(long j, List<? extends MediaChunk> list);
Format getFormat(int i);
int getIndexInTrackGroup(int i);
Format getSelectedFormat();
int getSelectedIndex();
int getSelectedIndexInTrackGroup();
@Nullable
Object getSelectionData();
int getSelectionReason();
TrackGroup getTrackGroup();
int indexOf(int i);
int indexOf(Format format);
int length();
void onPlaybackSpeed(float f);
void updateSelectedTrack(long j, long j2, long j3);
}