source: trunk/demos/spectrum/app/wavfile.cpp@ 865

Last change on this file since 865 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 5.1 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
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
47struct chunk
48{
49 char id[4];
50 quint32 size;
51};
52
53struct RIFFHeader
54{
55 chunk descriptor; // "RIFF"
56 char type[4]; // "WAVE"
57};
58
59struct 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
70struct DATAHeader
71{
72 chunk descriptor;
73};
74
75struct CombinedHeader
76{
77 RIFFHeader riff;
78 WAVEHeader wave;
79};
80
81WavFile::WavFile(QObject *parent)
82 : QFile(parent)
83 , m_headerLength(0)
84{
85
86}
87
88bool WavFile::open(const QString &fileName)
89{
90 close();
91 setFileName(fileName);
92 return QFile::open(QIODevice::ReadOnly) && readHeader();
93}
94
95const QAudioFormat &WavFile::fileFormat() const
96{
97 return m_fileFormat;
98}
99
100qint64 WavFile::headerLength() const
101{
102return m_headerLength;
103}
104
105bool WavFile::readHeader()
106{
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)) {
116
117 // Read off remaining header information
118 DATAHeader dataHeader;
119
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 }
129
130 if (read((char*)&dataHeader, sizeof(DATAHeader)) != sizeof(DATAHeader))
131 return false;
132
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);
138
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;
147 }
148 }
149 m_headerLength = pos();
150 return result;
151}
Note: See TracBrowser for help on using the repository browser.