mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00

They currently fall back to the main Looper if the current thread doesn't have a Looper. All the changed Handlers are guaranteed to be created on a thread with a Looper (mostly the ExoPlayer playback Looper) and thus can make this stricter assumption. This makes it easier to reason about the code as there are no ambiguities as to which thread the Handler is running on. PiperOrigin-RevId: 317334503
ExoPlayer SmoothStreaming library module
Provides support for Smooth Streaming content. To play Smooth Streaming content,
instantiate a SsMediaSource
and pass it to ExoPlayer.prepare
.
Links
- Developer Guide.
- Javadoc: Classes matching
com.google.android.exoplayer2.source.smoothstreaming.*
belong to this module.