Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 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)));
}
}
}