- 27 May, 2021 22 commits
-
-
Issue: #8776 PiperOrigin-RevId: 376186877
olly committed -
This helps to remove old ad groups (e.g. those that fell out of the live window) to keep the data size of AdPlaybackState small. Also added this case to some existing unit tests to ensure it's covered. PiperOrigin-RevId: 376170653
tonihei committed -
This allows to decouple the data structure from the access. In a future change, this allows to completely remove old ad groups (e.g. for live streams where the number of groups would otherwise grow forever). Also move the time into the group itself for better encapsulation. PiperOrigin-RevId: 376170408
tonihei committed -
This includes setResumeSavedSession(false) and setEnableReconnectionService(false). PiperOrigin-RevId: 376162880
aquilescanta committed -
Many of the setters are ignored unless others are set - this change: * Lists these conditions exhaustively. * Uses more concise language to avoid overshadowing the main details of what the setter sets. * Tweaks the language from 'is ignored' to 'shouldn't be called', to open up the future possibility of throwing an error if these are called without the 'required' setter also being present (see Issue: #8957). #minor-release PiperOrigin-RevId: 376162385
ibaker committed -
PiperOrigin-RevId: 376155192
olly committed -
ParserException's constructor methods are deprecated. #minor-release PiperOrigin-RevId: 376150191
claincly committed -
The docs on setLicenseUri say it's optional, and it has been since https://github.com/google/ExoPlayer/commit/379cd8a04f0bf44a9422a08440223581b2657d74 (which should have changed this javadoc too) #minor-release PiperOrigin-RevId: 376139158
ibaker committed -
ParserException's constructor methods are deprecated. #minor-release PiperOrigin-RevId: 376127494
claincly committed -
PiperOrigin-RevId: 376126959
aquilescanta committed -
Authentication sequence in RTSP: - Server replies "Unauthorized" to our DESCRIBE request, and includes the necessary information (i.e. realm, digest nonce, etc) in WWW-Authenticate header - After `RtspClient` receives the response, we - Parse the WWW-Authenticate header, stores the auth info. The info is saved for all further RTSP requests (that all need to carry authorization headers) - send the second DESCRIBE request with the Authorization header. #minor-release PiperOrigin-RevId: 376116302claincly committed -
PiperOrigin-RevId: 376005620
aquilescanta committed -
PiperOrigin-RevId: 375992816
aquilescanta committed -
PiperOrigin-RevId: 375992627
aquilescanta committed -
PiperOrigin-RevId: 375979170
bachinger committed -
PiperOrigin-RevId: 375919564
olly committed -
Issue: #8985 #minor-release PiperOrigin-RevId: 375913914
olly committed -
The method openSocket in RtspMessageChannel does not actually open a socket. The 'open' term refers more to opening the message channel. #minor-release PiperOrigin-RevId: 375908999
claincly committed -
The callbacks received RTSP messages and RTSP sending errors are now invoked directly from RtspMessageChannel's internal threads. It's up to the handler implementation to decide which thread to handle the messages. #minor-release PiperOrigin-RevId: 375908282
claincly committed -
Previously, RTSP interleaved binary data is posted onto the playback thread for handling, the playback thread then adds the received data to a queue. A loader thread will later dequeue the data and process it. In this CL, the binary data is sent through a separate listener, on RtspMessageChannel's RTSP receiving thread. #minor-release PiperOrigin-RevId: 375907609
claincly committed -
Some RTSP servers will offer multiple WWW-Authenticate options. We wanted to be able to pick them up. #minor-release PiperOrigin-RevId: 375907276
claincly committed -
Currently acquireSession() fails with an NPE from checkNotNull(exoMediaDrm). A follow-up change will result in exoMediaDrm sometimes being non-null while prepareCount==0 (and in this case we still want acquireSession() to fail). preacquireSession() doesn't currently fail in a way the caller can observe - the same NPE is thrown, but asynchronously and it doesn't propagate out of the background thread. Throwing directly seems preferable since it's a clear bug to be trying to preacquire sessions from an unprepared/released manager. PiperOrigin-RevId: 375906450
ibaker committed
-
- 26 May, 2021 14 commits
-
-
PiperOrigin-RevId: 375883879
gyumin committed -
PiperOrigin-RevId: 375830765
klhyun committed -
PiperOrigin-RevId: 375719035
aquilescanta committed -
PiperOrigin-RevId: 375705247
aquilescanta committed -
PiperOrigin-RevId: 375686596
aquilescanta committed -
#minor-release PiperOrigin-RevId: 375674759
samrobinson committed -
PiperOrigin-RevId: 375515685
aquilescanta committed -
PiperOrigin-RevId: 375514509
aquilescanta committed -
PiperOrigin-RevId: 375484765
Oliver Woodman committed -
Without this the Cue isn't deeply immutable, which can be a bit surprising. PiperOrigin-RevId: 375477571
ibaker committed -
This reduces the null-checking required in a follow-up change. PiperOrigin-RevId: 375468504
ibaker committed -
#minor-release PiperOrigin-RevId: 375436117
ibaker committed -
#minor-release PiperOrigin-RevId: 375435339
samrobinson committed -
PiperOrigin-RevId: 375133184
aquilescanta committed
-
- 21 May, 2021 4 commits
-
-
#minor-release PiperOrigin-RevId: 375097412
samrobinson committed -
Unlike Assertions, the introduced method cannot be disabled and throws a ParserException instead. This method is meant to replace regular assertions (which throw RuntimeExceptions) which check input in the parsing code. PiperOrigin-RevId: 375085160
aquilescanta committed -
Its absence seems to have caused https://github.com/google/ExoPlayer/issues/8969. #minor-release PiperOrigin-RevId: 375058222
krocard committed -
PiperOrigin-RevId: 375054051
olly committed
-