Most visited

Recently visited

Added in API level 21

TvTrackInfo.Builder

public static final class TvTrackInfo.Builder
extends Object

java.lang.Object
   ↳ android.media.tv.TvTrackInfo.Builder


A builder class for creating TvTrackInfo objects.

Summary

Public constructors

TvTrackInfo.Builder(int type, String id)

Create a TvTrackInfo.Builder.

Public methods

TvTrackInfo build()

Creates a TvTrackInfo instance with the specified fields.

final TvTrackInfo.Builder setAudioChannelCount(int audioChannelCount)

Sets the audio channel count.

final TvTrackInfo.Builder setAudioSampleRate(int audioSampleRate)

Sets the audio sample rate, in the unit of Hz.

final TvTrackInfo.Builder setDescription(CharSequence description)

Sets a user readable description for the current track.

final TvTrackInfo.Builder setExtra(Bundle extra)

Sets the extra information about the current track.

final TvTrackInfo.Builder setLanguage(String language)

Sets the language information of the current track.

final TvTrackInfo.Builder setVideoActiveFormatDescription(byte videoActiveFormatDescription)

Sets the Active Format Description (AFD) code of the video.

final TvTrackInfo.Builder setVideoFrameRate(float videoFrameRate)

Sets the frame rate of the video, in the unit fps (frames per rate).

final TvTrackInfo.Builder setVideoHeight(int videoHeight)

Sets the height of the video, in the unit of pixels.

final TvTrackInfo.Builder setVideoPixelAspectRatio(float videoPixelAspectRatio)

Sets the pixel aspect ratio (the ratio of a pixel's width to its height) of the video.

final TvTrackInfo.Builder setVideoWidth(int videoWidth)

Sets the width of the video, in the unit of pixels.

Inherited methods

From class java.lang.Object

Public constructors

TvTrackInfo.Builder

Added in API level 21
TvTrackInfo.Builder (int type, 
                String id)

Create a TvTrackInfo.Builder. Any field that should be included in the TvTrackInfo must be added.

Parameters
type int: The type of the track.
id String: The ID of the track that uniquely identifies the current track among all the other tracks in the same TV program.
Throws
IllegalArgumentException if the type is not any of TYPE_AUDIO, TYPE_VIDEO and TYPE_SUBTITLE

Public methods

build

Added in API level 21
TvTrackInfo build ()

Creates a TvTrackInfo instance with the specified fields.

Returns
TvTrackInfo The new TvTrackInfo instance

setAudioChannelCount

Added in API level 21
TvTrackInfo.Builder setAudioChannelCount (int audioChannelCount)

Sets the audio channel count. Valid only for TYPE_AUDIO tracks.

Parameters
audioChannelCount int: The audio channel count.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on an audio track

setAudioSampleRate

Added in API level 21
TvTrackInfo.Builder setAudioSampleRate (int audioSampleRate)

Sets the audio sample rate, in the unit of Hz. Valid only for TYPE_AUDIO tracks.

Parameters
audioSampleRate int: The audio sample rate.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on an audio track

setDescription

Added in API level 23
TvTrackInfo.Builder setDescription (CharSequence description)

Sets a user readable description for the current track.

Parameters
description CharSequence: The user readable description.
Returns
TvTrackInfo.Builder

setExtra

Added in API level 21
TvTrackInfo.Builder setExtra (Bundle extra)

Sets the extra information about the current track.

Parameters
extra Bundle: The extra information.
Returns
TvTrackInfo.Builder

setLanguage

Added in API level 21
TvTrackInfo.Builder setLanguage (String language)

Sets the language information of the current track.

Parameters
language String: The language string encoded by either ISO 639-1 or ISO 639-2/T.
Returns
TvTrackInfo.Builder

setVideoActiveFormatDescription

Added in API level 24
TvTrackInfo.Builder setVideoActiveFormatDescription (byte videoActiveFormatDescription)

Sets the Active Format Description (AFD) code of the video. Valid only for TYPE_VIDEO tracks.

This is needed for applications to be able to scale the video properly based on the information about where in the coded picture the active video is. The complete list of values are defined in ETSI TS 101 154 V1.7.1 Annex B, ATSC A/53 Part 4 and SMPTE 2016-1-2007.

Parameters
videoActiveFormatDescription byte: The AFD code of the video.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on a video track

setVideoFrameRate

Added in API level 21
TvTrackInfo.Builder setVideoFrameRate (float videoFrameRate)

Sets the frame rate of the video, in the unit fps (frames per rate). Valid only for TYPE_VIDEO tracks.

Parameters
videoFrameRate float: The frame rate of the video.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on a video track

setVideoHeight

Added in API level 21
TvTrackInfo.Builder setVideoHeight (int videoHeight)

Sets the height of the video, in the unit of pixels. Valid only for TYPE_VIDEO tracks.

Parameters
videoHeight int: The height of the video.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on a video track

setVideoPixelAspectRatio

Added in API level 23
TvTrackInfo.Builder setVideoPixelAspectRatio (float videoPixelAspectRatio)

Sets the pixel aspect ratio (the ratio of a pixel's width to its height) of the video. Valid only for TYPE_VIDEO tracks.

This is needed for applications to be able to scale the video properly for some video formats such as 720x576 4:3 and 720x576 16:9 where pixels are not square. By default, applications assume the value of 1.0 (square pixels), so it is not necessary to set the pixel aspect ratio for most video formats.

Parameters
videoPixelAspectRatio float: The pixel aspect ratio of the video.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on a video track

setVideoWidth

Added in API level 21
TvTrackInfo.Builder setVideoWidth (int videoWidth)

Sets the width of the video, in the unit of pixels. Valid only for TYPE_VIDEO tracks.

Parameters
videoWidth int: The width of the video.
Returns
TvTrackInfo.Builder
Throws
IllegalStateException if not called on a video track

Hooray!