Fix Mediaplayer crash for WAV playback and add basic Audio CD support (needs kernel...
[enigma2.git] / lib / dvb / isection.h
1 #ifndef __dvb_isection_h
2 #define __dvb_isection_h
3
4 #include <lib/dvb/idvb.h>
5
6 class iDVBSectionReader: public iObject
7 {
8 public:
9         virtual RESULT start(const eDVBSectionFilterMask &mask)=0;
10         virtual RESULT stop()=0;
11         virtual RESULT connectRead(const Slot1<void,const __u8*> &read, ePtr<eConnection> &conn)=0;
12         virtual ~iDVBSectionReader() { };
13 };
14
15 #endif