public final class

ExportException.CodecInfo

extends java.lang.Object

 java.lang.Object

↳androidx.media3.transformer.ExportException.CodecInfo

Overview

The Codec details.

Summary

Fields
public final java.lang.StringconfigurationFormat

A string describing the format used to configure the underlying codec, for example, the value returned by Format.toString() or .

public final booleanisDecoder

Whether the Codec is used as a decoder.

public final booleanisVideo

Whether the Codec is configured for video.

public final java.lang.Stringname

The Codec name, or null if the Codec is not yet initialized.

Constructors
publicCodecInfo(java.lang.String configurationFormat, boolean isVideo, boolean isDecoder, java.lang.String name)

Creates an instance.

Methods
public java.lang.StringtoString()

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

Fields

public final java.lang.String configurationFormat

A string describing the format used to configure the underlying codec, for example, the value returned by Format.toString() or .

public final boolean isVideo

Whether the Codec is configured for video.

public final boolean isDecoder

Whether the Codec is used as a decoder.

public final java.lang.String name

The Codec name, or null if the Codec is not yet initialized.

Constructors

public CodecInfo(java.lang.String configurationFormat, boolean isVideo, boolean isDecoder, java.lang.String name)

Creates an instance.

Methods

public java.lang.String toString()