ardour/libs/ardour/test/resampled_source_test.cc
Tim Mayberry dbcc1f1d39 Rename PBD::find_file_in_search_path to just PBD::find_file
saves a bit of typing and not necessary if you look at how it is used.

Conflicts:
	gtk2_ardour/about.cc
	gtk2_ardour/session_dialog.cc
	libs/pbd/system_exec.cc
2014-08-17 18:36:02 -04:00

43 lines
1 KiB
C++

// this is included first to avoid Searchpath definition on windows
#include "test_common.h"
#include "pbd/file_utils.h"
#include "ardour/resampled_source.h"
#include "ardour/sndfileimportable.h"
#include "resampled_source_test.h"
CPPUNIT_TEST_SUITE_REGISTRATION (ResampledSourceTest);
using namespace std;
using namespace ARDOUR;
using namespace PBD;
void
ResampledSourceTest::seekTest ()
{
std::string test_file_path;
const string test_filename = "test.wav";
CPPUNIT_ASSERT (find_file (test_search_path (), test_filename, test_file_path));
boost::shared_ptr<SndFileImportableSource> s (new SndFileImportableSource (test_file_path));
ResampledImportableSource r (s, 48000, SrcBest);
/* Make sure that seek (0) has the desired effect, ie that
given the same input you get the same output after seek (0)
as you got when the Source was newly created.
*/
Sample A[64];
r.read (A, 64);
r.seek (0);
Sample B[64];
r.read (B, 64);
for (int i = 0; i < 64; ++i) {
CPPUNIT_ASSERT (A[i] == B[i]);
}
}