1. 04 Jan, 2012 2 commits
  2. 16 Sep, 2011 1 commit
  3. 15 Sep, 2011 1 commit
  4. 26 Aug, 2011 1 commit
  5. 23 Aug, 2011 1 commit
  6. 08 Nov, 2010 1 commit
  7. 05 Nov, 2010 3 commits
  8. 28 Sep, 2010 1 commit
  9. 23 Sep, 2010 1 commit
  10. 07 Sep, 2010 1 commit
  11. 20 Jul, 2010 2 commits
    • Max Kellermann's avatar
      input/curl: remove assertion after curl_multi_fdset() · 1f976d6e
      Max Kellermann authored
      Some users reported that MPD crashes when using a new CURL version
      with the threaded DNS resolver enabled.  It seems that
      curl_multi_fdset() returns no file descriptor when the DNS resolver
      runs in another thread, so MPD does not have any event to wait for.
      
      On the CURL mailing list, somebody suggested to sleep for a fixed
      amount of time.  This is not an elegant solution, because daemons
      should never have to sleep without waiting for an event.  I hope the
      CURL developers will review the API and remove the threaded DNS
      resolver.
      
      Meanwhile, I'm removing the assertion in question, to allow those
      unfortunate users running the latest CURL version to continue using
      MPD.
      1f976d6e
    • Max Kellermann's avatar
      input/curl: query timeout from CURL · a4908dca
      Max Kellermann authored
      Use curl_multi_timeout() to determine the select() timeout, instead of
      hard-coding one second.
      a4908dca
  12. 20 May, 2010 1 commit
  13. 18 May, 2010 4 commits
  14. 18 Jan, 2010 2 commits
  15. 04 Jan, 2010 1 commit
  16. 01 Jan, 2010 2 commits
    • Max Kellermann's avatar
      input_stream: return allocated input_stream objects · d3b763a4
      Max Kellermann authored
      Major API redesign: don't let the caller allocate the input_stream
      object.  Let each input plugin allocate its own (derived/extended)
      input_stream pointer.  The "data" attribute can now be removed, and
      all input plugins simply cast the input_stream pointer to their own
      structure (with an "struct input_stream base" as the first attribute).
      d3b763a4
    • Avuton Olrich's avatar
      Update copyright notices. · 9d3865cb
      Avuton Olrich authored
      9d3865cb
  17. 31 Dec, 2009 2 commits
  18. 30 Dec, 2009 1 commit
  19. 29 Dec, 2009 1 commit
    • Max Kellermann's avatar
      input/rewind: new input_stream wrapper to allow stream rewinding · c88f95a2
      Max Kellermann authored
      This replaces the rewinding buffer code from the CURL input plugin.
      It is more generic, and allows rewinding even when the server sends
      Icy-Metadata (which would have been too difficult to implement within
      the CURL plugin).
      
      This is a rather complex patch for the stable branch (v0.15.x), but it
      fixes a serious problem: the "vorbis" decoder plugin was unable to
      play streams with Icy-Metadata, because it couldn't rewind the stream
      after detecting the codec (Vorbis vs. FLAC).
      c88f95a2
  20. 16 Dec, 2009 3 commits
  21. 15 Dec, 2009 5 commits
  22. 14 Dec, 2009 1 commit
  23. 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
  24. 10 Nov, 2009 1 commit
    • Max Kellermann's avatar
      configure.ac: require GLib 2.12 · b722d3d7
      Max Kellermann authored
      Drop the required GLib version from 2.16 to 2.12, because many current
      systems still don't have GLib 2.16.  This requires several new
      compatibility functions in glib_compat.h.
      b722d3d7