summaryrefslogtreecommitdiffstats
path: root/gst/debug
diff options
context:
space:
mode:
Diffstat (limited to 'gst/debug')
-rw-r--r--gst/debug/breakmydata.c2
-rw-r--r--gst/debug/efence.c3
-rw-r--r--gst/debug/gstnavigationtest.c2
-rw-r--r--gst/debug/gstnavseek.c2
-rw-r--r--gst/debug/negotiation.c3
-rw-r--r--gst/debug/progressreport.c2
-rw-r--r--gst/debug/testplugin.c2
7 files changed, 9 insertions, 7 deletions
diff --git a/gst/debug/breakmydata.c b/gst/debug/breakmydata.c
index 0a020582..4ef3bfe8 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 ("Break my data",
+static const 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 22a7da1e..1ef462f3 100644
--- a/gst/debug/efence.c
+++ b/gst/debug/efence.c
@@ -42,7 +42,8 @@
GST_DEBUG_CATEGORY_STATIC (gst_efence_debug);
#define GST_CAT_DEFAULT gst_efence_debug
-static GstElementDetails plugin_details = GST_ELEMENT_DETAILS ("Electric Fence",
+static const 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 "
diff --git a/gst/debug/gstnavigationtest.c b/gst/debug/gstnavigationtest.c
index d46ee47d..b9c84b06 100644
--- a/gst/debug/gstnavigationtest.c
+++ b/gst/debug/gstnavigationtest.c
@@ -31,7 +31,7 @@
GST_DEBUG_CATEGORY (navigationtest_debug);
#define GST_CAT_DEFAULT navigationtest_debug
-static GstElementDetails navigationtest_details =
+static const GstElementDetails navigationtest_details =
GST_ELEMENT_DETAILS ("Video navigation test",
"Filter/Effect/Video",
"Handle navigation events showing a black square following mouse pointer",
diff --git a/gst/debug/gstnavseek.c b/gst/debug/gstnavseek.c
index d0923d5d..1f006a0d 100644
--- a/gst/debug/gstnavseek.c
+++ b/gst/debug/gstnavseek.c
@@ -47,7 +47,7 @@ GstStaticPadTemplate navseek_sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS_ANY);
-static GstElementDetails navseek_details =
+static const GstElementDetails navseek_details =
GST_ELEMENT_DETAILS ("Seek based on left-right arrows",
"Filter/Video",
"Seek based on navigation keys left-right",
diff --git a/gst/debug/negotiation.c b/gst/debug/negotiation.c
index a01be1b1..e28b2cf5 100644
--- a/gst/debug/negotiation.c
+++ b/gst/debug/negotiation.c
@@ -60,7 +60,8 @@ struct _GstNegotiationClass
GType gst_gst_negotiation_get_type (void);
-static GstElementDetails plugin_details = GST_ELEMENT_DETAILS ("Negotiation",
+static const GstElementDetails plugin_details =
+GST_ELEMENT_DETAILS ("Negotiation",
"Testing",
"This element acts like identity, except that one can control how "
"negotiation works",
diff --git a/gst/debug/progressreport.c b/gst/debug/progressreport.c
index 237cbf12..83d30154 100644
--- a/gst/debug/progressreport.c
+++ b/gst/debug/progressreport.c
@@ -83,7 +83,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
GST_PAD_ALWAYS,
GST_STATIC_CAPS_ANY);
-static GstElementDetails progress_report_details =
+static const GstElementDetails progress_report_details =
GST_ELEMENT_DETAILS ("Progress report",
"Testing",
"Periodically query and report on processing progress",
diff --git a/gst/debug/testplugin.c b/gst/debug/testplugin.c
index e549c996..edd82be9 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 ("Test plugin",
+static const GstElementDetails details = GST_ELEMENT_DETAILS ("Test plugin",
"Testing",
"perform a number of tests",
"Benjamin Otte <otte@gnome>");