diff options
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); } } |
