package M;

/* JADX INFO: loaded from: classes.dex */
public class g {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    private final int f1400a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    private final int f1401b;

    public g(int i2, int i3) {
        this.f1400a = i2;
        this.f1401b = i3;
    }

    public int a() {
        return this.f1400a;
    }

    public int b() {
        return this.f1401b;
    }

    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        g gVar = (g) obj;
        return this.f1400a == gVar.f1400a && this.f1401b == gVar.f1401b;
    }

    public int hashCode() {
        return (this.f1400a * 31) + this.f1401b;
    }

    public String toString() {
        return "PaletteInfo [paletteOffset=" + this.f1400a + ", paletteSize=" + this.f1401b + "]";
    }
}
