1. 19 Oct, 2022 7 commits
  2. 24 Oct, 2022 1 commit
  3. 19 Oct, 2022 1 commit
  4. 18 Oct, 2022 8 commits
  5. 17 Oct, 2022 1 commit
  6. 14 Oct, 2022 5 commits
  7. 17 Oct, 2022 1 commit
  8. 13 Oct, 2022 4 commits
  9. 12 Oct, 2022 3 commits
    • Add Cea608DecoderTest · 3575b680
      When debugging and fixing Issue: google/ExoPlayer#10666 I wanted to write a regression
      test, but needed to add a test first... This is just a small bit of
      coverage to start with. It checks the field/channel filtering works
      correctly, but doesn't check any styling info. It also doesn't test
      'pop on' subtitles (i.e. when the subtitle isn't shown until a 'end of
      subtitle' signal is received).
      
      PiperOrigin-RevId: 480644568
      (cherry picked from commit 706b1299)
      ibaker committed
    • Demo: Shorten trim range from 60 seconds to 10 seconds. · cc672410
      Most demo videos aren't very long, and the default demo video is only 10 seconds.
      
      Shorten the maximum trim duration to 10 seconds, to demonstrate transformer functionality more easily, and allow this to be used more easily when trimming short sections of a longer video (ex. to make test clips)
      
      PiperOrigin-RevId: 480602037
      (cherry picked from commit f35bda35)
      huangdarwin committed
    • Demo: Hide player controls by default. · 28763e7d
      Player controls are somewhat distracting when showing the difference between the
      input and output video, as they obscure and darken the video players.
      
      PiperOrigin-RevId: 480597804
      (cherry picked from commit 51edb329)
      huangdarwin committed
  10. 11 Oct, 2022 2 commits
  11. 10 Oct, 2022 6 commits
  12. 07 Oct, 2022 1 commit
    • Remove late frame dropping in FrameProcessor · b436001e
      Currently, a frame is dropped if it's requested release time is in the past.
      This mode was added to support previewing. However, in normal ExoPlayer
      playback, slightly late frames (<30ms late) are also rendered. On MediaCodec
      side, this means calling `releaseOutputBuffer` with a release time in the
      past.
      
      PiperOrigin-RevId: 479615291
      (cherry picked from commit a426cb27)
      claincly committed