summaryrefslogtreecommitdiffstats
path: root/gst/oldcore
diff options
context:
space:
mode:
Diffstat (limited to 'gst/oldcore')
-rw-r--r--gst/oldcore/gstaggregator.c2
-rw-r--r--gst/oldcore/gstfdsink.c2
-rw-r--r--gst/oldcore/gstmd5sink.c3
-rw-r--r--gst/oldcore/gstmultifilesrc.c2
-rw-r--r--gst/oldcore/gstpipefilter.c3
-rw-r--r--gst/oldcore/gstshaper.c3
-rw-r--r--gst/oldcore/gststatistics.c3
7 files changed, 11 insertions, 7 deletions
diff --git a/gst/oldcore/gstaggregator.c b/gst/oldcore/gstaggregator.c
index 53b165a4..57704165 100644
--- a/gst/oldcore/gstaggregator.c
+++ b/gst/oldcore/gstaggregator.c
@@ -34,7 +34,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_DEBUG_CATEGORY_STATIC (gst_aggregator_debug);
#define GST_CAT_DEFAULT gst_aggregator_debug
-GstElementDetails gst_aggregator_details =
+static const GstElementDetails gst_aggregator_details =
GST_ELEMENT_DETAILS ("Aggregator pipe fitting",
"Generic",
"N-to-1 pipe fitting",
diff --git a/gst/oldcore/gstfdsink.c b/gst/oldcore/gstfdsink.c
index 1d2ad11c..12da6857 100644
--- a/gst/oldcore/gstfdsink.c
+++ b/gst/oldcore/gstfdsink.c
@@ -37,7 +37,7 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
GST_DEBUG_CATEGORY_STATIC (gst_fdsink_debug);
#define GST_CAT_DEFAULT gst_fdsink_debug
-GstElementDetails gst_fdsink_details =
+static const GstElementDetails gst_fdsink_details =
GST_ELEMENT_DETAILS ("Filedescriptor Sink",
"Sink/File",
"Write data to a file descriptor",
diff --git a/gst/oldcore/gstmd5sink.c b/gst/oldcore/gstmd5sink.c
index 282d4c3f..88292e6b 100644
--- a/gst/oldcore/gstmd5sink.c
+++ b/gst/oldcore/gstmd5sink.c
@@ -35,7 +35,8 @@
GST_DEBUG_CATEGORY_STATIC (gst_md5sink_debug);
#define GST_CAT_DEFAULT gst_md5sink_debug
-GstElementDetails gst_md5sink_details = GST_ELEMENT_DETAILS ("MD5 Sink",
+static const GstElementDetails gst_md5sink_details =
+GST_ELEMENT_DETAILS ("MD5 Sink",
"Sink",
"compute MD5 for incoming data",
"Benjamin Otte <in7y118@public.uni-hamburg.de>");
diff --git a/gst/oldcore/gstmultifilesrc.c b/gst/oldcore/gstmultifilesrc.c
index d73bd6af..74f0cee1 100644
--- a/gst/oldcore/gstmultifilesrc.c
+++ b/gst/oldcore/gstmultifilesrc.c
@@ -45,7 +45,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_DEBUG_CATEGORY_STATIC (gst_multifilesrc_debug);
#define GST_CAT_DEFAULT gst_multifilesrc_debug
-GstElementDetails gst_multifilesrc_details =
+static const GstElementDetails gst_multifilesrc_details =
GST_ELEMENT_DETAILS ("Multi file source",
"Source/File",
"Read from multiple files in order",
diff --git a/gst/oldcore/gstpipefilter.c b/gst/oldcore/gstpipefilter.c
index 623b9a1f..a941115a 100644
--- a/gst/oldcore/gstpipefilter.c
+++ b/gst/oldcore/gstpipefilter.c
@@ -50,7 +50,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_DEBUG_CATEGORY_STATIC (gst_pipefilter_debug);
#define GST_CAT_DEFAULT gst_pipefilter_debug
-GstElementDetails gst_pipefilter_details = GST_ELEMENT_DETAILS ("Pipe filter",
+static const GstElementDetails gst_pipefilter_details =
+GST_ELEMENT_DETAILS ("Pipe filter",
"Filter",
"Interoperate with an external program using stdin and stdout",
"Erik Walthinsen <omega@cse.ogi.edu>, "
diff --git a/gst/oldcore/gstshaper.c b/gst/oldcore/gstshaper.c
index 56f84b8a..f3504d2d 100644
--- a/gst/oldcore/gstshaper.c
+++ b/gst/oldcore/gstshaper.c
@@ -32,7 +32,8 @@
GST_DEBUG_CATEGORY_STATIC (gst_shaper_debug);
#define GST_CAT_DEFAULT gst_shaper_debug
-GstElementDetails gst_shaper_details = GST_ELEMENT_DETAILS ("Shaper",
+static const GstElementDetails gst_shaper_details =
+GST_ELEMENT_DETAILS ("Shaper",
"Generic",
"Synchronizes streams on different pads",
"Wim Taymans <wim.taymans@chello.be>");
diff --git a/gst/oldcore/gststatistics.c b/gst/oldcore/gststatistics.c
index 30e3bfcb..8184cf55 100644
--- a/gst/oldcore/gststatistics.c
+++ b/gst/oldcore/gststatistics.c
@@ -40,7 +40,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
GST_DEBUG_CATEGORY_STATIC (gst_statistics_debug);
#define GST_CAT_DEFAULT gst_statistics_debug
-GstElementDetails gst_statistics_details = GST_ELEMENT_DETAILS ("Statistics",
+static const GstElementDetails gst_statistics_details =
+GST_ELEMENT_DETAILS ("Statistics",
"Generic",
"Statistics on buffers/bytes/events",
"David I. Lehn <dlehn@users.sourceforge.net>");