mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
amplitudes greater than 1 when data is being stored in files that are clamped. e.g. when importing hot sources and resampling them when the session file format is integer. git-svn-id: svn://localhost/ardour2/branches/3.0@6879 d708f5d6-7413-0410-9779-e7cbd77b26cf
12 lines
265 B
C++
12 lines
265 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class ResampledSourceTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (ResampledSourceTest);
|
|
CPPUNIT_TEST (seekTest);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void seekTest ();
|
|
};
|