aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/rewind_input_plugin.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* input/rewind: fix assertion failureMax Kellermann2010-11-081-1/+1
| | | | | The assertion added in MPD 0.15.14 was too much, it failed when the MIME type of a stream was NULL.
* input/rewind: remove redundant NULL check before g_free() callMax Kellermann2010-11-051-2/+1
|
* input/rewind: add two assertionsMax Kellermann2010-11-051-0/+3
|
* input/rewind: fix double free bugMax Kellermann2010-11-051-0/+1
| | | | | Duplicate the "mime" attribute of the inner input_stream object, instead of copying the pointer.
* input/rewind: enable for MMSThomas Jansen2010-09-281-2/+10
|
* rewind_input_plugin: Update MIME not only onceThomas Jansen2010-09-231-3/+4
| | | | | | | The assumption that MIME type is set only once is not valid with CURL, as URL redirections may update the MIME type. This fixes bug #3044.
* input/rewind: new input_stream wrapper to allow stream rewindingMax Kellermann2009-12-291-0/+238
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).