1. 09 Jul, 2012 1 commit
  2. 12 Jun, 2012 1 commit
  3. 13 Dec, 2011 1 commit
  4. 19 Sep, 2011 1 commit
  5. 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
  6. 29 Jan, 2011 1 commit
  7. 10 Jan, 2011 1 commit
  8. 02 May, 2010 2 commits
  9. 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
  10. 17 Feb, 2010 2 commits
    • Max Kellermann's avatar
      replay_gain: optionally use hardware mixer to apply replay gain · 96493e03
      Max Kellermann authored
      Add an option for each audio output which enables the use of the
      hardware mixer, instead of the software volume code.
      
      This is hardware specific, and assumes linear volume control.  This is
      not the case for hardware mixers which were tested, making this patch
      somewhat useless, but we will use it to experiment with the settings,
      to find a good solution.
      96493e03
    • 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
  11. 01 Jan, 2010 1 commit
  12. 25 Dec, 2009 1 commit
  13. 14 Dec, 2009 3 commits
  14. 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
  15. 29 Oct, 2009 1 commit
  16. 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
  17. 21 Oct, 2009 3 commits
  18. 20 Oct, 2009 2 commits
  19. 18 Aug, 2009 1 commit
  20. 06 Jul, 2009 5 commits
  21. 05 Jul, 2009 1 commit
  22. 28 Apr, 2009 1 commit
  23. 26 Mar, 2009 1 commit
  24. 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
  25. 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
  26. 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
  27. 01 Mar, 2009 3 commits