aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/plugins/Input/mad/decodermadfactory.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/Input/mad/decodermadfactory.cpp b/src/plugins/Input/mad/decodermadfactory.cpp
index b4e957b0e..a14eb17ea 100644
--- a/src/plugins/Input/mad/decodermadfactory.cpp
+++ b/src/plugins/Input/mad/decodermadfactory.cpp
@@ -84,6 +84,9 @@ bool DecoderMADFactory::canDecode(QIODevice *input) const
if (input->peek(buf,sizeof(buf)) == sizeof(buf))
{
+ if (!memcmp(buf + 8, "WAVE", 4) && !memcmp(buf + 20, "U" ,1))
+ return true;
+
struct mad_stream stream;
struct mad_header header;
int dec_res;