- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
365 B
Java
15 lines
365 B
Java
package com.mbridge.msdk.playercommon.exoplayer2.offline;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class TrackKey {
|
|
public final int groupIndex;
|
|
public final int periodIndex;
|
|
public final int trackIndex;
|
|
|
|
public TrackKey(int i, int i2, int i3) {
|
|
this.periodIndex = i;
|
|
this.groupIndex = i2;
|
|
this.trackIndex = i3;
|
|
}
|
|
}
|