1. 17 Jun, 2019 1 commit
  2. 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
  3. 16 Sep, 2017 1 commit
  4. 21 Aug, 2017 1 commit
  5. 03 Jan, 2017 1 commit
  6. 26 Feb, 2016 1 commit
  7. 17 Sep, 2015 1 commit
  8. 01 Jan, 2015 1 commit
  9. 02 Dec, 2014 1 commit
  10. 05 Feb, 2014 1 commit
  11. 24 Jan, 2014 1 commit
  12. 13 Jan, 2014 1 commit
  13. 22 Feb, 2013 1 commit
  14. 29 May, 2012 1 commit
    • Max Kellermann's avatar
      output/raop: delete the RAOP plugin · 457d98c8
      Max Kellermann authored
      This plugin is horrible code, I mean it.  Last year, I tried hard to
      fix it, but I figured would take less time to do a full rewrite.
      Given that I don't even have any device that supports RAOP, I can't do
      that properly.  After 16 months, nobody volunteered for fixing it.
      Hereby, I delete it, because having no RAOP plugin is better than
      having this mess.  Sorry.
      457d98c8
  15. 16 Mar, 2011 1 commit
  16. 29 Jan, 2011 1 commit
  17. 28 Jan, 2011 1 commit
  18. 08 Oct, 2010 1 commit
  19. 01 Jan, 2010 1 commit
  20. 20 Oct, 2009 2 commits
  21. 06 Jul, 2009 1 commit
  22. 14 Mar, 2009 3 commits
  23. 13 Mar, 2009 1 commit
    • Avuton Olrich's avatar
      all: Update copyright header. · 0aee49bd
      Avuton Olrich authored
      This updates the copyright header to all be the same, which is
      pretty much an update of where to mail request for a copy of the GPL
      and the years of the MPD project. This also puts all committers under
      'The Music Player Project' umbrella. These entries should go
      individually in the AUTHORS file, for consistancy.
      0aee49bd
  24. 07 Mar, 2009 1 commit
    • David Guibert's avatar
      pulse mixer · 21bb10f4
      David Guibert authored
      This patch introduces the mixer for the pulse output.
      
      Technically speaking, the pulse index is needed to get or set
      the volume. You must define callback fonctions to get this index since
      the pulse output in mpd is done using the simpe api. The pulse simple api
      does not provide the index of the newly defined output.
      
      So callback fonctions are associated to the pulse context.
      The list of all the sink input is then retreived.
      Then we select the name of the mpd pulse output and control
      its volume by its associated index number.
      Signed-off-by: 's avatarPatrice Linel <patnathanael@gmail.com>
      Signed-off-by: 's avatarDavid Guibert <david.guibert@gmail.com>
      
      [mk: fixed whitespace errors and broke long lines; removed
      daemonization changes from main.c]
      21bb10f4
  25. 02 Mar, 2009 1 commit
  26. 16 Feb, 2009 2 commits
  27. 25 Jan, 2009 7 commits
  28. 17 Jan, 2009 1 commit
  29. 10 Jan, 2009 1 commit
    • Viliam Mateicka's avatar
      Introducing mixer api · 11c29ccc
      Viliam Mateicka authored
      This patch tryes to introduce pluggable mixer (struct mixer_plugin) along with some basic infrastructure (mixer_* functions). Instance of mixer (struct mixer) is used in
      alsa and oss output plugin
      11c29ccc