Mercurial > hg > qm-dsp
comparison dsp/rateconversion/Resampler.cpp @ 375:ad21307eaf99
Integrate resampler and tests into build system etc
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 21 Oct 2013 09:40:22 +0100 |
parents | 3e5f13ac984f |
children | edb86e0d850c |
comparison
equal
deleted
inserted
replaced
374:3e5f13ac984f | 375:ad21307eaf99 |
---|---|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
2 /* | |
3 QM DSP Library | |
4 | |
5 Centre for Digital Music, Queen Mary, University of London. | |
6 This file by Chris Cannam. | |
7 | |
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. | |
13 */ | |
2 | 14 |
3 #include "Resampler.h" | 15 #include "Resampler.h" |
4 | 16 |
5 #include "qm-dsp/maths/MathUtilities.h" | 17 #include "maths/MathUtilities.h" |
6 #include "qm-dsp/base/KaiserWindow.h" | 18 #include "base/KaiserWindow.h" |
7 #include "qm-dsp/base/SincWindow.h" | 19 #include "base/SincWindow.h" |
8 #include "qm-dsp/thread/Thread.h" | 20 #include "thread/Thread.h" |
9 | 21 |
10 #include <iostream> | 22 #include <iostream> |
11 #include <vector> | 23 #include <vector> |
12 #include <map> | 24 #include <map> |
13 #include <cassert> | 25 #include <cassert> |