diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-10 17:15:15 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-10 17:15:15 +0100 |
| commit | 6fdb2d2094c50a2bc324f4094473c2107d2ea943 (patch) | |
| tree | d20010fa6cef2a622af5a2442ba660591f75afcc /lib/dvb/idvb.h | |
| parent | 96844b5bd92b331390597061efe140172979c34d (diff) | |
| download | enigma2-6fdb2d2094c50a2bc324f4094473c2107d2ea943.tar.gz enigma2-6fdb2d2094c50a2bc324f4094473c2107d2ea943.zip | |
add new playSource / stopSource interface to iDVBChannel and eDVBChannel
Diffstat (limited to 'lib/dvb/idvb.h')
| -rw-r--r-- | lib/dvb/idvb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/dvb/idvb.h b/lib/dvb/idvb.h index f1217a6a..3996b6b6 100644 --- a/lib/dvb/idvb.h +++ b/lib/dvb/idvb.h @@ -15,6 +15,7 @@ #include <lib/base/object.h> #include <lib/base/ebase.h> #include <lib/base/elock.h> +#include <lib/base/idatasource.h> #include <lib/service/service.h> #include <libsig_comp.h> #include <connection.h> @@ -605,6 +606,10 @@ public: virtual RESULT playFile(const char *file) = 0; virtual void stopFile() = 0; + /* new interface */ + virtual RESULT playSource(ePtr<iDataSource> &source, const char *priv=NULL) = 0; + virtual void stopSource() = 0; + virtual void setCueSheet(eCueSheet *cuesheet) = 0; virtual RESULT getLength(pts_t &pts) = 0; |
