aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/sndfile/decoder_sndfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/sndfile/decoder_sndfile.h')
-rw-r--r--src/plugins/Input/sndfile/decoder_sndfile.h4
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;
};