- 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
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;
|
|
}
|