diff options
author | Arun Raghavan <arun@osg.samsung.com> | 2016-09-30 13:22:32 +0530 |
---|---|---|
committer | Arun Raghavan <arun@osg.samsung.com> | 2016-09-30 13:25:10 +0530 |
commit | 153b7164902a9909bb9cf8a419d62d3f7c06fef0 (patch) | |
tree | 2dad55f480a5d05053e4496db67c4be672bc7087 | |
parent | a993883b74598e5a1bc91348ea383fd856111d9b (diff) |
tests: Fix tagschecking failure due to missing PTS
qtmux now needs the PTS (commit a993883b7), so let's make sure we
produce one with our buffers.
https://bugzilla.gnome.org/show_bug.cgi?id=772228
-rw-r--r-- | tests/check/pipelines/tagschecking.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/check/pipelines/tagschecking.c b/tests/check/pipelines/tagschecking.c index 3f1a686d9..13c72b589 100644 --- a/tests/check/pipelines/tagschecking.c +++ b/tests/check/pipelines/tagschecking.c @@ -91,7 +91,8 @@ test_mux_tags (const gchar * tag_str, const gchar * caps, GST_DEBUG ("testing xmp muxing on : %s", muxer); - launch_str = g_strdup_printf ("fakesrc num-buffers=1 format=time ! " + launch_str = + g_strdup_printf ("fakesrc num-buffers=1 format=time datarate=100 ! " "%s ! %s name=mux ! filesink location=%s name=sink", caps, muxer, file); pipeline = gst_parse_launch (launch_str, NULL); g_free (launch_str); |