Class PlayerEmsgHandler
- java.lang.Object
-
- com.google.android.exoplayer2.source.dash.PlayerEmsgHandler
-
- All Implemented Interfaces:
Handler.Callback
@Deprecated public final class PlayerEmsgHandler extends Object implements Handler.Callback
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Handles all emsg messages from all media tracks for the player.This class will only respond to emsg messages which have schemeIdUri "urn:mpeg:dash:event:2012", and value "1"/"2"/"3". When it encounters one of these messages, it will handle the message according to Section 4.5.2.1 DASH -IF IOP Version 4.1:
- If both presentation time delta and event duration are zero, it means the media presentation has ended.
- Else, it will parse the message data from the emsg message to find the publishTime of the expired manifest, and mark manifest with publishTime smaller than that values to be expired.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
PlayerEmsgHandler.PlayerEmsgCallback
Deprecated.Callbacks for player emsg events encountered during DASH live stream.class
PlayerEmsgHandler.PlayerTrackEmsgHandler
Deprecated.Handles emsg messages for a specific track for the player.
-
Constructor Summary
Constructors Constructor Description PlayerEmsgHandler(DashManifest manifest, PlayerEmsgHandler.PlayerEmsgCallback playerEmsgCallback, Allocator allocator)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
handleMessage(Message message)
Deprecated.PlayerEmsgHandler.PlayerTrackEmsgHandler
newPlayerTrackEmsgHandler()
Deprecated.Returns aTrackOutput
that emsg messages could be written to.void
release()
Deprecated.Release this emsg handler.void
updateManifest(DashManifest newManifest)
Deprecated.Updates theDashManifest
that this handler works on.
-
-
-
Constructor Detail
-
PlayerEmsgHandler
public PlayerEmsgHandler(DashManifest manifest, PlayerEmsgHandler.PlayerEmsgCallback playerEmsgCallback, Allocator allocator)
Deprecated.- Parameters:
manifest
- The initial manifest.playerEmsgCallback
- The callback that this event handler can invoke when handling emsg messages that generate DASH media source events.allocator
- AnAllocator
from which allocations can be obtained.
-
-
Method Detail
-
updateManifest
public void updateManifest(DashManifest newManifest)
Deprecated.Updates theDashManifest
that this handler works on.- Parameters:
newManifest
- The updated manifest.
-
newPlayerTrackEmsgHandler
public PlayerEmsgHandler.PlayerTrackEmsgHandler newPlayerTrackEmsgHandler()
Deprecated.Returns aTrackOutput
that emsg messages could be written to.
-
release
public void release()
Deprecated.Release this emsg handler. It should not be reused after this call.
-
handleMessage
public boolean handleMessage(Message message)
Deprecated.- Specified by:
handleMessage
in interfaceHandler.Callback
-
-