what-the-bank/sources/io/flutter/plugins/camera/features/resolution/ResolutionFeature.java

218 lines
9.6 KiB
Java

package io.flutter.plugins.camera.features.resolution;
import android.hardware.camera2.CaptureRequest;
import android.media.CamcorderProfile;
import android.media.EncoderProfiles;
import android.os.Build;
import android.util.Size;
import io.flutter.plugins.camera.CameraProperties;
import io.flutter.plugins.camera.features.CameraFeature;
/* loaded from: classes6.dex */
public class ResolutionFeature extends CameraFeature<ResolutionPreset> {
private int cameraId;
private Size captureSize;
private ResolutionPreset currentSetting;
private Size previewSize;
private EncoderProfiles recordingProfile;
private CamcorderProfile recordingProfileLegacy;
@Override // io.flutter.plugins.camera.features.CameraFeature
public void updateBuilder(CaptureRequest.Builder builder) {
}
public ResolutionFeature(CameraProperties cameraProperties, ResolutionPreset resolutionPreset, String str) {
super(cameraProperties);
this.currentSetting = resolutionPreset;
try {
int parseInt = Integer.parseInt(str, 10);
this.cameraId = parseInt;
configureResolution(resolutionPreset, parseInt);
} catch (NumberFormatException unused) {
this.cameraId = -1;
}
}
@Override // io.flutter.plugins.camera.features.CameraFeature
public void setValue(ResolutionPreset resolutionPreset) {
this.currentSetting = resolutionPreset;
configureResolution(resolutionPreset, this.cameraId);
}
static Size computeBestPreviewSize(int i, ResolutionPreset resolutionPreset) throws IndexOutOfBoundsException {
EncoderProfiles.VideoProfile videoProfile;
if (resolutionPreset.ordinal() > ResolutionPreset.high.ordinal()) {
resolutionPreset = ResolutionPreset.high;
}
if (Build.VERSION.SDK_INT >= 31 && (videoProfile = getBestAvailableCamcorderProfileForResolutionPreset(i, resolutionPreset).getVideoProfiles().get(0)) != null) {
return new Size(videoProfile.getWidth(), videoProfile.getHeight());
}
CamcorderProfile bestAvailableCamcorderProfileForResolutionPresetLegacy = getBestAvailableCamcorderProfileForResolutionPresetLegacy(i, resolutionPreset);
return new Size(bestAvailableCamcorderProfileForResolutionPresetLegacy.videoFrameWidth, bestAvailableCamcorderProfileForResolutionPresetLegacy.videoFrameHeight);
}
/* JADX INFO: Access modifiers changed from: package-private */
/* renamed from: io.flutter.plugins.camera.features.resolution.ResolutionFeature$1, reason: invalid class name */
/* loaded from: classes6.dex */
public static /* synthetic */ class AnonymousClass1 {
static final int[] $SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset;
static {
int[] iArr = new int[ResolutionPreset.values().length];
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset = iArr;
try {
iArr[ResolutionPreset.max.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[ResolutionPreset.ultraHigh.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[ResolutionPreset.veryHigh.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
try {
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[ResolutionPreset.high.ordinal()] = 4;
} catch (NoSuchFieldError unused4) {
}
try {
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[ResolutionPreset.medium.ordinal()] = 5;
} catch (NoSuchFieldError unused5) {
}
try {
$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[ResolutionPreset.low.ordinal()] = 6;
} catch (NoSuchFieldError unused6) {
}
}
}
/* JADX WARN: Failed to find 'out' block for switch in B:3:0x000a. Please report as an issue. */
public static CamcorderProfile getBestAvailableCamcorderProfileForResolutionPresetLegacy(int i, ResolutionPreset resolutionPreset) {
if (i < 0) {
throw new AssertionError("getBestAvailableCamcorderProfileForResolutionPreset can only be used with valid (>=0) camera identifiers.");
}
switch (AnonymousClass1.$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[resolutionPreset.ordinal()]) {
case 1:
if (CamcorderProfile.hasProfile(i, 1)) {
return CamcorderProfile.get(i, 1);
}
case 2:
if (CamcorderProfile.hasProfile(i, 8)) {
return CamcorderProfile.get(i, 8);
}
case 3:
if (CamcorderProfile.hasProfile(i, 6)) {
return CamcorderProfile.get(i, 6);
}
case 4:
if (CamcorderProfile.hasProfile(i, 5)) {
return CamcorderProfile.get(i, 5);
}
case 5:
if (CamcorderProfile.hasProfile(i, 4)) {
return CamcorderProfile.get(i, 4);
}
case 6:
if (CamcorderProfile.hasProfile(i, 7)) {
return CamcorderProfile.get(i, 7);
}
default:
if (CamcorderProfile.hasProfile(i, 0)) {
return CamcorderProfile.get(i, 0);
}
throw new IllegalArgumentException("No capture session available for current capture session.");
}
}
/* JADX WARN: Failed to find 'out' block for switch in B:3:0x000e. Please report as an issue. */
public static EncoderProfiles getBestAvailableCamcorderProfileForResolutionPreset(int i, ResolutionPreset resolutionPreset) {
if (i < 0) {
throw new AssertionError("getBestAvailableCamcorderProfileForResolutionPreset can only be used with valid (>=0) camera identifiers.");
}
String num = Integer.toString(i);
switch (AnonymousClass1.$SwitchMap$io$flutter$plugins$camera$features$resolution$ResolutionPreset[resolutionPreset.ordinal()]) {
case 1:
if (CamcorderProfile.hasProfile(i, 1)) {
return CamcorderProfile.getAll(num, 1);
}
case 2:
if (CamcorderProfile.hasProfile(i, 8)) {
return CamcorderProfile.getAll(num, 8);
}
case 3:
if (CamcorderProfile.hasProfile(i, 6)) {
return CamcorderProfile.getAll(num, 6);
}
case 4:
if (CamcorderProfile.hasProfile(i, 5)) {
return CamcorderProfile.getAll(num, 5);
}
case 5:
if (CamcorderProfile.hasProfile(i, 4)) {
return CamcorderProfile.getAll(num, 4);
}
case 6:
if (CamcorderProfile.hasProfile(i, 7)) {
return CamcorderProfile.getAll(num, 7);
}
default:
if (CamcorderProfile.hasProfile(i, 0)) {
return CamcorderProfile.getAll(num, 0);
}
throw new IllegalArgumentException("No capture session available for current capture session.");
}
}
private void configureResolution(ResolutionPreset resolutionPreset, int i) throws IndexOutOfBoundsException {
if (checkIsSupported()) {
if (Build.VERSION.SDK_INT >= 31) {
this.recordingProfileLegacy = null;
EncoderProfiles bestAvailableCamcorderProfileForResolutionPreset = getBestAvailableCamcorderProfileForResolutionPreset(i, resolutionPreset);
this.recordingProfile = bestAvailableCamcorderProfileForResolutionPreset;
EncoderProfiles.VideoProfile videoProfile = bestAvailableCamcorderProfileForResolutionPreset.getVideoProfiles().get(0);
if (videoProfile != null) {
this.captureSize = new Size(videoProfile.getWidth(), videoProfile.getHeight());
this.previewSize = computeBestPreviewSize(i, resolutionPreset);
}
}
this.recordingProfile = null;
this.recordingProfileLegacy = getBestAvailableCamcorderProfileForResolutionPresetLegacy(i, resolutionPreset);
this.captureSize = new Size(this.recordingProfileLegacy.videoFrameWidth, this.recordingProfileLegacy.videoFrameHeight);
this.previewSize = computeBestPreviewSize(i, resolutionPreset);
}
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // io.flutter.plugins.camera.features.CameraFeature
public ResolutionPreset getValue() {
return this.currentSetting;
}
public CamcorderProfile getRecordingProfileLegacy() {
return this.recordingProfileLegacy;
}
public EncoderProfiles getRecordingProfile() {
return this.recordingProfile;
}
public Size getPreviewSize() {
return this.previewSize;
}
@Override // io.flutter.plugins.camera.features.CameraFeature
public String getDebugName() {
return "ResolutionFeature";
}
public Size getCaptureSize() {
return this.captureSize;
}
@Override // io.flutter.plugins.camera.features.CameraFeature
public boolean checkIsSupported() {
return this.cameraId >= 0;
}
}