- 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
15 lines
445 B
Java
15 lines
445 B
Java
package com.mbridge.msdk.playercommon.exoplayer2;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class IllegalSeekPositionException extends IllegalStateException {
|
|
public final long positionMs;
|
|
public final Timeline timeline;
|
|
public final int windowIndex;
|
|
|
|
public IllegalSeekPositionException(Timeline timeline, int i, long j) {
|
|
this.timeline = timeline;
|
|
this.windowIndex = i;
|
|
this.positionMs = j;
|
|
}
|
|
}
|