Files
rr3-apk/decompiled/sources/com/applovin/impl/ug.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -08:00

37 lines
919 B
Java

package com.applovin.impl;
import com.mbridge.msdk.playercommon.exoplayer2.C;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes.dex */
public abstract class ug {
public static int b(byte[] bArr) {
return bArr[9] & 255;
}
public static List a(byte[] bArr) {
long b = b(c(bArr));
long b2 = b(3840L);
ArrayList arrayList = new ArrayList(3);
arrayList.add(bArr);
arrayList.add(a(b));
arrayList.add(a(b2));
return arrayList;
}
private static int c(byte[] bArr) {
return (bArr[10] & 255) | ((bArr[11] & 255) << 8);
}
private static long b(long j) {
return (j * C.NANOS_PER_SECOND) / 48000;
}
private static byte[] a(long j) {
return ByteBuffer.allocate(8).order(ByteOrder.nativeOrder()).putLong(j).array();
}
}