diff options
author | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-25 16:37:50 +0000 |
---|---|---|
committer | Sebastian Dröge <slomo@circular-chaos.org> | 2008-11-25 16:37:50 +0000 |
commit | 7615d3d8d34a5439fe63eec69580cfcdeebbd8ce (patch) | |
tree | 5d204d45d4eaa7566abbd8dcb53c8d92f00681a0 /tests/check/elements | |
parent | 67360318b410047a280b86c0f589347b61ffa48d (diff) | |
download | gst-plugins-bad-7615d3d8d34a5439fe63eec69580cfcdeebbd8ce.tar.gz gst-plugins-bad-7615d3d8d34a5439fe63eec69580cfcdeebbd8ce.tar.bz2 gst-plugins-bad-7615d3d8d34a5439fe63eec69580cfcdeebbd8ce.zip |
tests/check/elements/speexresample.c: Make unit test again faster to prevent timeouts with valgrind.
Original commit message from CVS:
* tests/check/elements/speexresample.c: (test_pipeline):
Make unit test again faster to prevent timeouts with valgrind.
Diffstat (limited to 'tests/check/elements')
-rw-r--r-- | tests/check/elements/speexresample.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check/elements/speexresample.c b/tests/check/elements/speexresample.c index c989ba3a..8ac091b6 100644 --- a/tests/check/elements/speexresample.c +++ b/tests/check/elements/speexresample.c @@ -615,7 +615,7 @@ test_pipeline (gint width, gboolean fp, gint inrate, gint outrate, gint quality) pipe_str = g_strdup_printf - ("audiotestsrc num-buffers=100 ! audioconvert ! audio/x-raw-%s,rate=%d,width=%d,channels=2 ! speexresample quality=%d ! audio/x-raw-%s,rate=%d,width=%d ! identity check-imperfect-timestamp=TRUE ! fakesink", + ("audiotestsrc num-buffers=10 ! audioconvert ! audio/x-raw-%s,rate=%d,width=%d,channels=2 ! speexresample quality=%d ! audio/x-raw-%s,rate=%d,width=%d ! identity check-imperfect-timestamp=TRUE ! fakesink", (fp) ? "float" : "int", inrate, width, quality, (fp) ? "float" : "int", outrate, width); |