- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
1012 B
Java
25 lines
1012 B
Java
package com.mbridge.msdk.playercommon.exoplayer2;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface RendererCapabilities {
|
|
public static final int ADAPTIVE_NOT_SEAMLESS = 8;
|
|
public static final int ADAPTIVE_NOT_SUPPORTED = 0;
|
|
public static final int ADAPTIVE_SEAMLESS = 16;
|
|
public static final int ADAPTIVE_SUPPORT_MASK = 24;
|
|
public static final int FORMAT_EXCEEDS_CAPABILITIES = 3;
|
|
public static final int FORMAT_HANDLED = 4;
|
|
public static final int FORMAT_SUPPORT_MASK = 7;
|
|
public static final int FORMAT_UNSUPPORTED_DRM = 2;
|
|
public static final int FORMAT_UNSUPPORTED_SUBTYPE = 1;
|
|
public static final int FORMAT_UNSUPPORTED_TYPE = 0;
|
|
public static final int TUNNELING_NOT_SUPPORTED = 0;
|
|
public static final int TUNNELING_SUPPORTED = 32;
|
|
public static final int TUNNELING_SUPPORT_MASK = 32;
|
|
|
|
int getTrackType();
|
|
|
|
int supportsFormat(Format format) throws ExoPlaybackException;
|
|
|
|
int supportsMixedMimeTypeAdaptation() throws ExoPlaybackException;
|
|
}
|