mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
23 lines
819 B
Java
23 lines
819 B
Java
package androidx.media3.exoplayer.drm;
|
|
|
|
import androidx.media3.common.util.Util;
|
|
import androidx.media3.decoder.CryptoConfig;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class FrameworkCryptoConfig implements CryptoConfig {
|
|
public static final boolean WORKAROUND_DEVICE_NEEDS_KEYS_TO_CONFIGURE_CODEC;
|
|
public final boolean forceAllowInsecureDecoderComponents;
|
|
public final byte[] sessionId;
|
|
public final UUID uuid;
|
|
|
|
static {
|
|
WORKAROUND_DEVICE_NEEDS_KEYS_TO_CONFIGURE_CODEC = "Amazon".equals(Util.MANUFACTURER) && ("AFTM".equals(Util.MODEL) || "AFTB".equals(Util.MODEL));
|
|
}
|
|
|
|
public FrameworkCryptoConfig(UUID uuid, byte[] bArr, boolean z) {
|
|
this.uuid = uuid;
|
|
this.sessionId = bArr;
|
|
this.forceAllowInsecureDecoderComponents = z;
|
|
}
|
|
}
|