@UnstableApi
class SlowMotionData : Metadata.Entry


Holds information about the segments of slow motion playback within a track.

Summary

Nested types

Holds information about a single segment of slow motion playback within a track.

Public constructors

Creates an instance with a list of Segments.

Public functions

Int
Boolean
equals(o: Any?)
Int
String!
Unit
writeToParcel(dest: Parcel!, flags: Int)

Inherited functions

From androidx.media3.common.Metadata.Entry
ByteArray<Byte>?

Returns the bytes of the wrapped metadata in this Entry, or null if it doesn't contain wrapped metadata.

Format?

Returns the Format that can be used to decode the wrapped metadata in getWrappedMetadataBytes, or null if this Entry doesn't contain wrapped metadata.

Unit

Updates the MediaMetadata.Builder with the type-specific values stored in this Entry.

Constants

CREATOR

const val CREATORParcelable.Creator<SlowMotionData!>!

Public constructors

SlowMotionData

SlowMotionData(segments: (Mutable)List<SlowMotionData.Segment!>!)

Creates an instance with a list of Segments.

The segments must not overlap, that is that the start time of a segment can not be between the start and end time of another segment.

Public functions

describeContents

fun describeContents(): Int

equals

fun equals(o: Any?): Boolean

hashCode

fun hashCode(): Int

toString

fun toString(): String!

writeToParcel

fun writeToParcel(dest: Parcel!, flags: Int): Unit

Public properties