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,5 @@
package com.google.android.exoplayer2.source.smoothstreaming;
/* loaded from: classes2.dex */
public interface SsChunkSource$Factory {
}

View File

@@ -0,0 +1,37 @@
package com.google.android.exoplayer2.source.smoothstreaming;
import androidx.work.WorkRequest;
import com.google.android.exoplayer2.drm.DefaultDrmSessionManagerProvider;
import com.google.android.exoplayer2.drm.DrmSessionManagerProvider;
import com.google.android.exoplayer2.source.CompositeSequenceableLoaderFactory;
import com.google.android.exoplayer2.source.DefaultCompositeSequenceableLoaderFactory;
import com.google.android.exoplayer2.upstream.DataSource$Factory;
import com.google.android.exoplayer2.upstream.DefaultLoadErrorHandlingPolicy;
import com.google.android.exoplayer2.upstream.LoadErrorHandlingPolicy;
import com.google.android.exoplayer2.util.Assertions;
import java.util.Collections;
import java.util.List;
/* loaded from: classes2.dex */
public final class SsMediaSource$Factory {
public final SsChunkSource$Factory chunkSourceFactory;
public CompositeSequenceableLoaderFactory compositeSequenceableLoaderFactory;
public DrmSessionManagerProvider drmSessionManagerProvider;
public long livePresentationDelayMs;
public LoadErrorHandlingPolicy loadErrorHandlingPolicy;
public List streamKeys;
public SsMediaSource$Factory(final DataSource$Factory dataSource$Factory) {
this(new SsChunkSource$Factory(dataSource$Factory) { // from class: com.google.android.exoplayer2.source.smoothstreaming.DefaultSsChunkSource$Factory
}, dataSource$Factory);
}
public SsMediaSource$Factory(SsChunkSource$Factory ssChunkSource$Factory, DataSource$Factory dataSource$Factory) {
this.chunkSourceFactory = (SsChunkSource$Factory) Assertions.checkNotNull(ssChunkSource$Factory);
this.drmSessionManagerProvider = new DefaultDrmSessionManagerProvider();
this.loadErrorHandlingPolicy = new DefaultLoadErrorHandlingPolicy();
this.livePresentationDelayMs = WorkRequest.DEFAULT_BACKOFF_DELAY_MILLIS;
this.compositeSequenceableLoaderFactory = new DefaultCompositeSequenceableLoaderFactory();
this.streamKeys = Collections.emptyList();
}
}