- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
74 lines
2.4 KiB
Java
74 lines
2.4 KiB
Java
package com.google.android.exoplayer2.source;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import java.util.Arrays;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class TrackGroupArray implements Parcelable {
|
|
public int hashCode;
|
|
public final int length;
|
|
public final TrackGroup[] trackGroups;
|
|
public static final TrackGroupArray EMPTY = new TrackGroupArray(new TrackGroup[0]);
|
|
public static final Parcelable.Creator<TrackGroupArray> CREATOR = new Parcelable.Creator() { // from class: com.google.android.exoplayer2.source.TrackGroupArray.1
|
|
@Override // android.os.Parcelable.Creator
|
|
public TrackGroupArray createFromParcel(Parcel parcel) {
|
|
return new TrackGroupArray(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
public TrackGroupArray[] newArray(int i) {
|
|
return new TrackGroupArray[i];
|
|
}
|
|
};
|
|
|
|
@Override // android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
public TrackGroupArray(TrackGroup... trackGroupArr) {
|
|
this.trackGroups = trackGroupArr;
|
|
this.length = trackGroupArr.length;
|
|
}
|
|
|
|
public TrackGroupArray(Parcel parcel) {
|
|
int readInt = parcel.readInt();
|
|
this.length = readInt;
|
|
this.trackGroups = new TrackGroup[readInt];
|
|
for (int i = 0; i < this.length; i++) {
|
|
this.trackGroups[i] = (TrackGroup) parcel.readParcelable(TrackGroup.class.getClassLoader());
|
|
}
|
|
}
|
|
|
|
public TrackGroup get(int i) {
|
|
return this.trackGroups[i];
|
|
}
|
|
|
|
public int hashCode() {
|
|
if (this.hashCode == 0) {
|
|
this.hashCode = Arrays.hashCode(this.trackGroups);
|
|
}
|
|
return this.hashCode;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || TrackGroupArray.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
TrackGroupArray trackGroupArray = (TrackGroupArray) obj;
|
|
return this.length == trackGroupArray.length && Arrays.equals(this.trackGroups, trackGroupArray.trackGroups);
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeInt(this.length);
|
|
for (int i2 = 0; i2 < this.length; i2++) {
|
|
parcel.writeParcelable(this.trackGroups[i2], 0);
|
|
}
|
|
}
|
|
}
|