diff options
-rw-r--r-- | device.c | 9 | ||||
-rw-r--r-- | device.h | 4 |
2 files changed, 2 insertions, 11 deletions
@@ -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.96 2010-02-10 18:44:06 phintuka Exp $ + * $Id: device.c,v 1.97 2010-02-15 06:39:25 phintuka Exp $ * */ @@ -192,9 +192,6 @@ cXinelibDevice::cXinelibDevice() if(xc.remote_mode && xc.listen_port>0) m_clients.Add(m_server = new cXinelibServer(xc.listen_port)); - m_ac3Present = false; - m_spuPresent = false; - memset(m_MetaInfo, 0, sizeof(m_MetaInfo)); m_PlayMode = pmNone; @@ -595,7 +592,6 @@ void cXinelibDevice::SetTvMode(cChannel *Channel) m_TrickSpeed = -1; m_SkipAudio = false; m_AudioCount = 0; - m_spuPresent = false; Clear(); ForEach(m_clients, &cXinelibThread::SetNoVideo, m_RadioStream); @@ -642,9 +638,6 @@ bool cXinelibDevice::SetPlayMode(ePlayMode PlayMode) } #endif - m_ac3Present = false; - m_spuPresent = false; - m_PlayMode = PlayMode; TrickSpeed(-1); @@ -4,7 +4,7 @@ * See the main source file 'xineliboutput.c' for copyright information and * how to reach the author. * - * $Id: device.h,v 1.52 2010-02-03 11:44:05 phintuka Exp $ + * $Id: device.h,v 1.53 2010-02-15 06:39:25 phintuka Exp $ * */ @@ -225,8 +225,6 @@ class cXinelibDevice : public cDevice // Stream data private: - bool m_ac3Present; - bool m_spuPresent; bool m_RadioStream; int m_AudioCount; bool m_SkipAudio; |