- 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
13 lines
478 B
Java
13 lines
478 B
Java
package com.mbridge.msdk.playercommon.exoplayer2.drm;
|
|
|
|
import androidx.annotation.Nullable;
|
|
import com.mbridge.msdk.playercommon.exoplayer2.drm.ExoMediaDrm;
|
|
import java.util.UUID;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public interface MediaDrmCallback {
|
|
byte[] executeKeyRequest(UUID uuid, ExoMediaDrm.KeyRequest keyRequest, @Nullable String str) throws Exception;
|
|
|
|
byte[] executeProvisionRequest(UUID uuid, ExoMediaDrm.ProvisionRequest provisionRequest) throws Exception;
|
|
}
|