diff options
Diffstat (limited to 'gst/debug')
-rw-r--r-- | gst/debug/breakmydata.c | 2 | ||||
-rw-r--r-- | gst/debug/efence.c | 18 | ||||
-rw-r--r-- | gst/debug/gstnavigationtest.c | 2 | ||||
-rw-r--r-- | gst/debug/negotiation.c | 12 | ||||
-rw-r--r-- | gst/debug/progressreport.c | 2 | ||||
-rw-r--r-- | gst/debug/testplugin.c | 2 |
6 files changed, 17 insertions, 21 deletions
diff --git a/gst/debug/breakmydata.c b/gst/debug/breakmydata.c index 724ac4fd..0a020582 100644 --- a/gst/debug/breakmydata.c +++ b/gst/debug/breakmydata.c @@ -83,7 +83,7 @@ static GstFlowReturn gst_break_my_data_transform_ip (GstBaseTransform * trans, static gboolean gst_break_my_data_stop (GstBaseTransform * trans); static gboolean gst_break_my_data_start (GstBaseTransform * trans); -static GstElementDetails details = GST_ELEMENT_DETAILS ("breakmydata", +static GstElementDetails details = GST_ELEMENT_DETAILS ("Break my data", "Testing", "randomly change data in the stream", "Benjamin Otte <otte@gnome>"); diff --git a/gst/debug/efence.c b/gst/debug/efence.c index 90932598..2c727251 100644 --- a/gst/debug/efence.c +++ b/gst/debug/efence.c @@ -42,16 +42,14 @@ GST_DEBUG_CATEGORY_STATIC (gst_efence_debug); #define GST_CAT_DEFAULT gst_efence_debug -static GstElementDetails plugin_details = { - "Electric Fence", - "Testing", - "This element converts a stream of normal GStreamer buffers into a " - "stream of buffers that are allocated in such a way that out-of-bounds " - "access to data in the buffer is more likely to cause segmentation " - "faults. This allocation method is very similar to the debugging tool " - "\"Electric Fence\".", - "David A. Schleef <ds@schleef.org>", -}; +static GstElementDetails plugin_details = GST_ELEMENT_DETAILS ("Electric Fence", + "Testing", + "This element converts a stream of normal GStreamer buffers into a " + "stream of buffers that are allocated in such a way that out-of-bounds " + "access to data in the buffer is more likely to cause segmentation " + "faults. This allocation method is very similar to the debugging tool " + "\"Electric Fence\".", + "David A. Schleef <ds@schleef.org>"); /* Filter signals and args */ enum diff --git a/gst/debug/gstnavigationtest.c b/gst/debug/gstnavigationtest.c index f31ee96e..d46ee47d 100644 --- a/gst/debug/gstnavigationtest.c +++ b/gst/debug/gstnavigationtest.c @@ -32,7 +32,7 @@ GST_DEBUG_CATEGORY (navigationtest_debug); #define GST_CAT_DEFAULT navigationtest_debug static GstElementDetails navigationtest_details = -GST_ELEMENT_DETAILS ("Video Navigation test", +GST_ELEMENT_DETAILS ("Video navigation test", "Filter/Effect/Video", "Handle navigation events showing a black square following mouse pointer", "David Schleef <ds@schleef.org>"); diff --git a/gst/debug/negotiation.c b/gst/debug/negotiation.c index c3f2314d..feb62524 100644 --- a/gst/debug/negotiation.c +++ b/gst/debug/negotiation.c @@ -60,13 +60,11 @@ struct _GstNegotiationClass GType gst_gst_negotiation_get_type (void); -static GstElementDetails plugin_details = { - "Negotiation", - "Testing", - "This element acts like identity, except that one can control how " - "negotiation works", - "David A. Schleef <ds@schleef.org>", -}; +static GstElementDetails plugin_details = GST_ELEMENT_DETAILS ("Negotiation", + "Testing", + "This element acts like identity, except that one can control how " + "negotiation works", + "David A. Schleef <ds@schleef.org>"); /* Filter signals and args */ enum diff --git a/gst/debug/progressreport.c b/gst/debug/progressreport.c index 35bbf3c7..a09fbd76 100644 --- a/gst/debug/progressreport.c +++ b/gst/debug/progressreport.c @@ -78,7 +78,7 @@ GST_STATIC_PAD_TEMPLATE ("sink", GST_STATIC_CAPS_ANY); static GstElementDetails progress_report_details = -GST_ELEMENT_DETAILS ("Progress Report", +GST_ELEMENT_DETAILS ("Progress report", "Testing", "Periodically query and report on processing progress", "Jan Schmidt <thaytan@mad.scientist.com>"); diff --git a/gst/debug/testplugin.c b/gst/debug/testplugin.c index d176e09c..e549c996 100644 --- a/gst/debug/testplugin.c +++ b/gst/debug/testplugin.c @@ -79,7 +79,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink", GST_STATIC_CAPS_ANY); -static GstElementDetails details = GST_ELEMENT_DETAILS ("gsttestsink", +static GstElementDetails details = GST_ELEMENT_DETAILS ("Test plugin", "Testing", "perform a number of tests", "Benjamin Otte <otte@gnome>"); |