1. 11 May, 2017 10 commits
  2. 09 May, 2017 1 commit
  3. 08 May, 2017 9 commits
  4. 05 May, 2017 2 commits
  5. 04 May, 2017 13 commits
  6. 03 May, 2017 2 commits
  7. 26 Apr, 2017 3 commits
    • Fill in release note TODOs · 7761cdcd
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=154298148
      olly committed
    • Move renderer building into a factory class. · 1e12c079
      To inject custom renderers into SimpleExoPlayer, developers
      currently need to extend SimpleExoPlayer and override the
      renderer building methods. This is in contrast to the rest
      of the library, where we use proper injection. This change
      restores consistency. I think it's fine to make
      SimpleExoPlayer final again, but if we find people extending
      it for non-renderer purposes, we can revert that part of the
      change.
      
      ExoPlayerFactory now has analogous methods for the simple
      and non-simple cases, which is a nice outcome.
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=154295726
      olly committed
    • Fix scrub seek position estimation for multi window time bar. · 0f9d9d56
      When using a multi window time bar, the onScrubStop method uses another
      method to estimate the seek position than the updateProgress method for
      rendering the time bar. If the time line contains windows starting with an
      ad period followed by other content, they differ in their behaviour.
       - updateProgress checks all periods and leaves out all ad periods
       - onScrubStop only checks windows and leaves them out when the first
         period is an ad.
      
      Changed onScrubStop to fit approach in updateProgess.
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=154271628
      tonihei committed