aboutsummaryrefslogtreecommitdiff
path: root/lib/service/servicemp3.h
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-25 14:50:05 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-09-25 14:50:05 +0000
commit95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c (patch)
treedd715989d680ac4aa8e8cecc1dfe69e777b89d4d /lib/service/servicemp3.h
parentc12d79d0320d6d16180b02ce1917b14b63f5278e (diff)
downloadenigma2-95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c.tar.gz
enigma2-95386a54243d4e2e3b4dd85862e8dc6b8fca3b6c.zip
fix pause, introduce rudimentary fast forward and get rid of latency of AudioSelection. however, all of this is far
away from being frame accurate (yet).
Diffstat (limited to 'lib/service/servicemp3.h')
-rw-r--r--lib/service/servicemp3.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/service/servicemp3.h b/lib/service/servicemp3.h
index aa342f4b..17a2599f 100644
--- a/lib/service/servicemp3.h
+++ b/lib/service/servicemp3.h
@@ -109,7 +109,10 @@ public:
};
private:
int m_currentAudioStream;
- int m_currentTrickRate;
+ int m_currentTrickRatio;
+ eTimer m_seekTimeout;
+ void eServiceMP3::seekTimeoutCB();
+ int selectAudioStream(int i);
std::vector<audioStream> m_audioStreams;
friend class eServiceFactoryMP3;
std::string m_filename;