various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / libs / rubberband / src / SilentAudioCurve.cpp
blob2bc8bdcf5f75a2b7b945a9f3f7422ed3277ef319
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
3 /*
4 Rubber Band
5 An audio time-stretching and pitch-shifting library.
6 Copyright 2007-2008 Chris Cannam.
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License as
10 published by the Free Software Foundation; either version 2 of the
11 License, or (at your option) any later version. See the file
12 COPYING included with this distribution for more information.
15 #include "SilentAudioCurve.h"
17 #include <cmath>
19 namespace RubberBand
22 SilentAudioCurve::SilentAudioCurve(size_t sampleRate, size_t windowSize) :
23 AudioCurve(sampleRate, windowSize)
27 SilentAudioCurve::~SilentAudioCurve()
31 void
32 SilentAudioCurve::reset()
36 void
37 SilentAudioCurve::setWindowSize(size_t newSize)
39 m_windowSize = newSize;
42 float
43 SilentAudioCurve::process(const float *R__ mag, size_t)
45 const int hs = m_windowSize / 2;
46 static float threshold = powf(10.f, -6);
48 for (int i = 0; i <= hs; ++i) {
49 if (mag[i] > threshold) return 0.f;
52 return 1.f;
55 float
56 SilentAudioCurve::processDouble(const double *R__ mag, size_t)
58 const int hs = m_windowSize / 2;
59 static double threshold = pow(10.0, -6);
61 for (int i = 0; i <= hs; ++i) {
62 if (mag[i] > threshold) return 0.f;
65 return 1.f;