mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
22 lines
629 B
Java
22 lines
629 B
Java
package com.google.android.exoplayer2;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class RendererConfiguration {
|
|
public static final RendererConfiguration DEFAULT = new RendererConfiguration(false);
|
|
public final boolean tunneling;
|
|
|
|
public int hashCode() {
|
|
return !this.tunneling ? 1 : 0;
|
|
}
|
|
|
|
public RendererConfiguration(boolean z) {
|
|
this.tunneling = z;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return obj != null && getClass() == obj.getClass() && this.tunneling == ((RendererConfiguration) obj).tunneling;
|
|
}
|
|
}
|