public interface

MediaCodecSelector

 androidx.media3.exoplayer.mediacodec.MediaCodecSelector

Gradle dependencies

compile group: 'androidx.media3', name: 'media3-exoplayer', version: '1.0.0-alpha03'

  • groupId: androidx.media3
  • artifactId: media3-exoplayer
  • version: 1.0.0-alpha03

Artifact androidx.media3:media3-exoplayer:1.0.0-alpha03 it located at Google repository (https://maven.google.com/)

Overview

Selector of MediaCodec instances.

Summary

Fields
public static final MediaCodecSelectorDEFAULT

Default implementation of MediaCodecSelector, which returns the preferred decoder for the given format.

Methods
public java.util.List<MediaCodecInfo>getDecoderInfos(java.lang.String mimeType, boolean requiresSecureDecoder, boolean requiresTunnelingDecoder)

Returns a list of decoders that can decode media in the specified MIME type, in priority order.

Fields

public static final MediaCodecSelector DEFAULT

Default implementation of MediaCodecSelector, which returns the preferred decoder for the given format.

Methods

public java.util.List<MediaCodecInfo> getDecoderInfos(java.lang.String mimeType, boolean requiresSecureDecoder, boolean requiresTunnelingDecoder)

Returns a list of decoders that can decode media in the specified MIME type, in priority order.

Parameters:

mimeType: The MIME type for which a decoder is required.
requiresSecureDecoder: Whether a secure decoder is required.
requiresTunnelingDecoder: Whether a tunneling decoder is required.

Returns:

An unmodifiable list of MediaCodecInfos corresponding to decoders. May be empty.

Source

/*
 * Copyright (C) 2016 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.media3.exoplayer.mediacodec;

import android.media.MediaCodec;
import androidx.media3.common.util.UnstableApi;
import androidx.media3.exoplayer.mediacodec.MediaCodecUtil.DecoderQueryException;
import java.util.List;

/** Selector of {@link MediaCodec} instances. */
@UnstableApi
public interface MediaCodecSelector {

  /**
   * Default implementation of {@link MediaCodecSelector}, which returns the preferred decoder for
   * the given format.
   */
  MediaCodecSelector DEFAULT = MediaCodecUtil::getDecoderInfos;

  /**
   * Returns a list of decoders that can decode media in the specified MIME type, in priority order.
   *
   * @param mimeType The MIME type for which a decoder is required.
   * @param requiresSecureDecoder Whether a secure decoder is required.
   * @param requiresTunnelingDecoder Whether a tunneling decoder is required.
   * @return An unmodifiable list of {@link MediaCodecInfo}s corresponding to decoders. May be
   *     empty.
   * @throws DecoderQueryException Thrown if there was an error querying decoders.
   */
  List<MediaCodecInfo> getDecoderInfos(
      String mimeType, boolean requiresSecureDecoder, boolean requiresTunnelingDecoder)
      throws DecoderQueryException;
}