1. 01 Jan, 2010 1 commit
  2. 02 Dec, 2009 1 commit
  3. 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
  4. 07 Nov, 2009 2 commits
  5. 06 Nov, 2009 4 commits
  6. 05 Nov, 2009 4 commits
  7. 23 Oct, 2009 1 commit
  8. 21 Oct, 2009 6 commits
  9. 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
  10. 01 Mar, 2009 1 commit
  11. 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
  12. 25 Feb, 2009 2 commits
  13. 24 Feb, 2009 1 commit
  14. 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
  15. 19 Feb, 2009 1 commit
    • Max Kellermann's avatar
      utils: use g_usleep() instead of my_usleep() · e7131b5d
      Max Kellermann authored
      Now that I've found this nice function in the GLib docs, we can
      finally remove our custom sleep function.  Still all those callers of
      g_usleep() have to be migrated one day to use events, instead of
      regular polling.
      e7131b5d
  16. 16 Feb, 2009 1 commit
  17. 30 Jan, 2009 4 commits
    • Max Kellermann's avatar
      jack: don't override output_ports in connect() · eeec32fe
      Max Kellermann authored
      If no ports are configured, don't overwrite the (NULL) configuration
      with the port names of the first JACK server.  If the server changes
      after a JACK reconnect, MPD won't attempt to auto-detect again.
      eeec32fe
    • Max Kellermann's avatar
      jack: removed sample_rate callback · a93e73be
      Max Kellermann authored
      Currently, the JACK plugin manipulates the audio_format struct which
      was passed to the open() method.  This is very likely to break,
      because the plugin must not permanently store this pointer.  After
      this patch, MPD ignores sample rate changes.  It looks like other
      software is doing the same, and I guess this is a non-issue.
      
      This patch converts the audio_format pointer within jack_data into a
      static audio_format struct.
      a93e73be
    • Max Kellermann's avatar
      configure.ac: detect jack_set_info_function() · 59008276
      Max Kellermann authored
      jack_set_info_function() is not provided by older libjack versions.
      Attempt to detect if it is available.
      59008276
    • Max Kellermann's avatar
      jack: print info messages · 0d3dff95
      Max Kellermann authored
      Use jack_set_info_function() to install an info callback.  Don't let
      libjack print them to stderr.
      0d3dff95
  18. 29 Jan, 2009 6 commits