aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-15 12:07:08 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-15 12:07:08 +0000
commit9d8868b11c3ba69d42e68eabf4a3a1e8869ec8ec (patch)
tree0dcfaa9d6df95ddc95cd8224453ed7f43f012632 /lib
parent91eaa14c3fa4ca9596b91d1754976108f3882717 (diff)
downloadenigma2-9d8868b11c3ba69d42e68eabf4a3a1e8869ec8ec.tar.gz
enigma2-9d8868b11c3ba69d42e68eabf4a3a1e8869ec8ec.zip
eAUTable: add stop()
Diffstat (limited to 'lib')
-rw-r--r--lib/dvb/esection.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/dvb/esection.h b/lib/dvb/esection.h
index a5b4c90e..af5c012b 100644
--- a/lib/dvb/esection.h
+++ b/lib/dvb/esection.h
@@ -98,7 +98,12 @@ public:
~eAUTable()
{
- current=next=0;
+ stop();
+ }
+
+ void stop()
+ {
+ current = next = 0;
}
int begin(eMainloop *m, const eDVBTableSpec &spec, ePtr<iDVBDemux> demux)