summaryrefslogtreecommitdiffstats
path: root/gst/debug/breakmydata.c
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2004-03-31 22:36:36 +0000
committerDavid Schleef <ds@schleef.org>2004-03-31 22:36:36 +0000
commiteeb92bbb197d716c6a04a6e81eff4c075ef769b6 (patch)
tree0e81593e500cf470caf900a0ecf64dc1145071e8 /gst/debug/breakmydata.c
parentc936f73caf71fb225fa1b8fdf926bb6768669084 (diff)
gst/audioscale/gstaudioscale.c: Fix getcaps to expand and union lists. (bug #138225)
Original commit message from CVS: * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value), (gst_audioscale_getcaps): Fix getcaps to expand and union lists. (bug #138225) * gst/debug/Makefile.am: * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init): * gst/debug/gstdebug.c: (plugin_init): Merge elements into one plugin. * gst/debug/negotiation.c: (gst_gst_negotiation_get_type), (gst_negotiation_base_init), (gst_negotiation_class_init), (gst_negotiation_init), (gst_negotiation_getcaps), (gst_negotiation_pad_link), (gst_negotiation_chain), (gst_negotiation_set_property), (gst_negotiation_get_property), (gst_negotiation_plugin_init): New element to talk about random negotiation things happening in a pipeline.
Diffstat (limited to 'gst/debug/breakmydata.c')
-rw-r--r--gst/debug/breakmydata.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/gst/debug/breakmydata.c b/gst/debug/breakmydata.c
index eebce32e..bfc6ddfc 100644
--- a/gst/debug/breakmydata.c
+++ b/gst/debug/breakmydata.c
@@ -252,8 +252,8 @@ gst_break_my_data_change_state (GstElement * element)
(element), GST_STATE_SUCCESS);
}
-static gboolean
-plugin_init (GstPlugin * plugin)
+gboolean
+gst_break_my_data_plugin_init (GstPlugin * plugin)
{
if (!gst_element_register (plugin, "breakmydata", GST_RANK_NONE,
GST_TYPE_BREAK_MY_DATA))
@@ -264,9 +264,3 @@ plugin_init (GstPlugin * plugin)
return TRUE;
}
-
-GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
- GST_VERSION_MINOR,
- "debug",
- "elements for testing and debugging",
- plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)