media/library
tonihei 2d640e4953 Use SingleThreadExecutor to release AudioTracks
We currently start a simple Thread to release AudioTracks
asynchronously. If many AudioTracks are released at the same
time, this may lead to OOM situations because we attempt to
create multiple new threads.

This can be improved by using a shared SingleThreadExecutor.
In the simple case of one simmultaneous release, it's exactly
the same behavior as before: create a thread and release it
as soon as it's done. For multiple simultanous releases we
get the advantage of sharing a single thread to avoid creating
more than one at the same time.

Issue: google/ExoPlayer#10057
PiperOrigin-RevId: 460698942
(cherry picked from commit 1e8d163107)
2022-07-13 13:24:04 +00:00
..
all Fix minimum API level issue 2022-02-08 11:03:36 +00:00
common HDR: Check whether EXT_YUV_target extension is supported. 2022-07-12 11:04:05 +00:00
core Use SingleThreadExecutor to release AudioTracks 2022-07-13 13:24:04 +00:00
dash Make MetadataRenderer configurable to output metadata early. 2022-06-29 14:47:12 +00:00
database Reformat some javadoc 2022-02-18 15:02:33 +00:00
datasource Disable transcoding when reading content URIs 2022-05-06 15:54:21 +01:00
decoder Expect PresentationTime Discontinuity During Stream Transitions 2022-04-26 14:25:46 +01:00
extractor Ignore reserved bit in parsing NAL unit type 2022-07-12 16:53:03 +00:00
hls Fix setDataSourceFactory handling in DefaultMediaSourceFactory 2022-07-13 15:27:55 +00:00
rtsp Fix two typos in RtpVp8Reader and test 2022-07-13 09:27:06 +00:00
smoothstreaming Fix setDataSourceFactory handling in DefaultMediaSourceFactory 2022-07-13 15:27:55 +00:00
transformer Fix assertion error when using high quality targeting API. 2022-07-13 12:48:02 +00:00
ui Ensure TalkBack announces the selected playback speed in the UI menu 2022-06-29 16:10:11 +00:00
README.md Update to androidx.media3 2021-10-27 09:12:46 +01:00

ExoPlayer library

The ExoPlayer library is split into multiple modules. See ExoPlayer's top level README for more information about the available library modules and how to use them.