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 | #ifndef FREQUENCYSPECTRUM_H
|
---|
42 | #define FREQUENCYSPECTRUM_H
|
---|
43 |
|
---|
44 | #include <QtCore/QVector>
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * Represents a frequency spectrum as a series of elements, each of which
|
---|
48 | * consists of a frequency, an amplitude and a phase.
|
---|
49 | */
|
---|
50 | class FrequencySpectrum {
|
---|
51 | public:
|
---|
52 | FrequencySpectrum(int numPoints = 0);
|
---|
53 |
|
---|
54 | struct Element {
|
---|
55 | Element()
|
---|
56 | : frequency(0.0), amplitude(0.0), phase(0.0), clipped(false)
|
---|
57 | { }
|
---|
58 |
|
---|
59 | /**
|
---|
60 | * Frequency in Hertz
|
---|
61 | */
|
---|
62 | qreal frequency;
|
---|
63 |
|
---|
64 | /**
|
---|
65 | * Amplitude in range [0.0, 1.0]
|
---|
66 | */
|
---|
67 | qreal amplitude;
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * Phase in range [0.0, 2*PI]
|
---|
71 | */
|
---|
72 | qreal phase;
|
---|
73 |
|
---|
74 | /**
|
---|
75 | * Indicates whether value has been clipped during spectrum analysis
|
---|
76 | */
|
---|
77 | bool clipped;
|
---|
78 | };
|
---|
79 |
|
---|
80 | typedef QVector<Element>::iterator iterator;
|
---|
81 | typedef QVector<Element>::const_iterator const_iterator;
|
---|
82 |
|
---|
83 | void reset();
|
---|
84 |
|
---|
85 | int count() const;
|
---|
86 | Element& operator[](int index);
|
---|
87 | const Element& operator[](int index) const;
|
---|
88 | iterator begin();
|
---|
89 | iterator end();
|
---|
90 | const_iterator begin() const;
|
---|
91 | const_iterator end() const;
|
---|
92 |
|
---|
93 | private:
|
---|
94 | QVector<Element> m_elements;
|
---|
95 |
|
---|
96 | };
|
---|
97 |
|
---|
98 | #endif // FREQUENCYSPECTRUM_H
|
---|