aboutsummaryrefslogtreecommitdiff
path: root/src/input
Commit message (Collapse)AuthorAge
* input/soup: wait some more before resuming the streamMax Kellermann2011-09-16
|
* input/soup: improve error messagesMax Kellermann2011-09-16
| | | | | Copy the reason_phrase from the SoupMessage, and check for transport errors in the session callback.
* input_stream: non-blocking I/OMax Kellermann2011-09-16
| | | | | | | | | 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.
* input_plugin: add method check()Max Kellermann2011-09-16
| | | | | To check for errors without reading. The decoder thread wants to do that, before it passes the input stream to the plugin.
* input/{soup,curl}: free unused postponed_errorMax Kellermann2011-09-16
| | | | Fix memory leak.
* input/soup: move libsoup calls to the I/O threadMax Kellermann2011-09-16
| | | | | libsoup's asynchronous API is not thread safe. By moving the calls into the I/O thread, several crash bugs will be fixed.
* input/soup: wait for _cancel_message() to completeMax Kellermann2011-09-16
| | | | | Add the "complete" attribute, and set it in _session_callback(). _close() waits for it to become true.
* input/soup: return real GErrors to the callerMax Kellermann2011-09-16
| | | | | Add attribute postponed_error, pass this GError to the caller.
* input/soup: set the "ready" flag on failureMax Kellermann2011-09-16
| | | | Fix deadlock.
* input/soup: remove redundant flag "ready"Max Kellermann2011-09-16
| | | | | We'll add proper locking now, and there's no need to carry this duplicate flag.
* input/soup: report failure in _read()Max Kellermann2011-09-16
| | | | To report failures to callers who don't use _buffer().
* input/soup: unlock before cancelling the soup messageMax Kellermann2011-09-16
| | | | Avoid recursive deadlock in _session_callback().
* input/curl: wait some more before resuming the streamMax Kellermann2011-09-16
| | | | | Pausing and resuming after every little chunk adds lots of overhead. Add a lower level for resuming the stream.
* input/curl: clear the "paused" flag before resumingMax Kellermann2011-09-16
| | | | | curl_easy_pause(CURLPAUSE_CONT) may have added enough data to go into pause again.
* input/curl: remove _schedule_update()Max Kellermann2011-09-16
| | | | | Call _update_fds() directly. This is possible because it's only called from within the I/O thread.
* input/curl: unlock the mutex for io_thread_call()Max Kellermann2011-09-16
| | | | Fix deadlock.
* input/soup: fix "unused local variable" warningsMax Kellermann2011-09-16
|
* Merge branch 'v0.16.x'Max Kellermann2011-09-16
|\
| * input/curl, output/pulse: fix "unused local variable" warningsMax Kellermann2011-09-16
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-09-15
|\| | | | | | | | | | | Conflicts: NEWS configure.ac
| * input/rewind: copy the MIME type only onceMax Kellermann2011-09-15
| | | | | | | | Reduce heap usage by reducing the number of malloc() / free() calls.
* | input/curl: per-request mutex/condMax Kellermann2011-09-15
| | | | | | | | | | | | | | The global data structures are now lock-free, because they are accessed only from the I/O thread. By using per-request locks, we have finer grained locking, preparing for locks shared with the client.
* | input/curl: move all libCURL calls to the I/O threadMax Kellermann2011-09-15
| | | | | | | | | | | | This adds some overheads for indirect calls to the I/O thread, but reduces the amount of global locks. Next step will be switching to per-request locks.
* | input/file: return NULL instead of "false"Max Kellermann2011-09-15
| |
* | input/curl: don't set "ready" on _easy_free()Max Kellermann2011-09-15
| | | | | | | | | | Move the assignment to _request_done(), right before the GCond is signalled. This might fix spurious wakeups.
* | input/curl: add assertions on io_thread_inside()Max Kellermann2011-09-15
| |
* | input/curl: merge _request_abort() into _request_done()Max Kellermann2011-09-15
| | | | | | | | | | This is a trivial function. Merge some duplicate code, e.g. the g_cond_broadcast() call.
* | input/curl: API documentation fixMax Kellermann2011-09-15
| |
* | input_plugin: add method update()Max Kellermann2011-09-14
| | | | | | | | | | Update the struct attributes, important for facades like the "rewind" plugin. To replace buffer().
* | input_stream: move input_stream_init(), _deinit() to _internal.cMax Kellermann2011-09-14
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-09-01
|\| | | | | | | | | | | Conflicts: configure.ac src/output_control.c
| * input/curl: implement a hard-coded timeout of 10 secondsMax Kellermann2011-08-26
| | | | | | | | | | Be sure to stop the operation at some point when the server isn't responding.
* | input/curl: use the I/O threadMax Kellermann2011-08-25
| | | | | | | | | | Background buffering and better timeout handling. This patch sort of obsoletes the input_plugin method buffer().
* | input/curl: eliminate attribute "eof"Max Kellermann2011-08-25
| | | | | | | | | | | | Assume the flag is true when the "easy" CURL handle is NULL. That way, we don't need to keep track if CURL has sent us the "DONE" information yet.
* | input/curl: release "easy" CURL handle as early as possibleMax Kellermann2011-08-25
| | | | | | | | | | | | Release it immediately when end-of-file has been reached. We don't need that handle anymore, because the rest is delivered from the buffers.
* | input/curl: move code to input_curl_flush_buffers()Max Kellermann2011-08-25
| | | | | | | | Allow closing the handle while preserving the remaining buffers.
* | input/curl: pass input_curl to fill_buffer()Max Kellermann2011-08-25
| | | | | | | | Remove a cast.
* | input/curl: set GError when init() failsMax Kellermann2011-08-25
| | | | | | | | Let the caller know what happened, he's responsible for logging.
* | input/soup: free all resources in method close()Max Kellermann2011-08-24
| |
* | input/soup: new input plugin based on libsoupMax Kellermann2011-08-24
| | | | | | | | | | | | | | | | To demonstrate the new I/O thread. libsoup is well-integrated into the GLib main loop, which made this plugin pretty easy to write. As a side effect, we have to initialize the I/O thread in all debug programs that use the input API.
* | input/curl: remove obsolete function input_curl_reinit()Max Kellermann2011-08-24
| |
* | Merge branch 'v0.16.x'Max Kellermann2011-08-24
|\|
| * input/curl: limit the receive buffer sizeMax Kellermann2011-08-23
| |
* | decoder/ffmpeg: use AVIO_FLAG_READ on newer ffmpeg versionsSkottish2011-07-03
| | | | | | | | | | FFmpeg/libav have dropped AVIO_RDONLY in favor of AVIO_FLAG_READ. This patch fixes that in MPD.
* | input/ffmpeg: use the new AVIOContext APIMax Kellermann2011-05-09
| | | | | | | | URLContext is deprecated.
* | decoder/ffmpeg: drop support for pre-0.5 ffmpegAnton Khirnov2011-04-12
| | | | | | | | | | All modern distros ship 0.5, so there's no need to support old and buggy ffmpeg versions.
* | input: Add despotify input pluginSimon Kagstrom2011-03-29
| | | | | | | | | | | | | | | | | | | | For Spotify tracks. Uses a spt URI, so with mpc you can play tracks with e.g., mpc add spt://spotify:track:5qENVY0YEdZ7fiuOax70x1 mpc play Uses the pcm_decoder_plugin for the output
* | copyright year 2011Max Kellermann2011-01-29
| |
* | input/curl: enable CURLOPT_NETRCIan Zimmerman2011-01-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I wanted mpd to play a mp3 stream from a music website. The stream is only available to subscribers, which restriction is enforced through normal http authentication. However, the URL I get from the website is not the final URL of the stream, but a generic URL which points to the real one through a redirect (code 301). Thus, I cannot predict the final URL, and so I cannot use the username:password hack to force the authentication, and mpd (libcurl on mpds behalf) fails to grab the stream. libcurl allows the option CURLOPT_NETRC to be set and then the credentials can be stored in the good old .netrc file (in this case it would be ~mpd/.netrc, of course). But mpd doesn't set this option. I think it should.
* | input/cdio_paranoia: add module nameMax Kellermann2011-01-08
| | | | | | | | | | Seems like we forgot to give this module a name... this can crash MPD on startup.