package com.seewo.sdk.model;

import d.b.a.a.a;

/* JADX INFO: loaded from: classes.dex */
public class SDKScreenRecordConfig {
    public static final int RESOLUTION_1080P = 1;
    public static final int RESOLUTION_720P = 0;
    private boolean isRecordAudio;
    private boolean isRecordMicrophone;
    private int mResolution;
    private int microphoneVolume;
    private String path;
    private int systemVolume;

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

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

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

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

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

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

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

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

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

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

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

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

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

    public String toString() {
        StringBuilder sbB = a.B("SDKScreenRecordConfig{path='");
        a.R(sbB, this.path, '\'', ", isRecordAudio=");
        sbB.append(this.isRecordAudio);
        sbB.append(", isRecordMicrophone=");
        sbB.append(this.isRecordMicrophone);
        sbB.append(", systemVolume=");
        sbB.append(this.systemVolume);
        sbB.append(", microphoneVolume=");
        sbB.append(this.microphoneVolume);
        sbB.append(", mResolution=");
        sbB.append(this.mResolution);
        sbB.append('}');
        return sbB.toString();
    }

    public SDKScreenRecordConfig(String str, boolean z, boolean z2) {
        this.mResolution = -1;
        this.path = str;
        this.isRecordAudio = z;
        this.isRecordMicrophone = z2;
    }

    public SDKScreenRecordConfig(String str, boolean z, boolean z2, int i2) {
        this.mResolution = -1;
        this.path = str;
        this.isRecordAudio = z;
        this.isRecordMicrophone = z2;
        this.mResolution = i2;
    }
}
