- 29 May, 2020 27 commits
-
-
PiperOrigin-RevId: 300249371
olly committed -
- Add method to scale scrubber handle of DefaultTimeBar PiperOrigin-RevId: 294366734
olly committed -
The capture frame rate is currently available both via Format.metadata and decoded in Format.frameRate. As the container Format.frameRate may be useful to apps, only store the capture frame rate in metadata (apps will need to decode it but can now access the container frame rate too). PiperOrigin-RevId: 284165711
andrewlewis committed -
We keep an index hint for the next pending player message. This hint wasn't updated correctly when messages are removed due to a timeline update. This change makes sure to only use the hint locally in one method so that it doesn't need to be updated anywhere else and also adds the "hint" suffix to the variable name to make it clearer that it's just a hint and there are no guarantees this index actually exists anymore. issue:#7278 PiperOrigin-RevId: 309217614
tonihei committed -
The MediaSessionConnector gets a Bundle passed to the MediaSession.Callback from the framework which can be null. This needs to be properly annotated with @Nullable. Issue: #7234 PiperOrigin-RevId: 307822764
bachinger committed -
Oliver Woodman committed
-
PiperOrigin-RevId: 313372995
Oliver Woodman committed -
This ensure style themes are correctly applied. issue:#7357 PiperOrigin-RevId: 313145345
tonihei committed -
Issue:#7338 PiperOrigin-RevId: 312470913
olly committed -
PiperOrigin-RevId: 312266156
olly committed -
Issue:#7337 PiperOrigin-RevId: 312042768
samrobinson committed -
- Add Widevine AV1 streams - Remove SD and HD only Widevine streams (we don't need so many!) - Simplify naming PiperOrigin-RevId: 311697741
olly committed -
PiperOrigin-RevId: 311628160
olly committed -
PiperOrigin-RevId: 311623784
Oliver Woodman committed -
PiperOrigin-RevId: 311290214
olly committed -
Issue:#6705 PiperOrigin-RevId: 310907118
samrobinson committed -
PiperOrigin-RevId: 310115628
Oliver Woodman committed -
PiperOrigin-RevId: 310114401
olly committed -
PiperOrigin-RevId: 309925306
samrobinson committed -
PiperOrigin-RevId: 309735092
andrewlewis committed -
PiperOrigin-RevId: 309720018
tonihei committed -
PiperOrigin-RevId: 309710359
olly committed -
PiperOrigin-RevId: 309395364
Oliver Woodman committed -
Issue: #7306 PiperOrigin-RevId: 309392633
olly committed -
PiperOrigin-RevId: 309231983
tonihei committed -
Issue: #7168
Oliver Woodman committed -
This also allows subsequent MediaSource instance in the list to still be released successfully. Issue: #7168
Oliver Woodman committed
-
- 27 May, 2020 13 commits
-
-
PiperOrigin-RevId: 308815613
olly committed -
- Improve documentation explaining the benefits of ExoPlayer's ConditionVariable over the one that the platform provides - Allow Clock injection - Create TestUtil method for obtaining a ConditionVariable whose block(long) method times out correctly when used in a Robolectric test - Add basic unit tests for ConditionVariable PiperOrigin-RevId: 308812698
olly committed -
PiperOrigin-RevId: 306602043
christosts committed -
Android scheduler has performance issues when a device has a combiation of big/medium/little cores. Add a heuristic to set the default number of threads used for deocding to the number of "performance" (i.e. big) cores. PiperOrigin-RevId: 308683989
vigneshv committed -
Notes: this doesn't fix the current issue where the component containing the ad overlay view leaks, but is good practice anyway. PiperOrigin-RevId: 308582036
andrewlewis committed -
Issue: #7273 PiperOrigin-RevId: 308238035
aquilescanta committed -
PiperOrigin-RevId: 308041841
aquilescanta committed -
The sample timestamps are currently rounded to milliseconds, only to be multiplied by 1000 later. This causes rounding errors where the sample timestamps don't match the timestamps in the seek table (which are already in microseconds). issue:#7086 PiperOrigin-RevId: 307630559
tonihei committed -
issue:#6950 PiperOrigin-RevId: 307411067
ibaker committed -
Issue: #7113 PiperOrigin-RevId: 307380133
olly committed -
This change generalizes the concept of "reading parameter sets" to "reading prefix NAL units", ahead of a change that will treat AUD and suffix SEI NAL units in the same way. The change also introduces some static isXxxNalUnit methods for clarity. Issue: #7113 PiperOrigin-RevId: 307376967
olly committed -
Also add unit tests for AdsMediaSource. PiperOrigin-RevId: 307365492
andrewlewis committed -
Audio processors are now flushed twice after reconfiguration. The second flush call cleared the pending trim start bytes so transitions between tracks were no longer gapless. Fix this by removing logic to clear pending trim bytes on flush. As a result we may trim data incorrectly if there is a flush before any data has been handled for seeking to a non-zero position, but this edge case will happen rarely and the effect shouldn't be noticeable. PiperOrigin-RevId: 307344357
andrewlewis committed
-