diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-09-09 09:50:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-09-09 09:50:48 +0100 |
| commit | f26af8112b03b5233eb5239defd11a7428b705ad (patch) | |
| tree | a7385c484829f531bbbc35b3f38235035e160a92 /test/resampler_test.cc | |
| parent | 272ce54d159a53be22f592922913901cfc673097 (diff) | |
Use SRC_LINEAR for speed when analysing audio (#685).
Diffstat (limited to 'test/resampler_test.cc')
| -rw-r--r-- | test/resampler_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/resampler_test.cc b/test/resampler_test.cc index d633f75c1..f536d6547 100644 --- a/test/resampler_test.cc +++ b/test/resampler_test.cc @@ -33,7 +33,7 @@ using boost::shared_ptr; static void resampler_test_one (int from, int to) { - Resampler resamp (from, to, 1); + Resampler resamp (from, to, 1, false); /* 3 hours */ int64_t const N = int64_t (from) * 60 * 60 * 3; |
