1. 27 Jun, 2022 1 commit
    • Add timestamp to `Metadata` · 87d91ed1
      `MetadataRenderer` is updated to output `Metadata` with its presentation time, in microseconds.
      
      PiperOrigin-RevId: 457444718
      (cherry picked from commit b2831d85)
      rohks committed
  2. 24 Jun, 2022 2 commits
  3. 23 Jun, 2022 4 commits
  4. 22 Jun, 2022 3 commits
  5. 20 Jun, 2022 2 commits
  6. 17 Jun, 2022 1 commit
  7. 16 Jun, 2022 1 commit
  8. 15 Jun, 2022 4 commits
  9. 13 Jun, 2022 2 commits
  10. 10 Jun, 2022 2 commits
  11. 09 Jun, 2022 3 commits
  12. 08 Jun, 2022 3 commits
  13. 06 Jun, 2022 3 commits
  14. 31 May, 2022 2 commits
    • Add async error listener to transformer to avoid exception wrapping. · 27f23041
      This internal listener avoids wrapping the TransformationExceptions
      in PlaybackExceptions that are handled via the Player.Listener and
      is also used for FrameProcessingExceptions which already avoided
      the PlaybackException layer previously.
      
      This listener will also be useful in follow-ups for encoder-related
      TransformationExceptions that are thrown in the SurfaceProvider that
      will be called on the GL thread.
      
      PiperOrigin-RevId: 452074575
      (cherry picked from commit 35b5147e)
      hschlueter committed
    • Move program initialization to texture processor constructor. · 22ee071b
      Once the more advanced GlTextureProcessor interface exists,
      it will be possible to change the output size of a GlTextureProcessor
      between frames. To keep the re-configuration based on the frame sizes
      minimal, things indepedent of the frame size, such as the GlProgram,
      can be initialized in the constructor.
      
      PiperOrigin-RevId: 451997584
      (cherry picked from commit 87ab96d3)
      hschlueter committed
  15. 30 May, 2022 1 commit
  16. 08 Aug, 2022 1 commit
  17. 22 Jul, 2022 1 commit
  18. 21 Jul, 2022 2 commits
  19. 15 Jul, 2022 1 commit
  20. 13 Jul, 2022 1 commit
    • Fix setDataSourceFactory handling in DefaultMediaSourceFactory · dfe8bee0
      The call doesn't currently reset the already loaded suppliers and
      factories. Also fix the supplier loading code to use a local copy
      of the current dataSourceFactory to avoid leaking an updated
      instance to a later invocation.
      
      Issue: androidx/media#116
      
      PiperOrigin-RevId: 460721541
      (cherry picked from commit adc50515)
      tonihei committed