fix for canAllocateChannel
[enigma2.git] / lib / service / servicemp3.h
index bf18e92b60f7b6100dd8cb41ba31a376a538d82a..c08278b835a95960e7e242c6487653ed39ee74aa 100644 (file)
@@ -56,9 +56,16 @@ public:
        RESULT start();
        RESULT stop();
        RESULT pause(ePtr<iPauseableService> &ptr);
-       RESULT seek(ePtr<iSeekableService> &ptr);
-       RESULT audioTracks(ePtr<iAudioTrackSelection> &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; }
+       
                // iPausableService
        RESULT pause();
        RESULT unpause();