public final class

Api24Impl

extends java.lang.Object

 java.lang.Object

↳androidx.camera.video.internal.compat.Api24Impl

Gradle dependencies

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

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

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

Overview

Helper class to avoid verification errors for methods introduced in Android 7.0 (API 24).

Summary

Methods
public static intgetClientAudioSessionId(AudioRecordingConfiguration audioRecordingConfiguration)

Gets the audio session ID from a .

public static intgetTimestamp(AudioRecord audioRecord, AudioTimestamp audioTimestamp, int timeBase)

Gets the audio timestamp from a AudioRecord.

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

Methods

public static int getTimestamp(AudioRecord audioRecord, AudioTimestamp audioTimestamp, int timeBase)

Gets the audio timestamp from a AudioRecord.

public static int getClientAudioSessionId(AudioRecordingConfiguration audioRecordingConfiguration)

Gets the audio session ID from a .

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.compat;

import android.media.AudioRecord;
import android.media.AudioRecordingConfiguration;
import android.media.AudioTimestamp;

import androidx.annotation.DoNotInline;
import androidx.annotation.NonNull;
import androidx.annotation.RequiresApi;

/**
 * Helper class to avoid verification errors for methods introduced in Android 7.0 (API 24).
 */
@RequiresApi(24)
public final class Api24Impl {

    private Api24Impl() {
    }

    /**
     * Gets the audio timestamp from a {@link AudioRecord}.
     */
    @DoNotInline
    public static int getTimestamp(@NonNull AudioRecord audioRecord,
            @NonNull AudioTimestamp audioTimestamp, int timeBase) {
        return audioRecord.getTimestamp(audioTimestamp, timeBase);
    }

    /**
     * Gets the audio session ID from a {@link AudioRecordingConfiguration}.
     */
    @DoNotInline
    public static int getClientAudioSessionId(
            @NonNull AudioRecordingConfiguration audioRecordingConfiguration) {
        return audioRecordingConfiguration.getClientAudioSessionId();
    }
}