- hopefully fixed some python/refcount stuff (__deref__ is still evil!)
[enigma2.git] / lib / dvb / demux.h
index c7fa5bc0e3727f7d70e25c44a9944ab3fa91e3e8..d8c1078e52a58cf8f3edee7ad3a32c03514960e1 100644 (file)
@@ -11,7 +11,7 @@ class eDVBDemux: public iDVBDemux
        friend class eDVBAudio;
        friend class eDVBVideo;
 public:
-       DECLARE_REF
+       DECLARE_REF(eDVBDemux);
        eDVBDemux(int adapter, int demux);
        virtual ~eDVBDemux();
        RESULT createSectionReader(eMainloop *context, ePtr<iDVBSectionReader> &reader);
@@ -20,7 +20,7 @@ public:
 
 class eDVBSectionReader: public iDVBSectionReader, public Object
 {
-       DECLARE_REF
+       DECLARE_REF(eDVBSectionReader);
 private:
        int fd;
        Signal1<void, const __u8*> read;