1. 08 Oct, 2020 1 commit
  2. 21 Sep, 2020 1 commit
  3. 30 May, 2020 1 commit
  4. 05 May, 2020 2 commits
  5. 22 Apr, 2020 1 commit
  6. 26 Mar, 2020 1 commit
  7. 25 Mar, 2020 2 commits
  8. 16 Mar, 2020 5 commits
  9. 12 Mar, 2020 1 commit
  10. 01 Feb, 2020 3 commits
  11. 18 Jan, 2020 1 commit
  12. 05 Jul, 2019 1 commit
  13. 17 Jun, 2019 1 commit
  14. 20 Feb, 2019 5 commits
  15. 17 Feb, 2019 1 commit
  16. 19 Nov, 2018 1 commit
    • Max Kellermann's avatar
      check.h: remove obsolete header · ce49d99c
      Max Kellermann authored
      Since we switched from autotools to Meson in commit
      94592c14, we don't need to include
      `config.h` early to properly enable large file support.  Meson passes
      the required macros on the compiler command line instead of defining
      them in `config.h`.
      
      This means we can include `config.h` at any time, whenever we want to
      check its macros, and there are no ordering constraints.
      ce49d99c
  17. 11 Nov, 2018 2 commits
  18. 04 Nov, 2018 1 commit
  19. 31 Oct, 2018 2 commits
    • Max Kellermann's avatar
      *: copyright year 2018 · f5c90714
      Max Kellermann authored
      f5c90714
    • 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
  20. 14 Oct, 2018 1 commit
    • Max Kellermann's avatar
      build with Meson instead of autotools · 94592c14
      Max Kellermann authored
      So long, autotools!  This is my last MPD related project to migrate
      away from it.  It has its strengths, but also very obvious weaknesses
      and weirdnesses.  Today, many of its quirks are not needed anymore,
      and are cumbersome and slow.  Now welcome our new Meson overlords!
      94592c14
  21. 20 Aug, 2018 1 commit
  22. 10 Feb, 2018 1 commit
    • Max Kellermann's avatar
      mixer/alsa: work around rounding error at volume 0 · bede5646
      Max Kellermann authored
      Due to rounding errors, a slightly negative value can be passed to
      set_normalized_volume(), which will make the log10() call fail.
      Actually, volume 0 is already failing because log10(0) is illegal.  So
      let's fix this by implementing two corner cases: <=0 and >=100.
      
      Closes #212
      bede5646
  23. 19 Dec, 2017 1 commit
  24. 18 Dec, 2017 1 commit
  25. 12 Nov, 2017 2 commits