diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2006-12-06 17:58:24 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2006-12-06 17:58:24 +0000 |
commit | 019c52a459dd6c2a57063ac33728a5bf1138227a (patch) | |
tree | 517829b24aebd70088248dbf52d63cb3518ed1cf /tests | |
parent | 029a3c6b01e366e46dd478ad8ad722a692214a11 (diff) |
tests/check/generic/libavcodec-locking.c: Fix the filter caps string for the test. Limit it to 10 fps, which means en...
Original commit message from CVS:
* tests/check/generic/libavcodec-locking.c: (GST_START_TEST):
Fix the filter caps string for the test. Limit it to 10 fps, which
means encoding ~ 50 frames before timeout
Diffstat (limited to 'tests')
-rw-r--r-- | tests/check/generic/libavcodec-locking.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/check/generic/libavcodec-locking.c b/tests/check/generic/libavcodec-locking.c index 02b3dde..88d321a 100644 --- a/tests/check/generic/libavcodec-locking.c +++ b/tests/check/generic/libavcodec-locking.c @@ -100,13 +100,13 @@ GST_START_TEST (test_libavcodec_locks) gint i; for (i=0; i<NUM_SINKS; i++) - sink[i] = g_strdup_printf (" t.src%d ! queue ! ffenc_mpeg4 ! ffdec_mpeg4 ! fakesink", i); + sink[i] = g_strdup_printf (" t.src%d ! queue ! ffenc_mpeg4 ! ffdec_mpeg4 ! fakesink sync=true", i); sink [NUM_SINKS] = NULL; sinks = g_strjoinv (" ", sink); - s = g_strdup_printf ("videotestsrc ! video/x-raw-yuv,format:fourcc=I420,width=320,height=240 ! tee name=t %s", sinks); + s = g_strdup_printf ("videotestsrc ! video/x-raw-yuv,format=(fourcc)I420,width=320,height=240,framerate=(fraction)10/1 ! tee name=t %s", sinks); run_pipeline (setup_pipeline (s), s, GST_MESSAGE_ANY & ~(GST_MESSAGE_ERROR | GST_MESSAGE_WARNING), |