ReportedVideoQualityNotSupportedQuirk.java

/*
 * Copyright 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.camera.video.internal.compat.quirk;

import static androidx.camera.core.CameraSelector.LENS_FACING_FRONT;

import android.media.CamcorderProfile;
import android.media.MediaCodec;
import android.media.MediaRecorder.VideoEncoder;
import android.os.Build;

import androidx.annotation.NonNull;
import androidx.annotation.RequiresApi;
import androidx.camera.core.impl.CamcorderProfileProvider;
import androidx.camera.core.impl.CameraInfoInternal;
import androidx.camera.video.Quality;

import java.util.Arrays;
import java.util.Locale;

/**
 * Quirk where qualities reported as available by {@link CamcorderProfileProvider#hasProfile(int)}
 * does not work on the device, and should not be used.
 *
 * <p>QuirkSummary
 *      Bug Id: 202080832, 242526718, 250807400
 *      Description:
 *                   <ul>
 *                       <li>See b/202080832#comment8. On devices exhibiting this quirk,
 *                       {@link CamcorderProfile} indicates it can support resolutions for a
 *                       specific video encoder (e.g., 3840x2160 for {@link VideoEncoder#H264} on
 *                       Huawei Mate 20), and it can create the video encoder by the
 *                       corresponding format. However, the camera is unable to produce video
 *                       frames when configured with a {@link MediaCodec} surface at the
 *                       specified resolution. On these devices, the capture session is opened
 *                       and configured, but an error occurs in the HAL.  for details of this
 *                       error.</li>
 *                  </ul>
 *                  <ul>
 *                      <li>See b/242526718#comment2. On Vivo Y91i, {@link CamcorderProfile}
 *                      indicates AVC encoder can support resolutions 1920x1080 and 1280x720.
 *                      However, the 1920x1080 and 1280x720 options cannot be configured properly.
 *                      It only supports 640x480.</li>
 *                  </ul>
 *                  <ul>
 *                      <li>See b/250807400. On Huawei P40 Lite, it fails to record video on
 *                      front camera and FHD/HD quality.</li>
 *                  </ul>
 *      Device(s):   Huawei Mate 20, Huawei Mate 20 Pro, Vivo Y91i, Huawei P40 Lite
 */
@RequiresApi(21) // TODO(b/200306659): Remove and replace with annotation on package-info.java
public class ReportedVideoQualityNotSupportedQuirk implements VideoQualityQuirk {
    static boolean load() {
        return isHuaweiMate20() || isHuaweiMate20Pro() || isVivoY91i() || isHuaweiP40Lite();
    }

    private static boolean isHuaweiMate20() {
        return "Huawei".equalsIgnoreCase(Build.BRAND) && "HMA-L29".equalsIgnoreCase(Build.MODEL);
    }

    private static boolean isHuaweiMate20Pro() {
        return "Huawei".equalsIgnoreCase(Build.BRAND) && "LYA-AL00".equalsIgnoreCase(Build.MODEL);
    }

    private static boolean isVivoY91i() {
        return "Vivo".equalsIgnoreCase(Build.BRAND) && "vivo 1820".equalsIgnoreCase(Build.MODEL);
    }

    private static boolean isHuaweiP40Lite() {
        return "Huawei".equalsIgnoreCase(Build.MANUFACTURER)
                && Arrays.asList("JNY-L21A", "JNY-L01A", "JNY-L21B", "JNY-L22A", "JNY-L02A",
                "JNY-L22B", "JNY-LX1").contains(Build.MODEL.toUpperCase(Locale.US));
    }

    /** Checks if the given mime type is a problematic quality. */
    @Override
    public boolean isProblematicVideoQuality(@NonNull CameraInfoInternal cameraInfo,
            @NonNull Quality quality) {
        if (isHuaweiMate20() || isHuaweiMate20Pro()) {
            return quality == Quality.UHD;
        } else if (isVivoY91i()) {
            // On Y91i, the HD and FHD resolution is problematic with the front camera. The back
            // camera only supports SD resolution.
            return quality == Quality.HD || quality == Quality.FHD;
        } else if (isHuaweiP40Lite()) {
            return cameraInfo.getLensFacing() == LENS_FACING_FRONT
                    && (quality == Quality.FHD || quality == Quality.HD);
        }
        return false;
    }

    @Override
    public boolean workaroundBySurfaceProcessing() {
        // VivoY91i can't be workaround.
        return isHuaweiMate20() || isHuaweiMate20Pro() || isHuaweiP40Lite();
    }
}