diff options
author | Max Kellermann <max@duempel.org> | 2009-12-30 23:24:11 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-30 23:24:11 +0100 |
commit | efc885a9dc2e6632ca2a24a0ff52ab51bb1d82d1 (patch) | |
tree | 5ef9fd5214b0b9ffdea14906e45c9cfcb1380837 /src/input_stream.c | |
parent | 333e11d0ebb255a2cd04cfde805e68f257b8a2f5 (diff) | |
parent | 4419e5b90dc229c8839de142e22aeba8336fbbd4 (diff) | |
download | mpd-efc885a9dc2e6632ca2a24a0ff52ab51bb1d82d1.tar.gz mpd-efc885a9dc2e6632ca2a24a0ff52ab51bb1d82d1.tar.xz mpd-efc885a9dc2e6632ca2a24a0ff52ab51bb1d82d1.zip |
Merge vorbis+icy fixes from branch 'v0.15.x'
Conflicts:
Makefile.am
NEWS
configure.ac
src/input/curl_input_plugin.c
src/input_stream.c
Diffstat (limited to 'src/input_stream.c')
-rw-r--r-- | src/input_stream.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/input_stream.c b/src/input_stream.c index 27cf4abda..fda217f0f 100644 --- a/src/input_stream.c +++ b/src/input_stream.c @@ -21,6 +21,7 @@ #include "input_stream.h" #include "input_registry.h" #include "input_plugin.h" +#include "input/rewind_input_plugin.h" #include <glib.h> #include <assert.h> @@ -57,6 +58,8 @@ input_stream_open(struct input_stream *is, const char *url, GError **error_r) assert(is->plugin->eof != NULL); assert(!is->seekable || is->plugin->seek != NULL); + input_rewind_open(is); + return true; } else if (error != NULL) { g_propagate_error(error_r, error); |