summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward.hervey@collabora.co.uk>2011-01-29 12:52:30 +0100
committerEdward Hervey <bilboed@bilboed.com>2011-02-09 11:01:08 +0100
commitd37d1c163e7ab02bbf069eba8656d7ab43ab9690 (patch)
tree984fffcba9dcbd35d644a1ecca115a3012931ba8
parentf78dd57941980066d0f7d26501f8f04f284303b2 (diff)
check: Add some comments
-rw-r--r--tests/check/gnl/complex.c9
-rw-r--r--tests/check/gnl/gnloperation.c10
2 files changed, 19 insertions, 0 deletions
diff --git a/tests/check/gnl/complex.c b/tests/check/gnl/complex.c
index 4e4ffb1..c9c4ef4 100644
--- a/tests/check/gnl/complex.c
+++ b/tests/check/gnl/complex.c
@@ -212,12 +212,21 @@ GST_START_TEST (test_one_default_another)
pipeline = gst_pipeline_new ("test_pipeline");
comp =
gst_element_factory_make_or_warn ("gnlcomposition", "test_composition");
fail_if (comp == NULL);
+ /* TOPOLOGY
+ *
+ * 0 1 2 3 4 5 | Priority
+ * ----------------------------------------------------------------------------
+ * [-source1--] [-source2--][-source3-] | 1
+ * [--------------------------defaultsource------------------] | MAXUINT32
+ * */
+
+
/*
defaultsrc source
Start : 0s
Duration : 5s
Priority : 2
*/
diff --git a/tests/check/gnl/gnloperation.c b/tests/check/gnl/gnloperation.c
index bc8154d..ec6ce89 100644
--- a/tests/check/gnl/gnloperation.c
+++ b/tests/check/gnl/gnloperation.c
@@ -1108,12 +1108,22 @@ GST_START_TEST (test_complex_operations_bis)
GstPad *sinkpad;
pipeline = gst_pipeline_new ("test_pipeline");
comp =
gst_element_factory_make_or_warn ("gnlcomposition", "test_composition");
+ /* TOPOLOGY
+ *
+ * 0 1 2 3 4 .. 6 | Priority
+ * ----------------------------------------------------------------------------
+ * [ ......................[------ oper ----------]..........] | 1 EXPANDABLE
+ * [--------------------- source1 ----------------] | 2
+ * [------------ source2 ------] | 3
+ * */
+
+
/*
source1
Start : 0s
Duration : 4s
Priority : 2
*/