Most visited

Recently visited

Added in API level 23

PlaybackParams

public final class PlaybackParams
extends Object implements Parcelable

java.lang.Object
   ↳ android.media.PlaybackParams


Structure for common playback params. Used by AudioTrack getPlaybackParams() and setPlaybackParams(PlaybackParams) to control playback behavior.

audio fallback mode: select out-of-range parameter handling.

pitch: increases or decreases the tonal frequency of the audio content. It is expressed as a multiplicative factor, where normal pitch is 1.0f.

speed: increases or decreases the time to play back a set of audio or video frames. It is expressed as a multiplicative factor, where normal speed is 1.0f.

Different combinations of speed and pitch may be used for audio playback; some common ones:

Summary

Constants

int AUDIO_FALLBACK_MODE_DEFAULT

int AUDIO_FALLBACK_MODE_FAIL

int AUDIO_FALLBACK_MODE_MUTE

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<PlaybackParams> CREATOR

Public constructors

PlaybackParams()

Public methods

PlaybackParams allowDefaults()

Allows defaults to be returned for properties not set.

int describeContents()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation.

int getAudioFallbackMode()

Retrieves the audio fallback mode.

float getPitch()

Retrieves the pitch factor.

float getSpeed()

Retrieves the speed factor.

PlaybackParams setAudioFallbackMode(int audioFallbackMode)

Sets the audio fallback mode.

PlaybackParams setPitch(float pitch)

Sets the pitch factor.

PlaybackParams setSpeed(float speed)

Sets the speed factor.

void writeToParcel(Parcel dest, int flags)

Flatten this object in to a Parcel.

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Constants

AUDIO_FALLBACK_MODE_DEFAULT

Added in API level 23
int AUDIO_FALLBACK_MODE_DEFAULT

Constant Value: 0 (0x00000000)

AUDIO_FALLBACK_MODE_FAIL

Added in API level 23
int AUDIO_FALLBACK_MODE_FAIL

Constant Value: 2 (0x00000002)

AUDIO_FALLBACK_MODE_MUTE

Added in API level 23
int AUDIO_FALLBACK_MODE_MUTE

Constant Value: 1 (0x00000001)

Fields

CREATOR

Added in API level 23
Creator<PlaybackParams> CREATOR

Public constructors

PlaybackParams

Added in API level 23
PlaybackParams ()

Public methods

allowDefaults

Added in API level 23
PlaybackParams allowDefaults ()

Allows defaults to be returned for properties not set. Otherwise a IllegalArgumentException exception is raised when getting those properties which have defaults but have never been set.

Returns
PlaybackParams this PlaybackParams instance.

describeContents

Added in API level 23
int describeContents ()

Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. For example, if the object will include a file descriptor in the output of writeToParcel(Parcel, int), the return value of this method must include the CONTENTS_FILE_DESCRIPTOR bit.

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

getAudioFallbackMode

Added in API level 23
int getAudioFallbackMode ()

Retrieves the audio fallback mode.

Returns
int audio fallback mode
Throws
IllegalStateException if the audio fallback mode is not set.

getPitch

Added in API level 23
float getPitch ()

Retrieves the pitch factor.

Returns
float pitch
Throws
IllegalStateException if pitch is not set.

getSpeed

Added in API level 23
float getSpeed ()

Retrieves the speed factor.

Returns
float speed
Throws
IllegalStateException if speed is not set.

setAudioFallbackMode

Added in API level 23
PlaybackParams setAudioFallbackMode (int audioFallbackMode)

Sets the audio fallback mode.

Returns
PlaybackParams this PlaybackParams instance.

setPitch

Added in API level 23
PlaybackParams setPitch (float pitch)

Sets the pitch factor.

Returns
PlaybackParams this PlaybackParams instance.
Throws
if the pitch is negative

setSpeed

Added in API level 23
PlaybackParams setSpeed (float speed)

Sets the speed factor.

Returns
PlaybackParams this PlaybackParams instance.

writeToParcel

Added in API level 23
void writeToParcel (Parcel dest, 
                int flags)

Flatten this object in to a Parcel.

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!