mirror of
https://github.com/androidx/media.git
synced 2025-05-03 21:57:46 +08:00

Not important, but when overriding a method that can return null, it seems preferable to put @Override first, followed by what it's overriding (which includes the @Nullable). Also remove explicit @NonNull use in the core library. @NonNull is propagated by default, so this is redundant. PiperOrigin-RevId: 296188379
ExoPlayer DASH library module
Provides support for Dynamic Adaptive Streaming over HTTP (DASH) content. To
play DASH content, instantiate a DashMediaSource
and pass it to
ExoPlayer.prepare
.
Links
- Developer Guide.
- Javadoc: Classes matching
com.google.android.exoplayer2.source.dash.*
belong to this module.