Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
package com.applovin.impl;
import android.media.MediaFormat;
import java.nio.ByteBuffer;
import java.util.List;
/* loaded from: classes.dex */
public abstract class sd {
public static void a(MediaFormat mediaFormat, String str, byte[] bArr) {
if (bArr != null) {
mediaFormat.setByteBuffer(str, ByteBuffer.wrap(bArr));
}
}
public static void a(MediaFormat mediaFormat, r3 r3Var) {
if (r3Var != null) {
a(mediaFormat, "color-transfer", r3Var.c);
a(mediaFormat, "color-standard", r3Var.a);
a(mediaFormat, "color-range", r3Var.b);
a(mediaFormat, "hdr-static-info", r3Var.d);
}
}
public static void a(MediaFormat mediaFormat, String str, float f) {
if (f != -1.0f) {
mediaFormat.setFloat(str, f);
}
}
public static void a(MediaFormat mediaFormat, String str, int i) {
if (i != -1) {
mediaFormat.setInteger(str, i);
}
}
public static void a(MediaFormat mediaFormat, List list) {
for (int i = 0; i < list.size(); i++) {
mediaFormat.setByteBuffer("csd-" + i, ByteBuffer.wrap((byte[]) list.get(i)));
}
}
}