Files
rr3-apk/decompiled-community/sources/com/google/android/exoplayer2/Timeline$Period.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

39 lines
1.7 KiB
Java

package com.google.android.exoplayer2;
import com.google.android.exoplayer2.source.ads.AdPlaybackState;
import com.google.android.exoplayer2.util.Util;
/* loaded from: classes2.dex */
public final class Timeline$Period {
public static final Bundleable$Creator CREATOR = new MediaItem$$ExternalSyntheticLambda0();
public AdPlaybackState adPlaybackState = AdPlaybackState.NONE;
public long durationUs;
public Object id;
public boolean isPlaceholder;
public long positionInWindowUs;
public Object uid;
public int windowIndex;
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || !Timeline$Period.class.equals(obj.getClass())) {
return false;
}
Timeline$Period timeline$Period = (Timeline$Period) obj;
return Util.areEqual(this.id, timeline$Period.id) && Util.areEqual(this.uid, timeline$Period.uid) && this.windowIndex == timeline$Period.windowIndex && this.durationUs == timeline$Period.durationUs && this.positionInWindowUs == timeline$Period.positionInWindowUs && this.isPlaceholder == timeline$Period.isPlaceholder && Util.areEqual(this.adPlaybackState, timeline$Period.adPlaybackState);
}
public int hashCode() {
Object obj = this.id;
int hashCode = (217 + (obj == null ? 0 : obj.hashCode())) * 31;
Object obj2 = this.uid;
int hashCode2 = (((hashCode + (obj2 != null ? obj2.hashCode() : 0)) * 31) + this.windowIndex) * 31;
long j = this.durationUs;
int i = (hashCode2 + ((int) (j ^ (j >>> 32)))) * 31;
long j2 = this.positionInWindowUs;
return ((((i + ((int) (j2 ^ (j2 >>> 32)))) * 31) + (this.isPlaceholder ? 1 : 0)) * 31) + this.adPlaybackState.hashCode();
}
}