aboutsummaryrefslogtreecommitdiff
path: root/lib/dvb/decoder.h
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-08-15 23:44:52 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2005-08-15 23:44:52 +0000
commit7544e052e6ed6a5d1e0fd783bd04f4b8aa0d45ce (patch)
tree9aecb1687e349b8a2ccf8f2151be6610a40efdaf /lib/dvb/decoder.h
parent9276c315058a82481938d336912151f7ef58df1b (diff)
downloadenigma2-7544e052e6ed6a5d1e0fd783bd04f4b8aa0d45ce.tar.gz
enigma2-7544e052e6ed6a5d1e0fd783bd04f4b8aa0d45ce.zip
fix block artifacts when zap with pallas/vulcan hardware
Diffstat (limited to 'lib/dvb/decoder.h')
-rw-r--r--lib/dvb/decoder.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/dvb/decoder.h b/lib/dvb/decoder.h
index 67a8c508..df639551 100644
--- a/lib/dvb/decoder.h
+++ b/lib/dvb/decoder.h
@@ -14,6 +14,10 @@ public:
eDVBAudio(eDVBDemux *demux, int dev);
int startPid(int pid);
void stop();
+#if HAVE_DVB_API_VERSION < 3
+ void start();
+ void stopPid();
+#endif
virtual ~eDVBAudio();
};
@@ -27,6 +31,10 @@ public:
eDVBVideo(eDVBDemux *demux, int dev);
int startPid(int pid);
void stop();
+#if HAVE_DVB_API_VERSION < 3
+ void start();
+ void stopPid();
+#endif
virtual ~eDVBVideo();
};