1. 28 Apr, 2009 1 commit
  2. 25 Apr, 2009 1 commit
  3. 27 Mar, 2009 1 commit
  4. 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
  5. 06 Mar, 2009 1 commit
  6. 02 Mar, 2009 4 commits
  7. 28 Feb, 2009 1 commit
  8. 17 Feb, 2009 1 commit
  9. 29 Jan, 2009 1 commit
  10. 25 Jan, 2009 1 commit
  11. 17 Jan, 2009 1 commit
  12. 15 Jan, 2009 4 commits
  13. 13 Jan, 2009 2 commits
    • Joe Milbourn's avatar
      input_curl: honour http_proxy_* config directives · 45598d50
      Joe Milbourn authored
      If http_proxy_{host, port, user, password} are provided in mpd.conf
      they are not passed on to libcurl. As a result mpd cannot stream from
      behind an http proxy.
      
      The attached patch `http_proxy.patch` makes the relevant calls to
      curl_easy_setopt(...) for all proxy configuration parameters, but is
      only tested for host and port.
      45598d50
    • Max Kellermann's avatar
      input_curl: use select() to eliminate busy loop during connect · e7c7e652
      Max Kellermann authored
      When decoder_run_song() (decoder_thread.c) waits for the input stream
      to become ready, it did that in a busy loop.  Add a select() call to
      input_curl_buffer() during connect/handshake (i.e. before the first
      chunk of body data was received), to let the CPU relax.
      e7c7e652
  14. 07 Jan, 2009 2 commits
  15. 03 Jan, 2009 2 commits
  16. 30 Nov, 2008 2 commits
  17. 25 Nov, 2008 1 commit
    • Max Kellermann's avatar
      input_curl: disable Icy-Metadata · 21dade26
      Max Kellermann authored
      input_curl.c does not support parsing shoutcast metadata yet.  Disable
      the "Icy-Metadata" header for now, since it may cause corruptions in
      the stream.
      21dade26
  18. 24 Nov, 2008 1 commit
  19. 21 Nov, 2008 3 commits
  20. 20 Nov, 2008 3 commits
    • Max Kellermann's avatar
      input_curl: don't fail when seek to EOF is requested · a8f69429
      Max Kellermann authored
      HTTP servers respond with "416 Requested Range Not Satisfiable" when a
      client attempts to seek to the end of the file.  Catch this special
      case in input_curl_seek().  This fixes a glitch in the ogg vorbis
      decoder plugin.
      a8f69429
    • Max Kellermann's avatar
      curl: don't check running_handles for EOF · a0dd5b7f
      Max Kellermann authored
      Since we are using curl_multi_info_read() / CURLMSG_DONE for detecting
      end-of-response, we can remove all running_handles==0 checks.  For
      some reason, that has never worked correctly.
      a0dd5b7f
    • Max Kellermann's avatar
      input_curl: always set eof=true on CURLMSG_DONE · f61904db
      Max Kellermann authored
      curl_multi_info_read() is the authoritative source of the
      "end-of-response" information.  Always set c->eof when a CURLMSG_DONE
      message is received, and check the result (success/failure) after
      that.
      f61904db
  21. 16 Nov, 2008 1 commit
  22. 06 Nov, 2008 3 commits
  23. 03 Nov, 2008 1 commit
  24. 02 Nov, 2008 1 commit
    • Max Kellermann's avatar
      input_curl: buffered rewinding · 460b15d2
      Max Kellermann authored
      During codec detection, the beginning of the stream is consumed.  This
      is a common operation, which takes a lot of time when handling remote
      resources.  To optimize this, remember the first 64 kB of a stream.
      This way, we can rewind the stream without actually fetching the start
      of the stream again.
      460b15d2