aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mpeg/decoder_mad.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/Input/mpeg/decoder_mad.h')
-rw-r--r--src/plugins/Input/mpeg/decoder_mad.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/Input/mpeg/decoder_mad.h b/src/plugins/Input/mpeg/decoder_mad.h
index b87ed6061..9764e1a70 100644
--- a/src/plugins/Input/mpeg/decoder_mad.h
+++ b/src/plugins/Input/mpeg/decoder_mad.h
@@ -31,7 +31,7 @@
class DecoderMAD : public Decoder
{
public:
- explicit DecoderMAD(QIODevice *i);
+ explicit DecoderMAD(bool crc, QIODevice *i);
virtual ~DecoderMAD();
// standard decoder API
@@ -98,6 +98,7 @@ private:
struct mad_frame m_frame;
struct mad_synth m_synth;
qint64 m_skip_bytes = 0, m_play_bytes = -1;
+ bool m_crc;
};