diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-04-28 13:10:43 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2013-04-28 13:10:43 +0000 |
| commit | 86d896debe9f4a1d9465b06def8cc81c337d935a (patch) | |
| tree | dbeae1d6125325e4470e3e04f40b2f980a4e9e3c /src/plugins/Input/sid/decoder_sid.h | |
| parent | 7681777e32a6c645c2d986f9f70f6de232ae00b1 (diff) | |
| download | qmmp-86d896debe9f4a1d9465b06def8cc81c337d935a.tar.gz qmmp-86d896debe9f4a1d9465b06def8cc81c337d935a.tar.bz2 qmmp-86d896debe9f4a1d9465b06def8cc81c337d935a.zip | |
sid plugin: song length db optimization
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3424 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sid/decoder_sid.h')
| -rw-r--r-- | src/plugins/Input/sid/decoder_sid.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/Input/sid/decoder_sid.h b/src/plugins/Input/sid/decoder_sid.h index 04c2cbaa1..05c70660a 100644 --- a/src/plugins/Input/sid/decoder_sid.h +++ b/src/plugins/Input/sid/decoder_sid.h @@ -24,6 +24,7 @@ #include <qmmp/decoder.h> class sidplayfp; +class SidDatabase; /** @author Ilya Kotov <forkotov02@hotmail.ru> @@ -31,7 +32,7 @@ class sidplayfp; class DecoderSID : public Decoder { public: - DecoderSID(const QString &url); + DecoderSID(SidDatabase *db, const QString &url); virtual ~DecoderSID(); // Standard Decoder API @@ -45,6 +46,7 @@ private: qint64 m_totalTime; QString m_url; sidplayfp *m_player; + SidDatabase *m_db; int m_length; }; |
