add slowmotion / fast forward
[enigma2.git] / lib / service / servicemp3.h
index 558fd81844004fd6a61f4cfd1a2d162063fcb9e5..ac174c4121449c5ed90240137308c1761f83c9ef 100644 (file)
@@ -56,7 +56,14 @@ public:
        RESULT start();
        RESULT stop();
        RESULT pause(ePtr<iPauseableService> &ptr);
-       RESULT seek(ePtr<iSeekableService> &ptr);
+       RESULT setSlowMotion(int ratio);
+       RESULT setFastForward(int ratio);
+
+               // not implemented (yet)
+       RESULT seek(ePtr<iSeekableService> &ptr) { ptr = 0; return -1; }
+       RESULT audioTracks(ePtr<iAudioTrackSelection> &ptr) { ptr = 0; return -1; }
+       RESULT frontendStatusInfo(ePtr<iFrontendStatusInformation> &ptr) { ptr = 0; return -1; }
+       RESULT subServices(ePtr<iSubserviceList> &ptr) { ptr = 0; return -1; }
 
                // iPausableService
        RESULT pause();