package androidx.media3.extractor.text.ttml;

/* JADX INFO: loaded from: classes.dex */
final class TtmlRegion {
    public final float height;
    public final String id;
    public final float line;
    public final int lineAnchor;
    public final int lineType;
    public final float position;
    public final float textSize;
    public final int textSizeType;
    public final int verticalType;
    public final float width;

    public TtmlRegion(String str) {
        this(str, -3.4028235E38f, -3.4028235E38f, Integer.MIN_VALUE, Integer.MIN_VALUE, -3.4028235E38f, -3.4028235E38f, Integer.MIN_VALUE, -3.4028235E38f, Integer.MIN_VALUE);
    }

    public TtmlRegion(String str, float f6, float f7, int i6, int i7, float f8, float f9, int i8, float f10, int i9) {
        this.id = str;
        this.position = f6;
        this.line = f7;
        this.lineType = i6;
        this.lineAnchor = i7;
        this.width = f8;
        this.height = f9;
        this.textSizeType = i8;
        this.textSize = f10;
        this.verticalType = i9;
    }
}
