summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-03-05 23:10:16 +0000
committerCarl Hetherington <cth@carlh.net>2013-03-05 23:10:16 +0000
commit18614dda0d53b713ace5ad1df57298d049dba87f (patch)
treee68887db77ec57a2de344f8230b0e801030bdca5 /test
parent8fa7b8c13a76bd54207156de7bb0d09316bad379 (diff)
Split timed from untimed sinks / sources. Should produce same output, in theory.
Diffstat (limited to 'test')
-rw-r--r--test/test.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/test.cc b/test/test.cc
index 15c34ca78..b2af8ab22 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -273,7 +273,8 @@ do_positive_delay_line_test (int delay_length, int data_length)
}
/* This only works because the delay line modifies the parameter */
- d.process_audio (data);
+ /* XXX: timestamp is wrong */
+ d.process_audio (data, 0);
returned += data->frames ();
for (int j = 0; j < data->frames(); ++j) {
@@ -316,7 +317,8 @@ do_negative_delay_line_test (int delay_length, int data_length)
}
/* This only works because the delay line modifies the parameter */
- d.process_audio (data);
+ /* XXX: timestamp is wrong */
+ d.process_audio (data, 0);
returned += data->frames ();
for (int j = 0; j < data->frames(); ++j) {