- 16 Sep, 2021 12 commits
-
-
This is a pre-requisite step for merging SimpleExoPlayer into ExoPlayer, because when StubExoPlayer extends ExoPlayer, it needs a matching constructor. PiperOrigin-RevId: 397065374
samrobinson committed -
Issue: #9428 #minor-release PiperOrigin-RevId: 397064086
claincly committed -
This was originally reported on #9390. There was a bug that when HLS loads failed, the player would endlessly retry and never fail with a player error. This change fixes a bug in HlsSampleStreamWrapper.onPlaylistError() which would return true for a playlist whose load encountered an error but could not be excluded, whereas the method should return false. Issue: #9390 #minor-release PiperOrigin-RevId: 397045802
christosts committed -
PiperOrigin-RevId: 396959703
olly committed -
#exofixit PiperOrigin-RevId: 396938258
bachinger committed -
PiperOrigin-RevId: 396936785
olly committed -
https://github.com/google/ExoPlayer/commit/ee8df7afcb7982519b9375b590f8bdb086f0b08c
*** Original commit *** Ensure MediaSourceFactory instances can be re-used This fixes DefaultDrmSessionManager so it can be used by a new Player instance (by nulling out its reference to the playback thread, which is unique per-Player instance). This only works if the DefaultDrmSessionManager is 'fully released' before being used by the second Player instance, meaning that the reference count of the manager and all its sessions is zero. #exofixit Issue: #9099 *** PiperOrigin-RevId: 396861138
ibaker committed -
Please reference RFC2326 Section A.1 for the state transitions. PiperOrigin-RevId: 396799104
claincly committed -
#exofixit PiperOrigin-RevId: 396793873
kimvde committed -
* Add new README files for the Transformer demo and media/testapps/. * Add an androidx demos README in media/github/ PiperOrigin-RevId: 396784430
huangdarwin committed -
#exofixit PiperOrigin-RevId: 396780460
andrewlewis committed -
Follow-up to https://github.com/google/ExoPlayer/commit/9f3c2fb5e10a4e17a753e3791c9e4e07a79005d1 PiperOrigin-RevId: 396776798
ibaker committed
-
- 14 Sep, 2021 15 commits
-
-
#exofixit PiperOrigin-RevId: 396658717
krocard committed -
Previously the released preacquired sessions would start their keepalive timeout, and so no additional resources would be freed in time for the manager to retry the session acquisition. This change adds an additional purge of keepalive sessions *after* the preacquired sessions are released, which fixes the problem. #exofixit #minor-release PiperOrigin-RevId: 396613352
ibaker committed -
This needs to match with the implementation for Dackka javadoc generation to succeed. PiperOrigin-RevId: 396377019
andrewlewis committed -
PiperOrigin-RevId: 396363113
olly committed -
Align redererDisableFlags (un)bundling with the other field by using an explicit temporary data structure (int array). PiperOrigin-RevId: 396358143
krocard committed -
PiperOrigin-RevId: 396354920
olly committed -
Also add `TYPE_USE` target on the @IntDef (and fix @Targets for other @IntDefs). #exofixit PiperOrigin-RevId: 396333212
andrewlewis committed -
#exo-fixit PiperOrigin-RevId: 396329591
kimvde committed -
This is was reported in #9257 where the PlaybackStatsListener may try to access an emtpy ArrayList. Issue: #9257 #minor-release #exofixit PiperOrigin-RevId: 396329373
christosts committed -
PiperOrigin-RevId: 396313679
bachinger committed -
#exofixit PiperOrigin-RevId: 396304941
andrewlewis committed -
PiperOrigin-RevId: 396303288
andrewlewis committed -
PiperOrigin-RevId: 396303242
claincly committed -
PiperOrigin-RevId: 396297834
andrewlewis committed -
PiperOrigin-RevId: 395936070
huangdarwin committed
-
- 10 Sep, 2021 4 commits
-
-
This is a candidate fix for #8906. As mentioned in that issue, negative positions within windows might be (kind of) valid in live streaming scenarios, where the window starts at some non-zero position within the period. However, negative positions within periods are definitely not valid. Neither are positions that exceed the period duration. There was already logic in ExoPlayerImplInternal to prevent a resolved seek position from exceeding the period duration. This fix adds the equivalent constraint for the start of the period. It also moves the application of the constraints into Timeline. This has the advantage that the constraints are applied as part of state masking in ExoPlayerImpl.seekTo, removing any UI flicker where the invalid seek position is temporarily visible. Issue: #8906 PiperOrigin-RevId: 395917413
olly committed -
Issue: #9416 The dash "-" in the brackets must be escaped, or it acts like a range operator. #minor-release PiperOrigin-RevId: 395909845
claincly committed -
PiperOrigin-RevId: 395896034
ibaker committed -
The new ConfigurationActivity can be used to configure settings specifying Transformer inputs, using checkboxes and submitted via a button. PiperOrigin-RevId: 395826358
huangdarwin committed
-
- 09 Sep, 2021 6 commits
-
-
PiperOrigin-RevId: 395727438
bachinger committed -
Instead of selecting the base URL initially or when a load error occurs, it is now selected when a chunk or initialization chunk is created. The selected base URL is then assigned to `RepresentationHolder.lastUsedBaseUrl` that is excluded in case of a load error. For a next chunk another base URL will be selected by using the `BaseUrlExclusionList`. #minor-release #exo-fixit PiperOrigin-RevId: 395721221
bachinger committed -
The new name is consistent with the corresponding parameters to `onVolumeChanged`, `setDeviceVolume` and `onDeviceVolumeChanged`. PiperOrigin-RevId: 395705288
andrewlewis committed -
Since playlist support was added, it's possible for the player to "have media" and be in STATE_IDLE. The STATE_IDLE documentation therefore became incorrect. Issue: #8946 #exofixit #minor-release PiperOrigin-RevId: 395653716
olly committed -
#exofixit PiperOrigin-RevId: 395518824
kimvde committed -
This fixes DefaultDrmSessionManager so it can be used by a new Player instance (by nulling out its reference to the playback thread, which is unique per-Player instance). This only works if the DefaultDrmSessionManager is 'fully released' before being used by the second Player instance, meaning that the reference count of the manager and all its sessions is zero. #exofixit #minor-release Issue: #9099 PiperOrigin-RevId: 395490506
ibaker committed
-
- 08 Sep, 2021 3 commits
-
-
#exofixit PiperOrigin-RevId: 395479329
kimvde committed -
I think this has been broken since https://github.com/google/ExoPlayer/commit/617267bfcf20c500fb4a3cfdff7104e4d88261a7 (which was trying to fix the same problem). This change initializes `rootDir` to always be the current project (i.e. ExoPlayer) directory. From the [Gradle docs](https://docs.gradle.org/current/userguide/working_with_files.html#sec:single_file_paths): > What happens in the case of multi-project builds? The file() method > will always turn relative paths into paths that are relative to the > current project directory, which may be a child project. We can also then remove exoplayerRoot completely and simplify the local dependency instructions. * #minor-release * #exofixit * Issue: #9403 PiperOrigin-RevId: 395478121
ibaker committed -
SubtitleExtractor is using IndexSeekMap with only one position to indicate that its output is seekable. SubtitleExtractor is keeping Cues in memory anyway so more seek points are not needed. SubtitleExtractor gets notified about seek occurrence through seek() method. Inside that method extractor saves seekTimeUs, and on the next call to read() extractor outputs all cues that should be displayed at this time and later. PiperOrigin-RevId: 395477127
apodob committed
-