1. 09 Jun, 2022 6 commits
  2. 07 Jun, 2022 4 commits
  3. 31 May, 2022 7 commits
  4. 30 May, 2022 20 commits
  5. 26 May, 2022 3 commits
    • Fix typos flagged by lint · 53b44524
      PiperOrigin-RevId: 451135097
      ibaker committed
    • Fix some inconsistencies in the `MediaItem` API · b8769b27
      * Rename (via deprecation)
        `MediaItem.DrmConfiguration.Builder#forceSessionsForAudioAndVideoTracks`
        to `setForceSessionsForAudioAndVideoTracks`. This is more consistent
        with existing 'force' method names both in this class and in
        `TrackSelectionParameters.Builder`.
      * Add missing `@Nullable` annotation to the parameter for
        `MediaItem.SubtitleConfiguration.Builder#setMimeType`. This annotation
        is already present on the `MediaItem.SubtitleConfiguration#mimeType`
        field that this setter corresponds to.
      
      PiperOrigin-RevId: 450941336
      ibaker committed
    • Skip SSIM calculation on Nexus 5 API 21. · 2b4642f6
      There is a problem with the ImageReader formats used by the
      SSIM helper that only occurs for Nexus 5 API 21, so as a workaround
      we can skip the SSIM calculation on Nexus 5 API 21.
      
      This skips just the SSIM calculation (by setting the value to
      1.0 instead and logging). The tests still run when SSIM is skipped
      so that we can detect other failures.
      
      PiperOrigin-RevId: 450903183
      hschlueter committed