summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2006-08-25 08:29:38 +0000
committerphintuka <phintuka>2006-08-25 08:29:38 +0000
commit8072dd1f7ad86c33ed29ecab189fe94c5a80b0d8 (patch)
treea0418bbc81086acc67d8abcc38f77b29d378ffe7
parent86685d0fa8b4cbd051f8196b38c5f595c3ad4b12 (diff)
downloadxineliboutput-8072dd1f7ad86c33ed29ecab189fe94c5a80b0d8.tar.gz
xineliboutput-8072dd1f7ad86c33ed29ecab189fe94c5a80b0d8.tar.bz2
Fixed returning from pmAudioOnlyBlack playmode (audio visualization plugin
was never closed)
-rw-r--r--device.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/device.c b/device.c
index 0c558492..b3798577 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c,v 1.16 2006-08-25 04:03:11 phintuka Exp $
+ * $Id: device.c,v 1.17 2006-08-25 08:29:38 phintuka Exp $
*
*/
@@ -585,6 +585,8 @@ bool cXinelibDevice::SetPlayMode(ePlayMode PlayMode)
TRACE("pmAudioOnlyBlack --> BlankDisplay, NoVideo");
ForEach(m_clients, &cXinelibThread::BlankDisplay);
ForEach(m_clients, &cXinelibThread::SetNoVideo, true);
+ } else {
+ ForEach(m_clients, &cXinelibThread::SetNoVideo, m_RadioStream);
}
return true;