public final class

AudioEncoderConfigAudioProfileResolver

extends java.lang.Object

implements Supplier<AudioEncoderConfig>

 java.lang.Object

↳androidx.camera.video.internal.config.AudioEncoderConfigAudioProfileResolver

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 AudioEncoderConfig supplier that resolves requested encoder settings from an AudioSpec for the given AudioSettings using the provided EncoderProfilesProxy.AudioProfileProxy.

Summary

Constructors
publicAudioEncoderConfigAudioProfileResolver(java.lang.String mimeType, int audioProfile, Timebase inputTimebase, AudioSpec audioSpec, AudioSettings audioSettings, EncoderProfilesProxy.AudioProfileProxy audioProfileProxy)

Constructor for an AudioEncoderConfigAudioProfileResolver.

Methods
public AudioEncoderConfigget()

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

Constructors

public AudioEncoderConfigAudioProfileResolver(java.lang.String mimeType, int audioProfile, Timebase inputTimebase, AudioSpec audioSpec, AudioSettings audioSettings, EncoderProfilesProxy.AudioProfileProxy audioProfileProxy)

Constructor for an AudioEncoderConfigAudioProfileResolver.

Parameters:

mimeType: The mime type for the audio encoder
audioProfile: The profile required for the audio encoder
inputTimebase: The timebase of the input frame
audioSpec: The AudioSpec which defines the settings that should be used with the audio encoder.
audioSettings: The settings used to configure the source of audio.
audioProfileProxy: The EncoderProfilesProxy.AudioProfileProxy used to resolve automatic and range settings.

Methods

public AudioEncoderConfig get()

Source

/*
 * 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.config;


import android.util.Range;

import androidx.annotation.NonNull;
import androidx.camera.core.Logger;
import androidx.camera.core.impl.EncoderProfilesProxy.AudioProfileProxy;
import androidx.camera.core.impl.Timebase;
import androidx.camera.video.AudioSpec;
import androidx.camera.video.internal.audio.AudioSettings;
import androidx.camera.video.internal.encoder.AudioEncoderConfig;
import androidx.core.util.Supplier;

/**
 * An {@link AudioEncoderConfig} supplier that resolves requested encoder settings from an
 * {@link AudioSpec} for the given {@link AudioSettings} using the provided
 * {@link AudioProfileProxy}.
 */
public final class AudioEncoderConfigAudioProfileResolver implements
        Supplier<AudioEncoderConfig> {

    private static final String TAG = "AudioEncAdPrflRslvr";

    private final String mMimeType;
    private final Timebase mInputTimebase;
    private final int mAudioProfile;
    private final AudioSpec mAudioSpec;
    private final AudioSettings mAudioSettings;
    private final AudioProfileProxy mAudioProfileProxy;

    /**
     * Constructor for an AudioEncoderConfigAudioProfileResolver.
     *
     * @param mimeType            The mime type for the audio encoder
     * @param audioProfile        The profile required for the audio encoder
     * @param inputTimebase       The timebase of the input frame
     * @param audioSpec           The {@link AudioSpec} which defines the settings that should be
     *                            used with the audio encoder.
     * @param audioSettings       The settings used to configure the source of audio.
     * @param audioProfileProxy   The {@link AudioProfileProxy} used to resolve automatic and
     *                            range settings.
     */
    public AudioEncoderConfigAudioProfileResolver(@NonNull String mimeType,
            int audioProfile, @NonNull Timebase inputTimebase, @NonNull AudioSpec audioSpec,
            @NonNull AudioSettings audioSettings,
            @NonNull AudioProfileProxy audioProfileProxy) {
        mMimeType = mimeType;
        mAudioProfile = audioProfile;
        mInputTimebase = inputTimebase;
        mAudioSpec = audioSpec;
        mAudioSettings = audioSettings;
        mAudioProfileProxy = audioProfileProxy;
    }

    @Override
    @NonNull
    public AudioEncoderConfig get() {
        Logger.d(TAG, "Using resolved AUDIO bitrate from AudioProfile");
        Range<Integer> audioSpecBitrateRange = mAudioSpec.getBitrate();
        int resolvedBitrate = AudioConfigUtil.scaleAndClampBitrate(
                mAudioProfileProxy.getBitrate(),
                mAudioSettings.getChannelCount(), mAudioProfileProxy.getChannels(),
                mAudioSettings.getSampleRate(), mAudioProfileProxy.getSampleRate(),
                audioSpecBitrateRange);

        return AudioEncoderConfig.builder()
                .setMimeType(mMimeType)
                .setProfile(mAudioProfile)
                .setInputTimebase(mInputTimebase)
                .setChannelCount(mAudioSettings.getChannelCount())
                .setSampleRate(mAudioSettings.getSampleRate())
                .setBitrate(resolvedBitrate)
                .build();
    }
}