annotate src/dsp/KaiserWindow.h @ 196:da283326bcd3 tip master

Update plugin versions in RDF
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 28 Feb 2020 09:43:02 +0000
parents 433e3aac9e52
children
rev   line source
c@119 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
c@119 2 /*
c@119 3 Constant-Q library
c@119 4 Copyright (c) 2013-2014 Queen Mary, University of London
c@119 5
c@119 6 Permission is hereby granted, free of charge, to any person
c@119 7 obtaining a copy of this software and associated documentation
c@119 8 files (the "Software"), to deal in the Software without
c@119 9 restriction, including without limitation the rights to use, copy,
c@119 10 modify, merge, publish, distribute, sublicense, and/or sell copies
c@119 11 of the Software, and to permit persons to whom the Software is
c@119 12 furnished to do so, subject to the following conditions:
c@119 13
c@119 14 The above copyright notice and this permission notice shall be
c@119 15 included in all copies or substantial portions of the Software.
c@119 16
c@119 17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
c@119 18 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
c@119 19 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
c@119 20 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
c@119 21 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
c@119 22 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
c@119 23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
c@119 24
c@119 25 Except as contained in this notice, the names of the Centre for
c@119 26 Digital Music; Queen Mary, University of London; and Chris Cannam
c@119 27 shall not be used in advertising or otherwise to promote the sale,
c@119 28 use or other dealings in this Software without prior written
c@119 29 authorization.
c@119 30 */
c@119 31
c@119 32 #ifndef KAISER_WINDOW_H
c@119 33 #define KAISER_WINDOW_H
c@119 34
c@119 35 #include <vector>
c@119 36 #include <cmath>
c@119 37
c@179 38 #include "pi.h"
c@179 39
c@119 40 /**
c@119 41 * Kaiser window: A windower whose bandwidth and sidelobe height
c@119 42 * (signal-noise ratio) can be specified. These parameters are traded
c@119 43 * off against the window length.
c@119 44 */
c@119 45 class KaiserWindow
c@119 46 {
c@119 47 public:
c@119 48 struct Parameters {
c@119 49 int length;
c@119 50 double beta;
c@119 51 };
c@119 52
c@119 53 /**
c@119 54 * Construct a Kaiser windower with the given length and beta
c@119 55 * parameter.
c@119 56 */
c@119 57 KaiserWindow(Parameters p) : m_length(p.length), m_beta(p.beta) { init(); }
c@119 58
c@119 59 /**
c@119 60 * Construct a Kaiser windower with the given attenuation in dB
c@119 61 * and transition width in samples.
c@119 62 */
c@119 63 static KaiserWindow byTransitionWidth(double attenuation,
c@119 64 double transition) {
c@119 65 return KaiserWindow
c@119 66 (parametersForTransitionWidth(attenuation, transition));
c@119 67 }
c@119 68
c@119 69 /**
c@119 70 * Construct a Kaiser windower with the given attenuation in dB
c@119 71 * and transition bandwidth in Hz for the given samplerate.
c@119 72 */
c@119 73 static KaiserWindow byBandwidth(double attenuation,
c@119 74 double bandwidth,
c@119 75 double samplerate) {
c@119 76 return KaiserWindow
c@119 77 (parametersForBandwidth(attenuation, bandwidth, samplerate));
c@119 78 }
c@119 79
c@119 80 /**
c@119 81 * Obtain the parameters necessary for a Kaiser window of the
c@119 82 * given attenuation in dB and transition width in samples.
c@119 83 */
c@119 84 static Parameters parametersForTransitionWidth(double attenuation,
c@119 85 double transition);
c@119 86
c@119 87 /**
c@119 88 * Obtain the parameters necessary for a Kaiser window of the
c@119 89 * given attenuation in dB and transition bandwidth in Hz for the
c@119 90 * given samplerate.
c@119 91 */
c@119 92 static Parameters parametersForBandwidth(double attenuation,
c@119 93 double bandwidth,
c@119 94 double samplerate) {
c@119 95 return parametersForTransitionWidth
c@119 96 (attenuation, (bandwidth * 2 * M_PI) / samplerate);
c@119 97 }
c@119 98
c@119 99 int getLength() const {
c@119 100 return m_length;
c@119 101 }
c@119 102
c@119 103 const double *getWindow() const {
c@119 104 return m_window.data();
c@119 105 }
c@119 106
c@119 107 void cut(double *src) const {
c@119 108 cut(src, src);
c@119 109 }
c@119 110
c@119 111 void cut(const double *src, double *dst) const {
c@119 112 for (int i = 0; i < m_length; ++i) {
c@119 113 dst[i] = src[i] * m_window[i];
c@119 114 }
c@119 115 }
c@119 116
c@119 117 private:
c@119 118 int m_length;
c@119 119 double m_beta;
c@119 120 std::vector<double> m_window;
c@119 121
c@119 122 void init();
c@119 123 };
c@119 124
c@119 125 #endif