- 22 Feb, 2022 2 commits
-
-
Re-enable tests that have no muxer support for timestamps going backwards. Tests running on the B-frame sample will be added in a future commit. #mse-bug-week PiperOrigin-RevId: 429599177
samrobinson committed -
https://github.com/google/ExoPlayer/commit/8d9c4f4774a1eb0d89989963365ad0a7ae013ec4
*** Original commit *** Rollback of https://github.com/google/ExoPlayer/commit/43b796b64d629ba8b79516c43161c966d90ae786 *** Original commit *** Rollback of https://github.com/google/ExoPlayer/commit/08c5b1cb0a876a1e5059778bc133476e0a5f314d *** Original commit *** Wire up MediaMetricsListener and add configuration to... *** PiperOrigin-RevId: 429585773
ibaker committed
-
- 18 Feb, 2022 11 commits
-
-
This class will contain additional details such as frame count, once implemented. #mse-bug-week PiperOrigin-RevId: 429567678
samrobinson committed -
PiperOrigin-RevId: 429566102
Ian Baker committed -
We use the `createForCodec` method that does not take a `MediaFormat` during transformation, the error message always includes "no configured MediaFormat", which is false. PiperOrigin-RevId: 429553573
claincly committed -
PiperOrigin-RevId: 429386479
olly committed -
PiperOrigin-RevId: 429368911
olly committed -
PiperOrigin-RevId: 429364728
olly committed -
The muxer doesn't support HEVC below API 24. The is documented in the TransformationRequest javadoc and the Transformer.Builder will throw if HEVC is requested below API 24 so the option should not be part of the demo for those devices. #mse-bug-week PiperOrigin-RevId: 429343805
hschlueter committed -
PiperOrigin-RevId: 429338648
olly committed -
PiperOrigin-RevId: 429326432
ibaker committed -
Ian Baker committed
-
PiperOrigin-RevId: 429323642
samrobinson committed
-
- 17 Feb, 2022 27 commits
-
-
isTypeSupportedOrEmpty is very specific and a little hard to understand unless you know the one thing it's useful for. This commit replaces it with isTypeSupported, which can be used in conjunction with the recently added containsType method. PiperOrigin-RevId: 429312712
olly committed -
The track type is derived solely from the content. It does not depend on any runtime properties such as the player's capabilities of user track selection. Hence it belongs in TrackGroup rather than TrackGroupInfo. Note that this avoids TrackSelectionOverride from having to re-derive the track type internally. PiperOrigin-RevId: 429303312
olly committed -
NDK 23 removes GNU's bin utils. More info in https://android.googlesource.com/platform/ndk/+/master/docs/BuildSystemMaintainers.md#binutils. LLVM bin utils are available in all modern NDK versions. #minor-release Issue: google/ExoPlayer#9933 PiperOrigin-RevId: 429299806
aquilescanta committed -
The bitmap can then be retrieved through ADB. #mse-bug-week PiperOrigin-RevId: 429293231
samrobinson committed -
Merge of https://github.com/google/ExoPlayer/pull/9934 #minor-release PiperOrigin-RevId: 429259055
olly committed -
Also invert disableFallback parameter in DefaultEncoderFactory to enableFallback. Fallback is still enabled by default. PiperOrigin-RevId: 429253266
hschlueter committed -
Calling `MediaMuxer.writeSampleData` can block indefinitely on old API versions. It is better not to call this method to fail quickly with an exception rather than getting stuck. Based on on-device testing media muxer doesn't generally handle out of order samples before API 25. There are a small number of devices where this does succeed but it seems preferable to turn this off everywhere to keep the code simple and have consistent behavior. Once we switch to in-app muxing this limitation will no longer apply. #mse-bug-week PiperOrigin-RevId: 429070255
andrewlewis committed -
#minor-release PiperOrigin-RevId: 429067634
bachinger committed -
PiperOrigin-RevId: 429059793
bachinger committed -
This allows the AdsLoader.State to be stored in savedInstanceState #minor-release PiperOrigin-RevId: 429057697
bachinger committed -
Tested: Verified that the additional information is available through instrumentation tests, as well as via manual testing. #mse-bug-week PiperOrigin-RevId: 429038695
samrobinson committed -
PiperOrigin-RevId: 429029496
andrewlewis committed -
#minor-release PiperOrigin-RevId: 429006934
bachinger committed -
- The resources were released twice before, which is not necessary since the MSG_RELEASE message is already in the internal player queue. - The demo app was failing because the stop watch was stopped in onTransformationError after being reset. #minor-release #mse-bug-week PiperOrigin-RevId: 428794426
kimvde committed -
We need TracksInfo.hasTracksOfType to determine which tabs to display in TrackSelectionDialog. We need TrackGroupInfo.isAdaptiveSupported to determine whether to allow multiple selection (check boxes) or not (radio buttons). PiperOrigin-RevId: 428793739
olly committed -
The GlFrameProcessor handles everything related to the GLSL program, the FrameEditor manages the GL context and the data flow including the input SurfaceTexture and output EGLSurface. This will be split up further in follow-up CLs so that GlFrameProcessors can be chained. At this CL, there are no functional changes intended. PiperOrigin-RevId: 428779179
hschlueter committed -
#minor-release PiperOrigin-RevId: 428763656
bachinger committed -
PiperOrigin-RevId: 428763554
hschlueter committed -
#minor-release PiperOrigin-RevId: 428761508
bachinger committed -
Document some suboptimal things, and remove TODOs that were fixed already or no longer relevant. Comment-only change. PiperOrigin-RevId: 428749344
huangdarwin committed -
PiperOrigin-RevId: 428747243
olly committed -
Currently only a single instance of ImaServerSideAdInsertionMediaSource is supported at the same time in a playlist. This change makes sure that an attempt to add multiple instances is prevented by throwing a an exception. #minor-release PiperOrigin-RevId: 428743140
bachinger committed -
This change makes sure played server side ads are skipped in a single period timeline. It avoids creating an ad-MediaPeriodInfo for played postrolls and creates a content info instead. It also sets the end position for content infos that terminate the stream before the stream is actually finished. This prevents the player from continue playing the remaining media delivered by the MediaPeriod. We also make sure that the discontinuity of played ads are not reported because there is actually no discontinuity. #minor-release PiperOrigin-RevId: 428734387
bachinger committed -
PiperOrigin-RevId: 428732950
hschlueter committed -
#minor-release PiperOrigin-RevId: 428727560
bachinger committed -
This prevents a stack trace that is shown in the logs when the stream manager is released after the activity was stopped. In this case the call to `streamManager.destroy()` coming from `releaseSourceInternal()` of the media source is too late and produces an error saying `Application attempted to call on a destroyed WebView`. The error has no effect but it's nice to not have this stack trace in the logs. PiperOrigin-RevId: 428574231
bachinger committed -
#minor-release PiperOrigin-RevId: 428565444
bachinger committed
-