diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-02-21 21:42:44 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-04-19 23:04:32 +0100 |
| commit | 89aa9d4ba69e471949f791cdafe4ae20cea554d2 (patch) | |
| tree | a8260555268d392292775a2851d8780e5612091b /test/resampler_test.cc | |
| parent | 7db99ef207c68910ee96a3e806c9832e8f90b219 (diff) | |
Various fixes to push audio vaguely in the right direction.
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 6f102dd4c..6f3e3fef1 100644 --- a/test/resampler_test.cc +++ b/test/resampler_test.cc @@ -44,7 +44,7 @@ resampler_test_one (int from, int to) for (int64_t i = 0; i < N; i += 1000) { shared_ptr<AudioBuffers> a (new AudioBuffers (1, 1000)); a->make_silent (); - shared_ptr<const AudioBuffers> r = resamp.run (a); + pair<shared_ptr<const AudioBuffers>, Frame> r = resamp.run (a, 0); } } |
