1. 28 Oct, 2013 1 commit
  2. 19 Oct, 2013 2 commits
  3. 17 Oct, 2013 1 commit
  4. 27 Sep, 2013 1 commit
  5. 26 Sep, 2013 1 commit
  6. 04 Sep, 2013 1 commit
  7. 04 Aug, 2013 1 commit
  8. 03 Aug, 2013 1 commit
  9. 30 Jul, 2013 1 commit
  10. 16 Apr, 2013 3 commits
  11. 08 Apr, 2013 1 commit
  12. 02 Feb, 2013 1 commit
  13. 15 Jan, 2013 1 commit
  14. 25 Sep, 2012 1 commit
  15. 19 Sep, 2011 1 commit
  16. 01 Sep, 2011 1 commit
    • 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. 29 Jan, 2011 1 commit
  19. 10 Jan, 2011 1 commit
  20. 04 Nov, 2010 1 commit
  21. 02 May, 2010 2 commits
  22. 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
  23. 17 Feb, 2010 1 commit
    • Max Kellermann's avatar
      replay_gain: reimplement as a filter plugin · 752dfb3d
      Max Kellermann authored
      Apply the replay gain in the output thread.  This means a new setting
      will be active instantly, without going through the whole music pipe.
      And we might have different replay gain settings for each audio output
      device.
      752dfb3d
  24. 01 Jan, 2010 1 commit
  25. 09 Nov, 2009 1 commit
  26. 29 Oct, 2009 1 commit
  27. 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
  28. 21 Oct, 2009 1 commit
  29. 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
  30. 06 Jul, 2009 2 commits
    • 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
    • Max Kellermann's avatar
      output: added command REOPEN · 78fa3f06
      Max Kellermann authored
      REOPEN is called when the input audio format changes.  The output
      thread may be reconfigure the PCM converter.
      78fa3f06
  31. 26 Mar, 2009 1 commit
  32. 25 Mar, 2009 1 commit
    • Max Kellermann's avatar
      output: protect audio_output.open with the mutex · 4dbf73d8
      Max Kellermann authored
      There was a deadlock between the output thread and the player thread:
      when the output thread failed (and closed itself) while the player
      thread worked with the audio_output object, MPD could crash.
      4dbf73d8
  33. 20 Mar, 2009 1 commit
    • Max Kellermann's avatar
      output: convert audio_output.config_audio_format to boolean · e6c753a4
      Max Kellermann authored
      The config_audio_format used to contain the configured audio format,
      which is copied to out_audio_format.  Let's convert the former to a
      boolean, which indicates whether out_audio_format was already set.
      This simplifies some code and saves a few bytes.
      e6c753a4
  34. 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
  35. 09 Mar, 2009 1 commit
    • Max Kellermann's avatar
      output: play from a music_pipe object · 3291666b
      Max Kellermann authored
      Instead of passing individual buffers to audio_output_all_play(), pass
      music_chunk objects.  Append all those chunks asynchronously to a
      music_pipe instance.  All output threads may then read chunks from
      this pipe.  This reduces MPD's internal latency by an order of
      magnitude.
      3291666b