X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/391f7559e77cf98ea3b5a1fba94a8fa6f4307da8..7a0e4749e8bf580370bd23d9b450763d9e917909:/lib/service/servicemp3.cpp diff --git a/lib/service/servicemp3.cpp b/lib/service/servicemp3.cpp index 8f999471..27a010fb 100644 --- a/lib/service/servicemp3.cpp +++ b/lib/service/servicemp3.cpp @@ -146,17 +146,40 @@ RESULT eServiceMP3::stop() return 0; } -RESULT eServiceMP3::pause(ePtr &ptr) { ptr=this; return 0; } -RESULT eServiceMP3::seek(ePtr &ptr) { ptr = 0; return -1; } +RESULT eServiceMP3::pause(ePtr &ptr) +{ + ptr=this; + return 0; +} -RESULT eServiceMP3::frontendStatusInfo(ePtr &ptr) { ptr = 0; return -1; } -RESULT eServiceMP3::audioTracks(ePtr &ptr) { ptr = 0; return -1; }; +RESULT eServiceMP3::setSlowMotion(int ratio) +{ + return -1; +} +RESULT eServiceMP3::setFastForward(int ratio) +{ + return -1; +} + // iPausableService -RESULT eServiceMP3::pause() { printf("mp3 pauses!\n"); return 0; } -RESULT eServiceMP3::unpause() { printf("mp3 unpauses!\n"); return 0; } +RESULT eServiceMP3::pause() +{ + printf("mp3 pauses!\n"); + return 0; +} -RESULT eServiceMP3::info(ePtr&i) { i = this; return 0; } +RESULT eServiceMP3::unpause() +{ + printf("mp3 unpauses!\n"); + return 0; +} + +RESULT eServiceMP3::info(ePtr&i) +{ + i = this; + return 0; +} RESULT eServiceMP3::getName(std::string &name) {