public class

QualityAddedEncoderProfilesProvider

extends java.lang.Object

implements EncoderProfilesProvider

 java.lang.Object

↳androidx.camera.video.internal.workaround.QualityAddedEncoderProfilesProvider

Gradle dependencies

compile group: 'androidx.camera', name: 'camera-video', version: '1.5.0-alpha01'

  • groupId: androidx.camera
  • artifactId: camera-video
  • version: 1.5.0-alpha01

Artifact androidx.camera:camera-video:1.5.0-alpha01 it located at Google repository (https://maven.google.com/)

Overview

An implementation that adds extra supported qualities.

Summary

Constructors
publicQualityAddedEncoderProfilesProvider(EncoderProfilesProvider provider, Quirks quirks, CameraInfoInternal cameraInfo, Function<VideoEncoderConfig, VideoEncoderInfo> videoEncoderInfoFinder)

Methods
public EncoderProfilesProxygetAll(int quality)

public booleanhasProfile(int quality)

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public QualityAddedEncoderProfilesProvider(EncoderProfilesProvider provider, Quirks quirks, CameraInfoInternal cameraInfo, Function<VideoEncoderConfig, VideoEncoderInfo> videoEncoderInfoFinder)

Methods

public boolean hasProfile(int quality)

public EncoderProfilesProxy getAll(int quality)

Source

/*
 * Copyright 2023 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.workaround;

import static androidx.core.util.Preconditions.checkState;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.arch.core.util.Function;
import androidx.camera.core.impl.CameraInfoInternal;
import androidx.camera.core.impl.EncoderProfilesProvider;
import androidx.camera.core.impl.EncoderProfilesProxy;
import androidx.camera.core.impl.Quirks;
import androidx.camera.video.internal.compat.quirk.ExtraSupportedQualityQuirk;
import androidx.camera.video.internal.encoder.VideoEncoderConfig;
import androidx.camera.video.internal.encoder.VideoEncoderInfo;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * An implementation that adds extra supported qualities.
 *
 * @see ExtraSupportedQualityQuirk
 */
public class QualityAddedEncoderProfilesProvider implements EncoderProfilesProvider {

    private final EncoderProfilesProvider mProvider;
    @Nullable
    private Map<Integer, EncoderProfilesProxy> mExtraQualityToEncoderProfiles;

    public QualityAddedEncoderProfilesProvider(
            @NonNull EncoderProfilesProvider provider,
            @NonNull Quirks quirks,
            @NonNull CameraInfoInternal cameraInfo,
            @NonNull Function<VideoEncoderConfig, VideoEncoderInfo> videoEncoderInfoFinder) {
        mProvider = provider;

        List<ExtraSupportedQualityQuirk> extraQuirks = quirks.getAll(
                ExtraSupportedQualityQuirk.class);
        if (!extraQuirks.isEmpty()) {
            checkState(extraQuirks.size() == 1);
            Map<Integer, EncoderProfilesProxy> extraEncoderProfiles = extraQuirks.get(0)
                    .getExtraEncoderProfiles(cameraInfo, mProvider, videoEncoderInfoFinder);
            if (extraEncoderProfiles != null) {
                mExtraQualityToEncoderProfiles = new HashMap<>(extraEncoderProfiles);
            }
        }
    }

    @Override
    public boolean hasProfile(int quality) {
        return getProfilesInternal(quality) != null;
    }

    @Nullable
    @Override
    public EncoderProfilesProxy getAll(int quality) {
        return getProfilesInternal(quality);
    }

    @Nullable
    private EncoderProfilesProxy getProfilesInternal(int quality) {
        if (mExtraQualityToEncoderProfiles != null
                && mExtraQualityToEncoderProfiles.containsKey(quality)) {
            return mExtraQualityToEncoderProfiles.get(quality);
        }
        return mProvider.getAll(quality);
    }
}