1. 15 Jul, 2022 1 commit
  2. 13 Jul, 2022 15 commits
  3. 12 Jul, 2022 8 commits
  4. 07 Jul, 2022 11 commits
  5. 06 Jul, 2022 2 commits
    • Add RTP VP8 Reader Test · 1de4ee3a
      Update VP8 Reader to handle missing frames/fragments.
      
      Change-Id: I9eede8f1e3a20fb0ff2e7add0dfc60f0780ec769
      Shraddha Basantwani committed
    • Fix VP8 Reader · ff3d7dff
      Update VP8 header to check if the S bit is set.
      
      Variable fragmentedSampleSizeBytes is initialised with -1, and reader
      is directly adding fragmentSize to this variable.
      Updated it to check if the size is unset.
      
      Bug: 238153477
      Test: manual
      Change-Id: I9d5735422a4a0eeb2967af93809b879b434e3c57
      Shraddha Basantwani committed
  6. 04 Jul, 2022 3 commits
    • Implement device based encoder bitrate mapping. · 7d2eb760
      This feature is disabled by default for now.
      
      PiperOrigin-RevId: 458932471
      samrobinson committed
    • Merge pull request #96 from fengdai:release · 8e5af4a3
      PiperOrigin-RevId: 458883441
      Marc Baechinger committed
    • Fallback to SDR if encoder doesn't support HDR (HLG only). · 9c8dcb40
      If the input is HDR (HLG), check encoder capabilities for HDR support
      and request tone-mapping to SDR during decoder configuration otherwise.
      Capabilities are only checked for API 31 and above, as HDR editing is
      not supported before.
      
      As the encoder capabilities check needs to happen before selecting the
      encoder to use (as this may depend on the resolution output by the
      effects chain), the EncoderWrapper checks all candidate encoders
      for the MIME type for HDR capabilities and only requests fallback to
      SDR if none of them support it.
      
      When the actual encoder is selected, the wrapper checks that it matches
      one of the encoders is checked capabilities for.
      
      PiperOrigin-RevId: 458511599
      hschlueter committed