1. 03 Feb, 2012 7 commits
  2. 24 Jan, 2012 1 commit
  3. 12 Jan, 2012 2 commits
  4. 04 Jan, 2012 6 commits
  5. 24 Dec, 2011 1 commit
  6. 28 Nov, 2011 1 commit
  7. 16 Sep, 2011 1 commit
    • Max Kellermann's avatar
      input_stream: non-blocking I/O · 754f26a9
      Max Kellermann authored
      Add GMutex, GCond attributes which will be used by callers to
      conditionally wait on the stream.
      
      Remove the (now-useless) plugin method buffer(), wait on GCond
      instead.  Lock the input_stream before each method call.  Do the same
      with the playlist plugins.
      754f26a9
  8. 15 Sep, 2011 6 commits
  9. 18 Jul, 2011 2 commits
  10. 03 Jul, 2011 1 commit
  11. 09 May, 2011 6 commits
  12. 12 Apr, 2011 3 commits
  13. 29 Jan, 2011 1 commit
  14. 04 Nov, 2010 1 commit
  15. 19 Jul, 2010 1 commit
    • Max Kellermann's avatar
      decoder/ffmpeg: fix libavformat 0.6 by using av_open_input_stream() · e2e8d0d2
      Max Kellermann authored
      libavformat 0.6 does not pass the original URI pointer to the "open"
      method, which leads to a crash because MPD was using a dirty hack to
      pass a pointer to that method.
      
      This patch switches to av_open_input_stream() with a custom
      ByteIOContext class, instead of doing the URI string hack with
      av_open_input_file().
      
      Loosely based on a patch from Jasper St. Pierre.
      e2e8d0d2