Files
rr3-apk/decompiled-community/sources/com/google/android/exoplayer2/metadata/mp4/SmtaMetadataEntry.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

67 lines
2.3 KiB
Java

package com.google.android.exoplayer2.metadata.mp4;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.android.exoplayer2.metadata.Metadata;
import com.google.common.primitives.Floats;
import com.ironsource.mediationsdk.logger.IronSourceError;
/* loaded from: classes2.dex */
public final class SmtaMetadataEntry implements Metadata.Entry {
public static final Parcelable.Creator<SmtaMetadataEntry> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.metadata.mp4.SmtaMetadataEntry.1
@Override // android.os.Parcelable.Creator
public SmtaMetadataEntry createFromParcel(Parcel parcel) {
return new SmtaMetadataEntry(parcel);
}
@Override // android.os.Parcelable.Creator
public SmtaMetadataEntry[] newArray(int i) {
return new SmtaMetadataEntry[i];
}
};
public final float captureFrameRate;
public final int svcTemporalLayerCount;
@Override // android.os.Parcelable
public int describeContents() {
return 0;
}
public SmtaMetadataEntry(Parcel parcel) {
this.captureFrameRate = parcel.readFloat();
this.svcTemporalLayerCount = parcel.readInt();
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || SmtaMetadataEntry.class != obj.getClass()) {
return false;
}
SmtaMetadataEntry smtaMetadataEntry = (SmtaMetadataEntry) obj;
return this.captureFrameRate == smtaMetadataEntry.captureFrameRate && this.svcTemporalLayerCount == smtaMetadataEntry.svcTemporalLayerCount;
}
public int hashCode() {
return ((IronSourceError.ERROR_NON_EXISTENT_INSTANCE + Floats.hashCode(this.captureFrameRate)) * 31) + this.svcTemporalLayerCount;
}
public String toString() {
float f = this.captureFrameRate;
int i = this.svcTemporalLayerCount;
StringBuilder sb = new StringBuilder(73);
sb.append("smta: captureFrameRate=");
sb.append(f);
sb.append(", svcTemporalLayerCount=");
sb.append(i);
return sb.toString();
}
@Override // android.os.Parcelable
public void writeToParcel(Parcel parcel, int i) {
parcel.writeFloat(this.captureFrameRate);
parcel.writeInt(this.svcTemporalLayerCount);
}
}