Files
rr3-apk/decompiled/sources/com/mbridge/msdk/playercommon/exoplayer2/ExoPlayer.java
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

71 lines
1.8 KiB
Java

package com.mbridge.msdk.playercommon.exoplayer2;
import android.os.Looper;
import androidx.annotation.Nullable;
import com.mbridge.msdk.playercommon.exoplayer2.Player;
import com.mbridge.msdk.playercommon.exoplayer2.PlayerMessage;
import com.mbridge.msdk.playercommon.exoplayer2.source.MediaSource;
/* loaded from: classes4.dex */
public interface ExoPlayer extends Player {
@Deprecated
public static final int REPEAT_MODE_ALL = 2;
@Deprecated
public static final int REPEAT_MODE_OFF = 0;
@Deprecated
public static final int REPEAT_MODE_ONE = 1;
@Deprecated
public static final int STATE_BUFFERING = 2;
@Deprecated
public static final int STATE_ENDED = 4;
@Deprecated
public static final int STATE_IDLE = 1;
@Deprecated
public static final int STATE_READY = 3;
@Deprecated
public interface EventListener extends Player.EventListener {
}
@Deprecated
public interface ExoPlayerComponent extends PlayerMessage.Target {
}
@Deprecated
void blockingSendMessages(ExoPlayerMessage... exoPlayerMessageArr);
PlayerMessage createMessage(PlayerMessage.Target target);
Looper getPlaybackLooper();
void prepare(MediaSource mediaSource);
void prepare(MediaSource mediaSource, boolean z, boolean z2);
@Deprecated
void sendMessages(ExoPlayerMessage... exoPlayerMessageArr);
void setSeekParameters(@Nullable SeekParameters seekParameters);
@Deprecated
public static final class ExoPlayerMessage {
public final Object message;
public final int messageType;
public final PlayerMessage.Target target;
@Deprecated
public ExoPlayerMessage(PlayerMessage.Target target, int i, Object obj) {
this.target = target;
this.messageType = i;
this.message = obj;
}
}
}