1. 10 Dec, 2021 8 commits
  2. 07 Dec, 2021 30 commits
  3. 02 Dec, 2021 2 commits
    • Prohibit duplicate TrackGroups in TrackGroupArray · 417c2426
      Allowing duplicate groups caused some other code working with the
      array to use reference equality comparison. This is error-prone,
      easily forgotten (e.g. when using the TrackGroups in a map) and
      causes bugs when TrackGroups are serialized to disk or to another
      process.
      
      All TrackGroups created by ExoPlayer are already unique and custom
      code creating TrackGroupArrays with identical groups can easily
      distringuish them by adding an id to each group.
      
      Issue: google/ExoPlayer#9718
      PiperOrigin-RevId: 413617005
      tonihei committed
    • Update javadoc to reflect removal of WebM container option · e077edde
      It seems fine to remove the documentation about the WebM case now we are only supporting unfragmented MP4, so that new users coming to this API aren't confused about how to set the container MIME type.
      
      PiperOrigin-RevId: 413611472
      andrewlewis committed