1. 24 Jul, 2020 36 commits
  2. 13 Jul, 2020 4 commits
    • Use lambdas where possible · f2055396
      PiperOrigin-RevId: 320960833
      olly committed
    • Split SampleQueue.advanceTo into two operations. · 29b12e2f
      The method currently advances the read position and returns the number
      of skipped samples. This prevents checking how many samples are skipped
      before the operation is executed.
      
      Instead, we have a new method that returns the number of to be skipped
      samples and a skip method that executes the skipping.
      
      PiperOrigin-RevId: 320953439
      tonihei committed
    • Remove some occurrences of dummy · 92437f3a
      Remove occurrences in comments and private fields.
      
      ISSUE: #7565
      PiperOrigin-RevId: 320948364
      kimvde committed
    • Improve handling of floating point audio · 5c9c0e20
      - DefaultAudioSink always supports floating point input. Make it
        advertise this fact.
      - Remove the ability to enable/disable floating point output in
        FfmpegAudioRenderer, since this ability is now also provided on
        DefaultAudioSink.
      - Let FfmpegAudioRenderer query the sink to determine whether it
        will output floating point PCM directly or resample it to 16-bit
        PCM.
      
      PiperOrigin-RevId: 320945360
      olly committed