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.
This commit is contained in:
Sebastian Dröge 2008-11-25 16:37:50 +00:00
parent 67360318b4
commit 7615d3d8d3
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-11-25 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* tests/check/elements/speexresample.c: (test_pipeline):
Make unit test again faster to prevent timeouts with valgrind.
2008-11-25 Wim Taymans <wim.taymans@collabora.co.uk>
* gst/rtpmanager/gstrtpsession.c:

View file

@ -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);