From 6f3d70b5e24cebbd6fd8c3a665a801628ef912ff Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 27 Jan 2013 17:20:50 +0100 Subject: DecoderControl, InputStream: use Mutex/Cond instead of GMutex/GCond --- src/PlaylistAny.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/PlaylistAny.cxx') diff --git a/src/PlaylistAny.cxx b/src/PlaylistAny.cxx index 5c3073682..3f6733f0b 100644 --- a/src/PlaylistAny.cxx +++ b/src/PlaylistAny.cxx @@ -30,7 +30,7 @@ extern "C" { #include static struct playlist_provider * -playlist_open_remote(const char *uri, GMutex *mutex, GCond *cond, +playlist_open_remote(const char *uri, Mutex &mutex, Cond &cond, struct input_stream **is_r) { assert(uri_has_scheme(uri)); @@ -65,7 +65,7 @@ playlist_open_remote(const char *uri, GMutex *mutex, GCond *cond, } struct playlist_provider * -playlist_open_any(const char *uri, GMutex *mutex, GCond *cond, +playlist_open_any(const char *uri, Mutex &mutex, Cond &cond, struct input_stream **is_r) { return uri_has_scheme(uri) -- cgit v1.2.3