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;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    private boolean f411c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    private int f412d;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    private int f413e;

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    private int f414f;

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

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

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

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

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

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

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

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

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

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

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

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

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

    public String toString() {
        return "SDKScreenRecordConfig{path='" + this.a + "', isRecordAudio=" + this.b + ", isRecordMicrophone=" + this.f411c + ", systemVolume=" + this.f412d + ", microphoneVolume=" + this.f413e + ", mResolution=" + this.f414f + '}';
    }

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

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