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