summaryrefslogtreecommitdiff
path: root/tests/sched
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2002-01-11 15:49:47 +0000
committerAndy Wingo <wingo@pobox.com>2002-01-11 15:49:47 +0000
commitd262bea86324ff9586d078ba05598bbbfa159bc3 (patch)
tree23be6dbfe3ec209d6f29c5f47dba4c809afc95bb /tests/sched
parentc51e7cd2fe7e3bcad0935601f34bb33cd7b1ded9 (diff)
summary: fix xml in gstreamer 1) make clear distinction between loading xml that actually creates objects and loading...
Original commit message from CVS: summary: fix xml in gstreamer 1) make clear distinction between loading xml that actually creates objects and loading xml that just synchronizes properties with objects. moved most of gst_element_restore_thyself functionality to gst_xml_make_element. this new function name can change if it sucks. 2) many various fixes. createxml and runxml work now. 3) doc updates. 4) GstSignalObject is stil broken. i have no idea what it's supposed to do.
Diffstat (limited to 'tests/sched')
-rw-r--r--tests/sched/dynamic-pipeline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sched/dynamic-pipeline.c b/tests/sched/dynamic-pipeline.c
index 8f094e88e..48faaefc3 100644
--- a/tests/sched/dynamic-pipeline.c
+++ b/tests/sched/dynamic-pipeline.c
@@ -40,7 +40,7 @@ int main (int argc, char *argv[])
gst_element_connect(fakesrc, "src", fakesink2, "sink");
// show the pipeline state
- xmlDocDump(stdout, gst_xml_write(pipe2));
+ gst_xml_write_file (GST_ELEMENT (pipe2), stdout);
// try to iterate the pipeline
gst_element_set_state(pipe2, GST_STATE_PLAYING);