Files
rr3-apk/decompiled-community/sources/com/applovin/impl/ua.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

68 lines
2.3 KiB
Java

package com.applovin.impl;
import com.applovin.exoplayer2.common.base.Ascii;
import com.applovin.exoplayer2.common.base.Charsets;
import java.nio.ByteBuffer;
import java.nio.charset.CharacterCodingException;
import java.nio.charset.CharsetDecoder;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/* loaded from: classes.dex */
public final class ua extends dk {
private static final Pattern c = Pattern.compile("(.+?)='(.*?)';", 32);
private final CharsetDecoder a = Charsets.UTF_8.newDecoder();
private final CharsetDecoder b = Charsets.ISO_8859_1.newDecoder();
@Override // com.applovin.impl.dk
public bf a(ef efVar, ByteBuffer byteBuffer) {
String a = a(byteBuffer);
byte[] bArr = new byte[byteBuffer.limit()];
byteBuffer.get(bArr);
String str = null;
if (a == null) {
return new bf(new wa(bArr, null, null));
}
Matcher matcher = c.matcher(a);
String str2 = null;
for (int i = 0; matcher.find(i); i = matcher.end()) {
String group = matcher.group(1);
String group2 = matcher.group(2);
if (group != null) {
String lowerCase = Ascii.toLowerCase(group);
lowerCase.hashCode();
if (lowerCase.equals("streamurl")) {
str2 = group2;
} else if (lowerCase.equals("streamtitle")) {
str = group2;
}
}
}
return new bf(new wa(bArr, str, str2));
}
private String a(ByteBuffer byteBuffer) {
try {
return this.a.decode(byteBuffer).toString();
} catch (CharacterCodingException unused) {
try {
String charBuffer = this.b.decode(byteBuffer).toString();
this.b.reset();
byteBuffer.rewind();
return charBuffer;
} catch (CharacterCodingException unused2) {
this.b.reset();
byteBuffer.rewind();
return null;
} catch (Throwable th) {
this.b.reset();
byteBuffer.rewind();
throw th;
}
} finally {
this.a.reset();
byteBuffer.rewind();
}
}
}