aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/demux.cpp
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2004-06-02 01:11:59 +0000
committerFelix Domke <tmbinc@elitedvb.net>2004-06-02 01:11:59 +0000
commit3bad22d5566624804a73b3791980bab2d84c8266 (patch)
treeeb99b584b542cdc2ab264d8439ba771a117f0cb2 /lib/dvb/demux.cpp
parentd6f6602d7cea3a7899990fe79216af7d98d05917 (diff)
downloadenigma2-3bad22d5566624804a73b3791980bab2d84c8266.tar.gz
enigma2-3bad22d5566624804a73b3791980bab2d84c8266.zip
- disabled gui for a moment
- beginning of GDI2 work (region/fill/line works) - fixed smartptr self assignment - finally replaced "int ref" by something with a constructor
Diffstat (limited to 'lib/dvb/demux.cpp')
-rw-r--r--lib/dvb/demux.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp
index be9ac937..4522706d 100644
--- a/lib/dvb/demux.cpp
+++ b/lib/dvb/demux.cpp
@@ -13,7 +13,7 @@
#include <lib/dvb/esection.h>
#include <lib/dvb/decoder.h>
-eDVBDemux::eDVBDemux(int adapter, int demux): adapter(adapter), demux(demux), ref(0)
+eDVBDemux::eDVBDemux(int adapter, int demux): adapter(adapter), demux(demux)
{
}
@@ -58,7 +58,7 @@ void eDVBSectionReader::data(int)
read(data);
}
-eDVBSectionReader::eDVBSectionReader(eDVBDemux *demux, eMainloop *context, RESULT &res): ref(0), demux(demux)
+eDVBSectionReader::eDVBSectionReader(eDVBDemux *demux, eMainloop *context, RESULT &res): demux(demux)
{
char filename[128];
sprintf(filename, "/dev/dvb/adapter%d/demux%d", demux->adapter, demux->demux);