1. 14 Oct, 2016 4 commits
  2. 11 Oct, 2016 13 commits
  3. 09 Oct, 2016 1 commit
  4. 07 Oct, 2016 1 commit
  5. 06 Oct, 2016 2 commits
  6. 05 Oct, 2016 7 commits
  7. 04 Oct, 2016 7 commits
  8. 03 Oct, 2016 3 commits
  9. 30 Sep, 2016 2 commits
    • Update variable name in comment. · c381093a
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=134776852
      andrewlewis committed
    • Fix seeking in the last period. · ee4d297f
      When reading the last period, the readingPeriodHolder was set to null in
      updatePeriods if it was the last period. (This would occur almost immediately
      when playing a single-period source.) seekToPeriodPosition suppresses reusing a
      loaded/prepared period if the reading period and playing period did not match,
      which meant that the whole timeline was recreated when seeking in the last
      period.
      
      Leave readingPeriodHolder non-null. This means that at all times either
      playingPeriodHolder == readingPeriodHolder (and they could be null or
      non-null), or playingPeriodHolder and readingPeriodHolder differ and are both
      non-null.
      
      Also fix an issue where streams were never forced to be recreated during track
      reselection when reading ahead.
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=134774238
      andrewlewis committed