X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/1a2b0a4379ee3e9d16108c52abdadc9bb85675c1..68276231e2e0d6e189572fec5cb1c1ff0c00a1a3:/lib/service/iservice.h diff --git a/lib/service/iservice.h b/lib/service/iservice.h index 24c2e341..d80733df 100644 --- a/lib/service/iservice.h +++ b/lib/service/iservice.h @@ -593,7 +593,8 @@ class iTimeshiftService: public iObject #endif public: virtual RESULT startTimeshift()=0; - virtual RESULT stopTimeshift()=0; + virtual RESULT stopTimeshift(bool swToLive=true)=0; + virtual RESULT setNextPlaybackFile(const char *fn)=0; // not needed by our internal timeshift.. but external plugin... virtual int isTimeshiftActive()=0; /* this essentially seeks to the relative end of the timeshift buffer */ @@ -719,6 +720,9 @@ public: /* for transferring a service... */ virtual SWIG_VOID(RESULT) getListOfFilenames(std::list &SWIG_OUTPUT)=0; + + /* a blocking call to reindex a file */ + virtual int reindex() = 0; // TODO: additional stuff, like a conversion interface? };