diff options
author | Andy Wingo <wingo@pobox.com> | 2001-12-20 01:20:22 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2001-12-20 01:20:22 +0000 |
commit | e8e87fe95647a600a4e5796a27d9d7bdf7c62764 (patch) | |
tree | 3ada2c2c167d91365f1873b1c8928dea98ec07b1 /tests/sched | |
parent | 51bb2b1c4cd62f914c1850d322844146c03cded9 (diff) |
removed gstreamer.m4 (packages should use pkg.m4) guilaunch depends only on gtk, not libglade-gnome removed an unnece...
Original commit message from CVS:
* removed gstreamer.m4 (packages should use pkg.m4)
* guilaunch depends only on gtk, not libglade-gnome
* removed an unnecessary check in dynamic-pipeline.c
* attempted to avoid a spurious autoheader run
* gtk2 fixes
* killed a lot of files that automake brings in for us
* killed acinclude.m4, it's autogenerated
Diffstat (limited to 'tests/sched')
-rw-r--r-- | tests/sched/dynamic-pipeline.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/sched/dynamic-pipeline.c b/tests/sched/dynamic-pipeline.c index 816b38f7c..8f094e88e 100644 --- a/tests/sched/dynamic-pipeline.c +++ b/tests/sched/dynamic-pipeline.c @@ -35,8 +35,7 @@ int main (int argc, char *argv[]) // make a new pipeline gst_bin_add (GST_BIN(pipe2), fakesink2); - // change the new pipeline's state to READY (is this necessary?) - gst_element_set_state(pipe2, GST_STATE_READY); + // don't change the new pipeline's state, it should change on the bin_add gst_bin_add (GST_BIN(pipe2), fakesrc); gst_element_connect(fakesrc, "src", fakesink2, "sink"); |