1. 02 Oct, 2013 1 commit
  2. 27 Sep, 2013 1 commit
  3. 26 Sep, 2013 1 commit
  4. 04 Sep, 2013 1 commit
  5. 03 Aug, 2013 1 commit
  6. 16 Apr, 2013 2 commits
  7. 22 Feb, 2013 1 commit
  8. 01 Feb, 2013 1 commit
  9. 30 Jan, 2013 1 commit
  10. 10 Jan, 2013 1 commit
  11. 07 Jan, 2013 1 commit
  12. 05 Jan, 2013 1 commit
  13. 04 Jan, 2013 1 commit
  14. 06 Oct, 2011 1 commit
  15. 19 Sep, 2011 1 commit
  16. 01 Sep, 2011 2 commits
    • Max Kellermann's avatar
      output_all: move _lock_signal() to output_control.c · 2be6184c
      Max Kellermann authored
      Better name, better documentation.
      2be6184c
    • Max Kellermann's avatar
      output_thread: reimplement CANCEL synchronization · 8b0b4ff0
      Max Kellermann authored
      The output thread could hang indefinitely after finishing CANCEL,
      because it could have missed the signal while the output was not
      unlocked in ao_command_finished().
      
      This patch removes the wait() call after CANCEL, and adds the flag
      "allow_play" instead.  While this flag is set, playback is skipped.
      With this flag, there will not be any excess wait() call after the
      pipe has been cleared.
      
      This patch fixes a bug that causes mpd to discontinue playback after
      seeking, due to the race condition described above.
      8b0b4ff0
  17. 30 Aug, 2011 1 commit
  18. 16 Mar, 2011 1 commit
  19. 29 Jan, 2011 1 commit
  20. 10 Jan, 2011 3 commits
  21. 04 Nov, 2010 2 commits
  22. 02 May, 2010 2 commits
  23. 10 Mar, 2010 1 commit
    • Max Kellermann's avatar
      output: added option "always_on" for radio stations · e686d191
      Max Kellermann authored
      Did you ever accidently click "stop" while feeding a radio station?
      This option sets the output device to "pause" to disable the "close"
      method.  It falls back to "pause" then, which is specific to the
      plugin.  Some plugins implement it by feeding silence.
      e686d191
  24. 01 Jan, 2010 1 commit
  25. 12 Nov, 2009 1 commit
    • Max Kellermann's avatar
      include config.h in all sources · 5b82ffc2
      Max Kellermann authored
      After we've been hit by Large File Support problems several times in
      the past week (which only occur on 32 bit platforms, which I don't
      have), this is yet another attempt to fix the issue.
      5b82ffc2
  26. 09 Nov, 2009 1 commit
  27. 02 Nov, 2009 2 commits
  28. 29 Oct, 2009 2 commits
  29. 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
  30. 20 Oct, 2009 1 commit
  31. 14 Aug, 2009 1 commit
    • Max Kellermann's avatar
      output: fixed shout stuck pause bug · 7133f560
      Max Kellermann authored
      Explicitly make the output thread leave the ao_pause() loop.  This
      patch is a workaround, and the "pause" flag is not managed in a
      thread-safe way, but that's good enough for now.
      7133f560
  32. 06 Jul, 2009 1 commit
    • Max Kellermann's avatar
      output: attach a filter chain to each audio_output · e47bdfe8
      Max Kellermann authored
      This patch adds initial filter support for audio outputs.  Each audio
      output gets a "filter" attribute, which is used by ao_play_chunk().
      
      The PCM conversion is now performed by convert_filter_plugin.
      audio_output.convert_state has been removed.
      e47bdfe8