add function to remove single service,
[enigma2.git] / lib / dvb / idvb.h
index f4e28d2b4b3910e8853a9ba84fa1e0519ed179fd..aa4d4bb2c8c6e965ef52e3eb56f15c3611f68fdf 100644 (file)
@@ -244,8 +244,8 @@ public:
                dxNoSDT=1,    // don't get SDT
                dxDontshow=2,
                dxHoldName=8,
-               dxNewFound=64, // found in prev scan
 #endif
+               dxNewFound=64,
                dxNoDVB=4  // dont use PMT for this service ( use cached pids )
        };
 
@@ -293,7 +293,8 @@ public:
                tChannelID,
                tAND,
                tOR,
-               tAny
+               tAny,
+               tFlags
        };
        
        int m_type;
@@ -315,6 +316,11 @@ public:
 class iDVBChannelList: public iObject
 {
 public:
+       virtual RESULT removeService(eServiceReferenceDVB service)=0;
+       virtual RESULT removeServices(eDVBChannelID chid=eDVBChannelID(), unsigned int orb_pos=0xFFFFFFFF)=0;
+       virtual RESULT addFlag(eServiceReferenceDVB service, unsigned int flagmask=0xFFFFFFFF)=0;
+       virtual RESULT removeFlag(eServiceReferenceDVB service, unsigned int flagmask=0xFFFFFFFF)=0;
+       virtual RESULT removeFlags(unsigned int flagmask, eDVBChannelID chid=eDVBChannelID(), unsigned int orb_pos=0xFFFFFFFF)=0;
        virtual RESULT addChannelToList(const eDVBChannelID &id, iDVBFrontendParameters *feparm)=0;
        virtual RESULT removeChannel(const eDVBChannelID &id)=0;