[767] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[767] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation (qt-info@nokia.com)
|
---|
| 6 | **
|
---|
| 7 | ** This file is part of the examples of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:BSD$
|
---|
| 10 | ** You may use this file under the terms of the BSD license as follows:
|
---|
| 11 | **
|
---|
| 12 | ** "Redistribution and use in source and binary forms, with or without
|
---|
| 13 | ** modification, are permitted provided that the following conditions are
|
---|
| 14 | ** met:
|
---|
| 15 | ** * Redistributions of source code must retain the above copyright
|
---|
| 16 | ** notice, this list of conditions and the following disclaimer.
|
---|
| 17 | ** * Redistributions in binary form must reproduce the above copyright
|
---|
| 18 | ** notice, this list of conditions and the following disclaimer in
|
---|
| 19 | ** the documentation and/or other materials provided with the
|
---|
| 20 | ** distribution.
|
---|
| 21 | ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
|
---|
| 22 | ** the names of its contributors may be used to endorse or promote
|
---|
| 23 | ** products derived from this software without specific prior written
|
---|
| 24 | ** permission.
|
---|
| 25 | **
|
---|
| 26 | ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
---|
| 27 | ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
---|
| 28 | ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
---|
| 29 | ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
---|
| 30 | ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
---|
| 31 | ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
---|
| 32 | ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 33 | ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 34 | ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 35 | ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
---|
| 36 | ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
---|
| 37 | ** $QT_END_LICENSE$
|
---|
| 38 | **
|
---|
| 39 | ****************************************************************************/
|
---|
| 40 |
|
---|
| 41 | #include <QtCore/qendian.h>
|
---|
| 42 | #include <QVector>
|
---|
| 43 | #include <QDebug>
|
---|
| 44 | #include "utils.h"
|
---|
| 45 | #include "wavfile.h"
|
---|
| 46 |
|
---|
| 47 | struct chunk
|
---|
| 48 | {
|
---|
| 49 | char id[4];
|
---|
| 50 | quint32 size;
|
---|
| 51 | };
|
---|
| 52 |
|
---|
| 53 | struct RIFFHeader
|
---|
| 54 | {
|
---|
| 55 | chunk descriptor; // "RIFF"
|
---|
| 56 | char type[4]; // "WAVE"
|
---|
| 57 | };
|
---|
| 58 |
|
---|
| 59 | struct WAVEHeader
|
---|
| 60 | {
|
---|
| 61 | chunk descriptor;
|
---|
| 62 | quint16 audioFormat;
|
---|
| 63 | quint16 numChannels;
|
---|
| 64 | quint32 sampleRate;
|
---|
| 65 | quint32 byteRate;
|
---|
| 66 | quint16 blockAlign;
|
---|
| 67 | quint16 bitsPerSample;
|
---|
| 68 | };
|
---|
| 69 |
|
---|
| 70 | struct DATAHeader
|
---|
| 71 | {
|
---|
| 72 | chunk descriptor;
|
---|
| 73 | };
|
---|
| 74 |
|
---|
| 75 | struct CombinedHeader
|
---|
| 76 | {
|
---|
| 77 | RIFFHeader riff;
|
---|
| 78 | WAVEHeader wave;
|
---|
| 79 | };
|
---|
| 80 |
|
---|
[846] | 81 | WavFile::WavFile(QObject *parent)
|
---|
| 82 | : QFile(parent)
|
---|
| 83 | , m_headerLength(0)
|
---|
[767] | 84 | {
|
---|
| 85 |
|
---|
| 86 | }
|
---|
| 87 |
|
---|
[846] | 88 | bool WavFile::open(const QString &fileName)
|
---|
[767] | 89 | {
|
---|
[846] | 90 | close();
|
---|
| 91 | setFileName(fileName);
|
---|
| 92 | return QFile::open(QIODevice::ReadOnly) && readHeader();
|
---|
[767] | 93 | }
|
---|
| 94 |
|
---|
[846] | 95 | const QAudioFormat &WavFile::fileFormat() const
|
---|
[767] | 96 | {
|
---|
[846] | 97 | return m_fileFormat;
|
---|
[767] | 98 | }
|
---|
| 99 |
|
---|
[846] | 100 | qint64 WavFile::headerLength() const
|
---|
[767] | 101 | {
|
---|
[846] | 102 | return m_headerLength;
|
---|
[767] | 103 | }
|
---|
| 104 |
|
---|
[846] | 105 | bool WavFile::readHeader()
|
---|
[767] | 106 | {
|
---|
[846] | 107 | seek(0);
|
---|
| 108 | CombinedHeader header;
|
---|
| 109 | bool result = read(reinterpret_cast<char *>(&header), sizeof(CombinedHeader)) == sizeof(CombinedHeader);
|
---|
| 110 | if (result) {
|
---|
| 111 | if ((memcmp(&header.riff.descriptor.id, "RIFF", 4) == 0
|
---|
| 112 | || memcmp(&header.riff.descriptor.id, "RIFX", 4) == 0)
|
---|
| 113 | && memcmp(&header.riff.type, "WAVE", 4) == 0
|
---|
| 114 | && memcmp(&header.wave.descriptor.id, "fmt ", 4) == 0
|
---|
| 115 | && (header.wave.audioFormat == 1 || header.wave.audioFormat == 0)) {
|
---|
[767] | 116 |
|
---|
[846] | 117 | // Read off remaining header information
|
---|
| 118 | DATAHeader dataHeader;
|
---|
[767] | 119 |
|
---|
[846] | 120 | if (qFromLittleEndian<quint32>(header.wave.descriptor.size) > sizeof(WAVEHeader)) {
|
---|
| 121 | // Extended data available
|
---|
| 122 | quint16 extraFormatBytes;
|
---|
| 123 | if (peek((char*)&extraFormatBytes, sizeof(quint16)) != sizeof(quint16))
|
---|
| 124 | return false;
|
---|
| 125 | const qint64 throwAwayBytes = sizeof(quint16) + qFromLittleEndian<quint16>(extraFormatBytes);
|
---|
| 126 | if (read(throwAwayBytes).size() != throwAwayBytes)
|
---|
| 127 | return false;
|
---|
| 128 | }
|
---|
[767] | 129 |
|
---|
[846] | 130 | if (read((char*)&dataHeader, sizeof(DATAHeader)) != sizeof(DATAHeader))
|
---|
| 131 | return false;
|
---|
[767] | 132 |
|
---|
[846] | 133 | // Establish format
|
---|
| 134 | if (memcmp(&header.riff.descriptor.id, "RIFF", 4) == 0)
|
---|
| 135 | m_fileFormat.setByteOrder(QAudioFormat::LittleEndian);
|
---|
| 136 | else
|
---|
| 137 | m_fileFormat.setByteOrder(QAudioFormat::BigEndian);
|
---|
[767] | 138 |
|
---|
[846] | 139 | int bps = qFromLittleEndian<quint16>(header.wave.bitsPerSample);
|
---|
| 140 | m_fileFormat.setChannels(qFromLittleEndian<quint16>(header.wave.numChannels));
|
---|
| 141 | m_fileFormat.setCodec("audio/pcm");
|
---|
| 142 | m_fileFormat.setFrequency(qFromLittleEndian<quint32>(header.wave.sampleRate));
|
---|
| 143 | m_fileFormat.setSampleSize(qFromLittleEndian<quint16>(header.wave.bitsPerSample));
|
---|
| 144 | m_fileFormat.setSampleType(bps == 8 ? QAudioFormat::UnSignedInt : QAudioFormat::SignedInt);
|
---|
| 145 | } else {
|
---|
| 146 | result = false;
|
---|
[767] | 147 | }
|
---|
| 148 | }
|
---|
[846] | 149 | m_headerLength = pos();
|
---|
[767] | 150 | return result;
|
---|
| 151 | }
|
---|