summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-02-15 06:39:25 +0000
committerphintuka <phintuka>2010-02-15 06:39:25 +0000
commitc679f1fe7212ace66462b04c5b09d9fe592d8cb5 (patch)
treea6dc5f76f8b945ec8809a92f4e62e4149213cc21
parentc096605445faeae1b26974b5d887ec4ec479c589 (diff)
downloadxineliboutput-c679f1fe7212ace66462b04c5b09d9fe592d8cb5.tar.gz
xineliboutput-c679f1fe7212ace66462b04c5b09d9fe592d8cb5.tar.bz2
Removed deprecated m_ac3Present and m_spuPresent
-rw-r--r--device.c9
-rw-r--r--device.h4
2 files changed, 2 insertions, 11 deletions
diff --git a/device.c b/device.c
index a8029cf7..922a5285 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.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);
diff --git a/device.h b/device.h
index b536a558..463c5e13 100644
--- a/device.h
+++ b/device.h
@@ -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;