Class EventStream
java.lang.Object
com.castlabs.android.player.models.EventStream
A DASH in-MPD EventStream element, as defined by ISO/IEC 23009-1, 2nd edition, section 5.10.
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionEventStream
(String schemeIdUri, String value, long timescale, List<Long> presentationTimesUs, List<EventMessage> events) -
Method Summary
Modifier and TypeMethodDescriptionEventMessage
s in the event stream.Presentation time of the events in microsecond, sorted in ascending order.The scheme URI.long
The timescale in units per seconds, as defined in the manifest.getValue()
The value of the event stream.id()
A constructed id of thisEventStream
.
-
Constructor Details
-
EventStream
-
-
Method Details
-
getEvents
EventMessage
s in the event stream. -
getPresentationTimesUs
Presentation time of the events in microsecond, sorted in ascending order. -
getSchemeIdUri
The scheme URI. -
getValue
The value of the event stream. Empty String if not defined in manifest. -
getTimescale
public long getTimescale()The timescale in units per seconds, as defined in the manifest. -
id
A constructed id of thisEventStream
. Equal toschemeIdUri + "/" + value
.
-