aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mpc/decoder_mpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/mpc/decoder_mpc.h')
-rw-r--r--src/plugins/Input/mpc/decoder_mpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/Input/mpc/decoder_mpc.h b/src/plugins/Input/mpc/decoder_mpc.h
index b4e148706..7a8d3260a 100644
--- a/src/plugins/Input/mpc/decoder_mpc.h
+++ b/src/plugins/Input/mpc/decoder_mpc.h
@@ -43,7 +43,7 @@ struct mpc_data
class DecoderMPC : public Decoder
{
public:
- DecoderMPC(QObject *, DecoderFactory *, QIODevice *, Output *);
+ DecoderMPC(QIODevice *i);
virtual ~DecoderMPC();
struct mpc_data *data()
@@ -55,10 +55,10 @@ public:
bool initialize();
qint64 totalTime();
int bitrate();
+ qint64 read(char *audio, qint64 maxSize);
+ void seek(qint64 time);
private:
- virtual qint64 readAudio(char *audio, qint64 maxSize);
- void seekAudio(qint64 time);
struct mpc_data *m_data;
long m_len;