remove __init__.py files and create them on the fly
[enigma2.git] / lib / service / servicemp3.h
index 9f1a8e9fc6a4706c1d071d429aa86510c80c37df..5ba31215ec843fbe3d1f33c8b2594414331891e2 100644 (file)
@@ -56,10 +56,17 @@ public:
        RESULT start();
        RESULT stop();
        RESULT pause(ePtr<iPauseableService> &ptr);
-       RESULT seek(ePtr<iSeekableService> &ptr);
-       RESULT audioTracks(ePtr<iAudioTrackSelection> &ptr);
-       RESULT frontendStatusInfo(ePtr<iFrontendStatusInformation> &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; }
+       RESULT timeshift(ePtr<iTimeshiftService> &ptr) { ptr = 0; return -1; }
+       RESULT cueSheet(ePtr<iCueSheet>& ptr) { ptr = 0; return -1; }
+       
                // iPausableService
        RESULT pause();
        RESULT unpause();