- 31 Oct, 2018 24 commits
-
-
Oliver Woodman committed
-
fix checkIdleRequirement
ojw28 committed -
Create unique id for HLS audio and text tracks
ojw28 committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219472988
eguven committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219472219
aquilescanta committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219470655
aquilescanta committed -
Issue:#5026 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219454985
tonihei committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219454931
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219448836
andrewlewis committed -
Some test specific things, like adding an extra listener or adding decoder counters are currently handled by ExoHostedTest. They can be moved to the classes actually using them to clean up ExoHostedTest. This also adds more flexibility to further generic clean-up in onTestFinished. Also, reorder player setup to what ExoPlayerTestRunner is doing. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219446276
tonihei committed -
Before this change, the player state would be STATE_ENDED then STATE_BUFFERING (when the postroll ad was marked as played) then STATE_ENDED again. Queueing a final content media period with start point equal to the content duration after a postroll ensures that the player state doesn't change to STATE_ENDED transiently. Switch from using C.TIME_END_OF_SOURCE to C.TIME_UNSET for media periods that should not have an end point and are not followed by an ad. Content media periods before postrolls have end position C.TIME_END_OF_SOURCE. If the postroll ad loads, its content position is set to the content duration, which should be known at the point of loading the postroll, then a final 'empty' content media period with start position equal to its duration is queued. If the postroll fails to load, this empty content media period is queued up directly after the preceding content media period. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219443683
andrewlewis committed -
Issue: #5019 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219267048
andrewlewis committed -
- Handling EVENT_PROVISION_REQUIRED is unnecessary because we handle it via NotProvisionedException, which was thrown on all API levels. - Handling EVENT_KEY_EXPIRED during playback is unnecessary. All it does is cause an error to be thrown, but an error will be thrown anyway out of the MediaCodec when it tries to use the expired keys. It's currently a race condition where the error gets thrown from, where-as having it always be thrown from one place is preferable. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219172021
olly committed -
Issue: #3314 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219158729
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219139356
olly committed -
Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219130576
olly committed -
This paves the way to cleanly fix the first two issues listed in [] onDisabled will null inputFormat, but nulling of codecFormat will remain tied to the codec being released. Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219125458
olly committed -
RELNOTES=true ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219119888
eguven committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=219109829
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218877191
eguven committed -
ExoCastMessage contains all player management messages that the sender app can send to the receiver app. ExoCastMessages can be serialized as JSON strings. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218846977
aquilescanta committed -
- Only use bitrate when comparing two tracks if their bitrates are actually different. - For audio, prefer to use bitrate over selection flags. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218660886
olly committed -
- Improve variable naming - In the edge case that bytes are transferred in a sample that has 0 elapsed time, carry the bytes forward into the next sample. If we don't do this then the estimate will be calculated as though those bytes were never transferred. In practice I suspect this very rarely occurs. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218551208
olly committed -
Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218540967
olly committed
-
- 24 Oct, 2018 16 commits
-
-
Issue: #4954 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218357113
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218347641
olly committed -
Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218346327
olly committed -
Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218332277
olly committed -
If EventDispatcher.removeListener is called to remove a listener, and if the call is made from the same thread that said listener handles events on, then it should be guaranteed that the listener will not be subsequently invoked on that thread. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218331427
olly committed -
This seems to be more stable in case Bintray has issues updating the ExoPlayer sources. Issue:#4997 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218327350
tonihei committed -
Turn on flag to enable fast loop filtering. This improves multi-threaded decode performance by starting loop filtering early if there are free threads available to do so. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218239442
vigneshv committed -
Makes it consistent with MediaItem.media. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218217648
aquilescanta committed -
In ConcatenatingMediaSource, the source may be removed before it started preparing (this may happen if lazyPreparation=true). In this case, we shouldn't call releaseSource as the preparation didn't start. Issue:#4986 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218141658
tonihei committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218137830
eguven committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218058185
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=218003875
olly committed -
There are multiple subtle issues with the current implementation: 1. setOperatingRate can cause a codec initialization even if the renderer is disabled. This is not supposed to happen. 2. If the codec is released whilst the renderer is disabled, the renderer can instantiate a new codec using the old format when it's enabled again, only to immediately have to reconfigure or release it if the actual format to be played is different. 3. Codec reuse does not take into account renderer configuration. The specific case where this is problematic is if the video renderer is re-enabled with a different tunneling session id. The reused codec is then not configured correctly. Also moved availableCodecInfos reset into releaseCodec for sanity. Issue: #2826 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=217924592
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=217907544
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=217897796
olly committed -
Mimics the ExoV1 behavior. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=217893212
cpaulino committed
-