- 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
27 lines
1.0 KiB
Java
27 lines
1.0 KiB
Java
package com.mbridge.msdk.playercommon.exoplayer2.drm;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import com.mbridge.msdk.playercommon.exoplayer2.drm.ExoMediaDrm;
|
|
import com.mbridge.msdk.playercommon.exoplayer2.util.Assertions;
|
|
import java.io.IOException;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public final class LocalMediaDrmCallback implements MediaDrmCallback {
|
|
private final byte[] keyResponse;
|
|
|
|
@Override // com.mbridge.msdk.playercommon.exoplayer2.drm.MediaDrmCallback
|
|
public final byte[] executeKeyRequest(UUID uuid, ExoMediaDrm.KeyRequest keyRequest, @Nullable String str) throws Exception {
|
|
return this.keyResponse;
|
|
}
|
|
|
|
public LocalMediaDrmCallback(byte[] bArr) {
|
|
this.keyResponse = (byte[]) Assertions.checkNotNull(bArr);
|
|
}
|
|
|
|
@Override // com.mbridge.msdk.playercommon.exoplayer2.drm.MediaDrmCallback
|
|
public final byte[] executeProvisionRequest(UUID uuid, ExoMediaDrm.ProvisionRequest provisionRequest) throws IOException {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
}
|