package com.seewo.sdk.model;

/* JADX INFO: loaded from: classes.dex */
public class SDKScreenRecordConfig {
    public static final int RESOLUTION_1080P = 1;
    public static final int RESOLUTION_720P = 0;
    private String a;
    private boolean b;
    private boolean c;
    private int d;
    private int e;
    private int f;

    public SDKScreenRecordConfig() {
        this.f = -1;
    }

    public int getMicrophoneVolume() {
        return this.e;
    }

    public String getPath() {
        return this.a;
    }

    public int getResolution() {
        return this.f;
    }

    public int getSystemVolume() {
        return this.d;
    }

    public boolean isRecordAudio() {
        return this.b;
    }

    public boolean isRecordMicrophone() {
        return this.c;
    }

    public void setMicrophoneVolume(int i2) {
        this.e = i2;
    }

    public void setPath(String str) {
        this.a = str;
    }

    public void setRecordAudio(boolean z) {
        this.b = z;
    }

    public void setRecordMicrophone(boolean z) {
        this.c = z;
    }

    public void setResolution(int i2) {
        this.f = i2;
    }

    public void setSystemVolume(int i2) {
        this.d = i2;
    }

    public String toString() {
        return "SDKScreenRecordConfig{path='" + this.a + "', isRecordAudio=" + this.b + ", isRecordMicrophone=" + this.c + ", systemVolume=" + this.d + ", microphoneVolume=" + this.e + ", mResolution=" + this.f + '}';
    }

    public SDKScreenRecordConfig(String str, boolean z, boolean z2) {
        this.f = -1;
        this.a = str;
        this.b = z;
        this.c = z2;
    }

    public SDKScreenRecordConfig(String str, boolean z, boolean z2, int i2) {
        this.f = -1;
        this.a = str;
        this.b = z;
        this.c = z2;
        this.f = i2;
    }
}
