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;

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    private String f3617a;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    public void setRecordAudio(boolean z2) {
        this.f3618b = z2;
    }

    public void setRecordMicrophone(boolean z2) {
        this.f3619c = z2;
    }

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

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

    public String toString() {
        return "SDKScreenRecordConfig{path='" + this.f3617a + "', isRecordAudio=" + this.f3618b + ", isRecordMicrophone=" + this.f3619c + ", systemVolume=" + this.f3620d + ", microphoneVolume=" + this.f3621e + ", mResolution=" + this.f3622f + '}';
    }

    public SDKScreenRecordConfig(String str, boolean z2, boolean z3) {
        this.f3622f = -1;
        this.f3617a = str;
        this.f3618b = z2;
        this.f3619c = z3;
    }

    public SDKScreenRecordConfig(String str, boolean z2, boolean z3, int i2) {
        this.f3617a = str;
        this.f3618b = z2;
        this.f3619c = z3;
        this.f3622f = i2;
    }
}
