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/input/MmsInputPlugin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/input/MmsInputPlugin.cxx') diff --git a/src/input/MmsInputPlugin.cxx b/src/input/MmsInputPlugin.cxx index 934521708..be583e283 100644 --- a/src/input/MmsInputPlugin.cxx +++ b/src/input/MmsInputPlugin.cxx @@ -40,7 +40,7 @@ struct MmsInputStream { bool eof; MmsInputStream(const char *uri, - GMutex *mutex, GCond *cond, + Mutex &mutex, Cond &cond, mmsx_t *_mms) :mms(_mms), eof(false) { input_stream_init(&base, &input_plugin_mms, uri, mutex, cond); @@ -66,7 +66,7 @@ mms_quark(void) static struct input_stream * input_mms_open(const char *url, - GMutex *mutex, GCond *cond, + Mutex &mutex, Cond &cond, GError **error_r) { if (!g_str_has_prefix(url, "mms://") && -- cgit v1.2.3