tests/check/elements/speexresample.c: Make the unit test a bit faster to prevent timeouts, especially with valgrind.

Original commit message from CVS:
* tests/check/elements/speexresample.c: (GST_START_TEST):
Make the unit test a bit faster to prevent timeouts, especially
with valgrind.
This commit is contained in:
Sebastian Dröge 2008-11-22 15:02:15 +00:00
parent e1806aa1ad
commit b31ce48a0d
2 changed files with 6 additions and 12 deletions

View file

@ -1,3 +1,9 @@
2008-11-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* tests/check/elements/speexresample.c: (GST_START_TEST):
Make the unit test a bit faster to prevent timeouts, especially
with valgrind.
2008-11-22 Sebastian Dröge <sebastian.droege@collabora.co.uk> 2008-11-22 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* gst/mxf/mxfdemux.c: (gst_mxf_demux_push_src_event), * gst/mxf/mxfdemux.c: (gst_mxf_demux_push_src_event),

View file

@ -655,33 +655,21 @@ GST_START_TEST (test_pipelines)
for (quality = 0; quality < 11; quality += 5) { for (quality = 0; quality < 11; quality += 5) {
test_pipeline (8, FALSE, 44100, 48000, quality); test_pipeline (8, FALSE, 44100, 48000, quality);
test_pipeline (8, FALSE, 48000, 44100, quality); test_pipeline (8, FALSE, 48000, 44100, quality);
test_pipeline (8, FALSE, 40000, 80000, quality);
test_pipeline (8, FALSE, 80000, 40000, quality);
test_pipeline (16, FALSE, 44100, 48000, quality); test_pipeline (16, FALSE, 44100, 48000, quality);
test_pipeline (16, FALSE, 48000, 44100, quality); test_pipeline (16, FALSE, 48000, 44100, quality);
test_pipeline (16, FALSE, 40000, 80000, quality);
test_pipeline (16, FALSE, 80000, 40000, quality);
test_pipeline (24, FALSE, 44100, 48000, quality); test_pipeline (24, FALSE, 44100, 48000, quality);
test_pipeline (24, FALSE, 48000, 44100, quality); test_pipeline (24, FALSE, 48000, 44100, quality);
test_pipeline (24, FALSE, 40000, 80000, quality);
test_pipeline (24, FALSE, 80000, 40000, quality);
test_pipeline (32, FALSE, 44100, 48000, quality); test_pipeline (32, FALSE, 44100, 48000, quality);
test_pipeline (32, FALSE, 48000, 44100, quality); test_pipeline (32, FALSE, 48000, 44100, quality);
test_pipeline (32, FALSE, 40000, 80000, quality);
test_pipeline (32, FALSE, 80000, 40000, quality);
test_pipeline (32, TRUE, 44100, 48000, quality); test_pipeline (32, TRUE, 44100, 48000, quality);
test_pipeline (32, TRUE, 48000, 44100, quality); test_pipeline (32, TRUE, 48000, 44100, quality);
test_pipeline (32, TRUE, 40000, 80000, quality);
test_pipeline (32, TRUE, 80000, 40000, quality);
test_pipeline (64, TRUE, 44100, 48000, quality); test_pipeline (64, TRUE, 44100, 48000, quality);
test_pipeline (64, TRUE, 48000, 44100, quality); test_pipeline (64, TRUE, 48000, 44100, quality);
test_pipeline (64, TRUE, 40000, 80000, quality);
test_pipeline (64, TRUE, 80000, 40000, quality);
} }
} }