X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fresampler_test.cc;fp=test%2Fresampler_test.cc;h=fb4b98861c18afc65a421b3a075c4d9571a4eda1;hb=a8a0dfd1b21de6c0facf965ab119833ff6f790bf;hp=cb5cddc9e72a6600017148935234b7711942398f;hpb=e669b562937786bf5b771c927cc03a4074b01be8;p=dcpomatic.git diff --git a/test/resampler_test.cc b/test/resampler_test.cc index cb5cddc9e..fb4b98861 100644 --- a/test/resampler_test.cc +++ b/test/resampler_test.cc @@ -23,16 +23,14 @@ * to the number of samples it generates. */ +#include #include "lib/audio_buffers.h" #include "lib/resampler.h" -#include -#include #include using std::pair; using std::cout; using boost::shared_ptr; -using boost::make_shared; static void resampler_test_one (int from, int to) @@ -44,7 +42,7 @@ resampler_test_one (int from, int to) /* XXX: no longer checks anything */ for (int64_t i = 0; i < N; i += 1000) { - shared_ptr a = make_shared (1, 1000); + shared_ptr a (new AudioBuffers (1, 1000)); a->make_silent (); shared_ptr r = resamp.run (a); }