diff options
Diffstat (limited to 'lib/dvb/demux.cpp')
| -rw-r--r-- | lib/dvb/demux.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/dvb/demux.cpp b/lib/dvb/demux.cpp index d5c7cf73..329eafda 100644 --- a/lib/dvb/demux.cpp +++ b/lib/dvb/demux.cpp @@ -88,6 +88,19 @@ RESULT eDVBDemux::getSTC(pts_t &pts) return 0; } +RESULT eDVBDemux::flush() +{ + // FIXME: implement flushing the PVR queue here. + + m_event(evtFlush); + return 0; +} + +RESULT eDVBDemux::connectEvent(const Slot1<void,int> &event, ePtr<eConnection> &conn) +{ + conn = new eConnection(this, m_event.connect(event)); + return 0; +} void eDVBSectionReader::data(int) { |
