1. 06 Jul, 2018 12 commits
  2. 22 Jun, 2018 1 commit
  3. 28 May, 2018 4 commits
  4. 22 May, 2018 5 commits
  5. 12 May, 2018 3 commits
  6. 07 May, 2018 2 commits
  7. 03 May, 2018 2 commits
  8. 30 Apr, 2018 2 commits
  9. 26 Apr, 2018 6 commits
  10. 25 Apr, 2018 2 commits
  11. 15 Mar, 2018 1 commit
    • Max Kellermann's avatar
      pcm/PcmDop: round down to the nearest multiple of 4 DSD bytes · a2340c31
      Max Kellermann authored
      There was a discrepancy between what was written to the buffer and the
      size returned by pcm_dsd_to_dop(): the "for" loop uses num_frames/2,
      rounding down, while the return value is num_samples which is
      num_frames*channels, without rounding.  This could cause undefined
      data at the end of the destination buffer if the source buffer size
      was not aligned to multiples of 8 bytes (4 DSD bytes per channel).
      
      The latter however can occur in the 0.21 branch after commit
      a06bf388
      
      Closes #233
      a2340c31