public final class

DtsUtil.DtsHeader

extends java.lang.Object

 java.lang.Object

↳androidx.media3.extractor.DtsUtil.DtsHeader

Overview

Information parsed from a DTS frame header.

Summary

Fields
public final intbitrate

The bitrate of compressed stream.

public final intchannelCount

The number of channels, or C.LENGTH_UNSET if unknown.

public final longframeDurationUs

The duration of the DTS frame in microseconds, or C.TIME_UNSET if unknown.

public final intframeSize

The size of the DTS frame (compressed), in bytes.

public final java.lang.StringmimeType

The mime type of the DTS bitstream.

public final intsampleRate

The audio sampling rate in Hertz, or C.RATE_UNSET_INT if unknown.

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

Fields

public final java.lang.String mimeType

The mime type of the DTS bitstream.

public final int sampleRate

The audio sampling rate in Hertz, or C.RATE_UNSET_INT if unknown.

public final int channelCount

The number of channels, or C.LENGTH_UNSET if unknown.

public final int frameSize

The size of the DTS frame (compressed), in bytes.

public final long frameDurationUs

The duration of the DTS frame in microseconds, or C.TIME_UNSET if unknown.

public final int bitrate

The bitrate of compressed stream.