diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-07-19 07:22:43 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2016-07-19 07:22:43 +0000 |
| commit | 5cc2fd08ae492ac9eba82675326475f88e40d8d2 (patch) | |
| tree | c0aca10334764ba1c9a2befe0f8fdbc40546bf11 /src/plugins/Input/sndfile/decoder_sndfile.h | |
| parent | f7426acabe8ab4f89783bbc042e1724a56dce917 (diff) | |
| download | qmmp-5cc2fd08ae492ac9eba82675326475f88e40d8d2.tar.gz qmmp-5cc2fd08ae492ac9eba82675326475f88e40d8d2.tar.bz2 qmmp-5cc2fd08ae492ac9eba82675326475f88e40d8d2.zip | |
sndfile plugin: using QIODevice-based input
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@6581 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/sndfile/decoder_sndfile.h')
| -rw-r--r-- | src/plugins/Input/sndfile/decoder_sndfile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/Input/sndfile/decoder_sndfile.h b/src/plugins/Input/sndfile/decoder_sndfile.h index 1d3811971..b1a7459cd 100644 --- a/src/plugins/Input/sndfile/decoder_sndfile.h +++ b/src/plugins/Input/sndfile/decoder_sndfile.h @@ -32,7 +32,7 @@ class DecoderSndFile : public Decoder { public: - DecoderSndFile(const QString &path); + DecoderSndFile(QIODevice *input); virtual ~DecoderSndFile(); // Standard Decoder API @@ -51,7 +51,7 @@ private: int m_bitrate; quint32 m_freq; qint64 m_totalTime; - QString m_path; + SF_VIRTUAL_IO m_vio; }; |
