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/DecoderInternal.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DecoderInternal.cxx') diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx index af36e1763..80f0adfd8 100644 --- a/src/DecoderInternal.cxx +++ b/src/DecoderInternal.cxx @@ -57,7 +57,7 @@ need_chunks(struct decoder_control *dc, bool do_wait) if (do_wait) { dc->Wait(); - g_cond_signal(dc->client_cond); + dc->client_cond.signal(); return dc->command; } -- cgit v1.2.3