diff options
author | Andy Wingo <wingo@pobox.com> | 2002-04-11 20:35:18 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2002-04-11 20:35:18 +0000 |
commit | b214d35eedcc17d449c590c85bf68946de67c77d (patch) | |
tree | 939aa3f9707f6318d2ae9b0c52122fee91eb83a1 /tests/sched | |
parent | 55d823641346302813d82be137672354e4ffbad4 (diff) |
commit to make gstreamer follow the gtk function/macro naming conventions:
Original commit message from CVS:
commit to make gstreamer follow the gtk function/macro naming conventions:
GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE
and the same for *factory and typefind.
Diffstat (limited to 'tests/sched')
-rw-r--r-- | tests/sched/dynamic-pipeline.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/sched/dynamic-pipeline.c b/tests/sched/dynamic-pipeline.c index baddae41b..fa3de4ed0 100644 --- a/tests/sched/dynamic-pipeline.c +++ b/tests/sched/dynamic-pipeline.c @@ -16,9 +16,9 @@ int main (int argc, char *argv[]) exit(-1); } - fakesrc = gst_elementfactory_make("fakesrc", "fakesrc"); - fakesink1 = gst_elementfactory_make("fakesink", "fakesink1"); - fakesink2 = gst_elementfactory_make("fakesink", "fakesink2"); + fakesrc = gst_element_factory_make("fakesrc", "fakesrc"); + fakesink1 = gst_element_factory_make("fakesink", "fakesink1"); + fakesink2 = gst_element_factory_make("fakesink", "fakesink2"); pipe1 = gst_pipeline_new("pipe1"); pipe2 = gst_pipeline_new("pipe2"); |