diff options
author | phintuka <phintuka> | 2010-02-15 06:39:25 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2010-02-15 06:39:25 +0000 |
commit | c679f1fe7212ace66462b04c5b09d9fe592d8cb5 (patch) | |
tree | a6dc5f76f8b945ec8809a92f4e62e4149213cc21 | |
parent | c096605445faeae1b26974b5d887ec4ec479c589 (diff) | |
download | xineliboutput-c679f1fe7212ace66462b04c5b09d9fe592d8cb5.tar.gz xineliboutput-c679f1fe7212ace66462b04c5b09d9fe592d8cb5.tar.bz2 |
Removed deprecated m_ac3Present and m_spuPresent
-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; |