Tempo ramps - remove the concept of bars from tempo sections.
[ardour.git] / libs / ardour / test / audio_region_read_test.cc
index 6a8e3600f1534f6946a9e503a07381bac7ea7ff3..c7ae50afd54437fcab4414494fa0b530a222c31d 100644 (file)
@@ -31,7 +31,7 @@ void
 AudioRegionReadTest::readTest ()
 {
        int const N = 1024;
-       
+
        Sample buf[N];
        Sample mbuf[N];
        float gbuf[N];
@@ -70,7 +70,7 @@ AudioRegionReadTest::readTest ()
        for (int i = 64; i < P; ++i) {
                CPPUNIT_ASSERT_EQUAL (i, int (buf[i]));
        }
-       
+
        /* Offset read: 256 frames from 128 frames into the region, with fades
           (though the fade should not affect it, as it is finished before the read starts)
        */
@@ -78,7 +78,7 @@ AudioRegionReadTest::readTest ()
        for (int i = 0; i < N; ++i) {
                buf[i] = 0;
        }
-       
+
        _ar[0]->read_at (buf, mbuf, gbuf, P + 128, 256, 0);
        check_staircase (buf, 128, 256);
 }