- 25 May, 2017 3 commits
-
-
This fixes transitioning into the ended state if we see endOfStream from the chunk source whilst in the pending reset state. Prior to this fix we'd still be pending a reset, and so readData would never allow EOS to be read by the consuming renderer. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=157101755
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=157095116
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156999955
aquilescanta committed
-
- 24 May, 2017 1 commit
-
-
Issue: #2618 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156986606
olly committed
-
- 23 May, 2017 9 commits
-
-
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156872383
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156860658
olly committed -
Refactor: Change the position of variable.
ojw28 committed -
Add support for AVC Level 5.2
ojw28 committed -
*** Reason for rollback *** This change may silently introduce bugs where both parameters are acceptable in both places. It's decided that the gain isn't worth the risk. *** Original change description *** Make the error messages the first parameter in Assertions methods to match JUnit methods Reverse parameter order creates a slight confusion. *** ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156844728
eguven committed -
Expose the stream offset to BaseRenderer subclasses. Issue: #2267 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156837514
andrewlewis committed -
Issue: #2824 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156781252
olly committed -
([] This change has been automatically generated by an Error Prone check that detects incorrect argument ordering on calls to assertEquals-style methods. See [] Cleanup change automatically generated by javacflume/refactory Refactoring: third_party/java_src/error_prone/project/core/src/main/java/com/google/errorprone/bugpatterns/argumentselectiondefects:AssertEqualsArgumentOrderChecker_refactoring Tested: TAP --sample for global presubmit queue [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156739144andrewrice committed -
Reverse parameter order creates a slight confusion. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156712385
eguven committed
-
- 17 May, 2017 17 commits
-
-
ojw28 committed
-
ojw28 committed
-
ojw28 committed
-
ojw28 committed
-
ojw28 committed
-
ojw28 committed
-
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156312761
andrewlewis committed -
In addition, the class now accepts available Cronet instances and returns the source of the current CronetEngine. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156185701
tonihei committed -
(Related to GitHub Issue #2577) Added test to ExoPlayerTest which changes the repeat mode during playback. Test verifies that ExoPlayer shows the periods in the intended order. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156168166
tonihei committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156131086
olly committed -
- Call onDisabled last. onDisabled really shouldn't be doing anything with the stream, so pretty sure this is fine (and guarantees the stream is cleared properly even if onDisabled throws a RTE). - Remove super.onDisabled calls from Text/Metadata renderers. This is just for consistency; we don't make such calls in other direct descendants of BaseRenderer. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156130640
olly committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156113616
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156077889
andrewlewis committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156061458
andrewlewis committed -
If a timeline update removed periods at the end of the timeline which had been buffered, handleSourceInfoRefreshed would call getNextPeriodIndex and get back -1 for the last period holder in the new timeline. Then isLastPeriod(-1) could throw. Fix this behavior so that the remainder of the timeline is discarded. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156061016
andrewlewis committed -
the current size. https://github.com/google/ExoPlayer/issues/2782 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=156018137
bachinger committed -
Checking the expected next/previous window indices and if the correct window or period gets returned. TimelineTest defines mock classes and verification methods used by the specific implementation tests. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155727385
tonihei committed
-
- 12 May, 2017 1 commit
-
-
sillywab8 committed
-
- 11 May, 2017 9 commits
-
-
arakawa_yusuke committed
-
ojw28 committed
-
Fix unused variable
ojw28 committed -
Issue: #2788 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155705318
andrewlewis committed -
When readingPeriodHolder and playingPeriodHolder are both null, a NullPointerException is thrown when trying to reassign readingPeriodHolder. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155635846
tonihei committed -
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155625893
andrewlewis committed -
(Relating to GitHub issue #2577) Changing the repeat mode during playback may require to discard or rebuffer certain periods because the requested order of playback changed. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155600910
tonihei committed -
(Relating to GitHub Issue #2577) The Timeline base class provides the default implementation. Timeline wrappers (e.g. ClippingTimeline, ConcatatedTimeline) forward all requests to the respective inner timelines. Some like ConcatenatedTimeline add their own additional logic to bridge between the child timelines. In addition, ConcatenatedTimeline and LoopingTimeline now have a common abstract base class as they share most of their code. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155509269
tonihei committed -
Even though this is not strictly spec compliant, this will make exoplayer behave like it used to before multiple program support. Developers who want to take advantage of the multiple program support are probably less than the ones who only want their stream to "just work". This is particularly useful for streams obtained after a filtering component, like a tv tuner. Issue:#2757 ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=155486122
aquilescanta committed
-