Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/playercommon/exoplayer2/decoder/DecoderCounters.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

30 lines
1.3 KiB
Java

package com.mbridge.msdk.playercommon.exoplayer2.decoder;
/* loaded from: classes4.dex */
public final class DecoderCounters {
public int decoderInitCount;
public int decoderReleaseCount;
public int droppedBufferCount;
public int droppedToKeyframeCount;
public int inputBufferCount;
public int maxConsecutiveDroppedBufferCount;
public int renderedOutputBufferCount;
public int skippedInputBufferCount;
public int skippedOutputBufferCount;
public final synchronized void ensureUpdated() {
}
public final void merge(DecoderCounters decoderCounters) {
this.decoderInitCount += decoderCounters.decoderInitCount;
this.decoderReleaseCount += decoderCounters.decoderReleaseCount;
this.inputBufferCount += decoderCounters.inputBufferCount;
this.skippedInputBufferCount += decoderCounters.skippedInputBufferCount;
this.renderedOutputBufferCount += decoderCounters.renderedOutputBufferCount;
this.skippedOutputBufferCount += decoderCounters.skippedOutputBufferCount;
this.droppedBufferCount += decoderCounters.droppedBufferCount;
this.maxConsecutiveDroppedBufferCount = Math.max(this.maxConsecutiveDroppedBufferCount, decoderCounters.maxConsecutiveDroppedBufferCount);
this.droppedToKeyframeCount += decoderCounters.droppedToKeyframeCount;
}
}