1. 26 Feb, 2016 1 commit
  2. 21 Jan, 2015 2 commits
  3. 01 Jan, 2015 1 commit
  4. 28 Jan, 2014 1 commit
  5. 23 Jan, 2014 2 commits
  6. 15 Jan, 2014 1 commit
  7. 14 Jan, 2014 1 commit
  8. 13 Jan, 2014 1 commit
  9. 28 Nov, 2013 1 commit
  10. 05 Sep, 2013 2 commits
  11. 03 Aug, 2013 1 commit
  12. 30 Jul, 2013 2 commits
  13. 16 Apr, 2013 1 commit
  14. 19 Sep, 2011 1 commit
  15. 29 Jan, 2011 1 commit
  16. 01 Jan, 2010 1 commit
  17. 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
  18. 25 Feb, 2009 1 commit
  19. 16 Feb, 2009 3 commits
  20. 15 Feb, 2009 1 commit
  21. 09 Feb, 2009 1 commit
  22. 30 Jan, 2009 3 commits
  23. 25 Jan, 2009 2 commits
  24. 17 Jan, 2009 1 commit
  25. 31 Dec, 2008 1 commit
  26. 25 Nov, 2008 1 commit
  27. 31 Oct, 2008 1 commit
    • Max Kellermann's avatar
      added prefix to header macros · ea515494
      Max Kellermann authored
      "LOG_H" is a macro which is also used by ffmpeg/log.h.  This is
      ffmpeg's fault, because short macros should be reserved for
      applications, but since it's always a good idea to choose prefixed
      macro names, even for applications, we are going to do that in MPD.
      ea515494
  28. 29 Oct, 2008 1 commit
  29. 08 Oct, 2008 1 commit
  30. 29 Sep, 2008 2 commits
    • Max Kellermann's avatar
      audio_output: added method pause() · 6e21e24c
      Max Kellermann authored
      pause() puts the audio output into pause mode: if supported, it may
      perform a special action, which keeps the device open, but does not
      play anything.  Output plugins like "shout" might want to play silence
      during pause, so their clients won't be disconnected.  Plugins which
      do not support pausing will simply be closed, and have to be reopened
      when unpaused.
      
      This pach includes an implementation for the shout plugin, which
      sends silence chunks.
      6e21e24c
    • Max Kellermann's avatar
      audio_output: added function audio_output_is_pending() · c13e8b51
      Max Kellermann authored
      The function audio_output_is_pending() returns whether there is a
      pending command.  This is useful for output plugins as a break
      condition for longer loops.
      c13e8b51