1. 11 Nov, 2020 1 commit
  2. 10 Nov, 2020 1 commit
  3. 04 Nov, 2020 2 commits
  4. 28 Oct, 2020 1 commit
  5. 04 Sep, 2020 1 commit
    • bitkeeper's avatar
      Support soxr custom recipes. · 9aa432c0
      bitkeeper authored
      MPD uses soxr with prefined resample recipes. Soxr also support defining a recipe your self.
      This commit will support a custom recipe by changing the existing quality setting to "custom".
      
      The same structs as the predefined recipes uses can now set by hand.
      
      This will make the following settings available:
      - precision 16|20|24|28|32 bits, example "28"
      - phase_response - 0-100, example "45"
      - passband_end - used bandwidth of source 80-99.7%, example "99.7.0"
      - stopband_begin - anti aliasing 100.0+%, example "100".
      - attenuation - signal reduciton in dB's, 0-30. example "3.0".
      - flags "0" - additional bitmask with extra settings
      
      The data is set in the structs soxr_quality_spec and soxr_io_spec (found in soxr.h).
      9aa432c0
  6. 14 Aug, 2020 2 commits
  7. 01 Aug, 2020 1 commit
  8. 20 Jul, 2020 1 commit
  9. 10 Jul, 2020 1 commit
  10. 06 Jul, 2020 4 commits
  11. 30 May, 2020 1 commit
  12. 30 Apr, 2020 1 commit
  13. 26 Apr, 2020 1 commit
  14. 16 Dec, 2019 1 commit
  15. 12 Aug, 2019 1 commit
  16. 05 Aug, 2019 1 commit
    • Fredrik Noring's avatar
      decoder/sidplay: Add "default_genre" option · 7363fe90
      Fredrik Noring authored
      Genres are not part of the SID format, so SID files are genreless. This
      "default_genre" option may be used to assign a default genre to all SID
      music, for example "SID", "C64", "Chiptune", etc.
      7363fe90
  17. 03 Aug, 2019 2 commits
  18. 27 Jun, 2019 1 commit
  19. 26 Jun, 2019 1 commit
  20. 31 May, 2019 1 commit
  21. 21 Mar, 2019 1 commit
  22. 20 Mar, 2019 1 commit
  23. 18 Mar, 2019 5 commits
  24. 06 Mar, 2019 2 commits
  25. 22 Feb, 2019 1 commit
  26. 20 Feb, 2019 1 commit
  27. 17 Feb, 2019 1 commit
  28. 19 Jan, 2019 1 commit
  29. 31 Oct, 2018 1 commit
    • Max Kellermann's avatar
      output/roar: remove · 06ca08ce
      Max Kellermann authored
      Bugs in libroar which broke the MPD build have been annoying me for
      quite some time, and the newest bug has now hit my main build machine:
      
       https://github.com/MusicPlayerDaemon/MPD/issues/377
      
      Problem is the usage of the typedef `_IO_off64_t` in libroar's
      `vio_stdio.h`:
      
       int roar_vio_to_stdio_lseek (void *__cookie, _IO_off64_t *__pos, int __w);
      
      This `_IO_off64_t` is an internal implementation detail of glibc and
      was removed in version 2.28.  Nobody must ever use it.  Why the ****
      did the RoarAudio developers use it?  Not using internal typedefs
      isn't exactly rocket science.
      
      This annoys me enough to finally remove the plugin.  Anyway, I've
      never heard of anybody using RoarAudio, so my best guess is that
      nobody will notice.
      06ca08ce