1. 09 Nov, 2016 1 commit
  2. 28 Oct, 2016 4 commits
  3. 19 Sep, 2016 1 commit
  4. 26 Feb, 2016 1 commit
  5. 03 Mar, 2015 1 commit
  6. 21 Jan, 2015 1 commit
  7. 01 Jan, 2015 1 commit
  8. 26 Dec, 2014 1 commit
  9. 05 Feb, 2014 1 commit
  10. 28 Jan, 2014 2 commits
  11. 23 Jan, 2014 1 commit
  12. 13 Jan, 2014 1 commit
  13. 19 Oct, 2013 1 commit
  14. 15 Oct, 2013 1 commit
  15. 04 Sep, 2013 1 commit
  16. 04 Aug, 2013 1 commit
  17. 03 Aug, 2013 1 commit
  18. 30 Jul, 2013 2 commits
  19. 16 Apr, 2013 1 commit
  20. 30 Jan, 2013 1 commit
  21. 02 Aug, 2012 2 commits
  22. 19 Sep, 2011 1 commit
  23. 31 Mar, 2011 1 commit
  24. 29 Jan, 2011 1 commit
  25. 05 Nov, 2010 1 commit
  26. 01 Jan, 2010 1 commit
  27. 29 Oct, 2009 1 commit
    • Max Kellermann's avatar
      output_plugin: added method "drain" · 1403172e
      Max Kellermann authored
      drain() is the opposite of cancel(): it waits until all data in the
      buffer has finished playing.  Instead of implicitly draining in the
      close() method like the ALSA plugin has been doing it forever, let the
      output thread decide whether to drain or to cancel.
      1403172e
  28. 23 Oct, 2009 1 commit
    • Max Kellermann's avatar
      output_plugin: added methods enable() and disable() · e53ca368
      Max Kellermann authored
      With these methods, an output plugin can allocate some global
      resources only if it is actually enabled.  The method enable() is
      called after daemonization, which allows for more sophisticated
      resource allocation during that method.
      e53ca368
  29. 26 Mar, 2009 1 commit
  30. 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
  31. 26 Feb, 2009 1 commit
    • Max Kellermann's avatar
      output_plugin: report errors with GError · ec926539
      Max Kellermann authored
      Use GLib's GError library for reporting output device failures.
      
      Note that some init() methods don't clean up properly after a failure,
      but that's ok for now, because the MPD core will abort anyway.
      ec926539
  32. 25 Feb, 2009 1 commit
  33. 23 Feb, 2009 2 commits
    • Max Kellermann's avatar
      output: pass the music chunk pointer as void*, not char* · a4dfab2a
      Max Kellermann authored
      The meaning of the chunk depends on the audio format; don't suggest a
      specific format by declaring the pointer as "char*", pass "void*"
      instead.
      a4dfab2a
    • Max Kellermann's avatar
      output_api: play() returns a length · 5a898c15
      Max Kellermann authored
      The old API required an output plugin to not return until all data
      passed to the play() method is consumed.  Some output plugins have to
      loop to fulfill that requirement, and may block during that.  Simplify
      these, by letting them consume only part of the buffer: make play()
      return the length of the consumed data.
      5a898c15