gst/elements/: Make element details static.
authorTim-Philipp Müller <tim@centricular.net>
Wed, 28 Sep 2005 12:52:51 +0000 (12:52 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 28 Sep 2005 12:52:51 +0000 (12:52 +0000)
Original commit message from CVS:
* gst/elements/gstcapsfilter.c:
* gst/elements/gstfakesink.c:
* gst/elements/gstfakesrc.c:
* gst/elements/gstfdsink.c:
* gst/elements/gstfdsrc.c:
* gst/elements/gstfilesink.c:
* gst/elements/gstfilesrc.c:
* gst/elements/gstidentity.c:
* gst/elements/gsttee.c:
* gst/elements/gsttypefindelement.c:
Make element details static.

21 files changed:
ChangeLog
gst/elements/gstcapsfilter.c
gst/elements/gstfakesink.c
gst/elements/gstfakesrc.c
gst/elements/gstfdsink.c
gst/elements/gstfdsrc.c
gst/elements/gstfilesink.c
gst/elements/gstfilesrc.c
gst/elements/gstidentity.c
gst/elements/gsttee.c
gst/elements/gsttypefindelement.c
plugins/elements/gstcapsfilter.c
plugins/elements/gstfakesink.c
plugins/elements/gstfakesrc.c
plugins/elements/gstfdsink.c
plugins/elements/gstfdsrc.c
plugins/elements/gstfilesink.c
plugins/elements/gstfilesrc.c
plugins/elements/gstidentity.c
plugins/elements/gsttee.c
plugins/elements/gsttypefindelement.c

index ef0132a..52639de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,17 @@
+2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/elements/gstcapsfilter.c:
+       * gst/elements/gstfakesink.c:
+       * gst/elements/gstfakesrc.c:
+       * gst/elements/gstfdsink.c:
+       * gst/elements/gstfdsrc.c:
+       * gst/elements/gstfilesink.c:
+       * gst/elements/gstfilesrc.c:
+       * gst/elements/gstidentity.c:
+       * gst/elements/gsttee.c:
+       * gst/elements/gsttypefindelement.c:
+         Make element details static.
+
 2005-09-28  Wim Taymans  <wim@fluendo.com>
 
        * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
index 7b6c4ec..c4e7263 100644 (file)
@@ -29,7 +29,8 @@
 #include <gst/base/gstbasetransform.h>
 
 
-GstElementDetails gst_capsfilter_details = GST_ELEMENT_DETAILS ("CapsFilter",
+static GstElementDetails gst_capsfilter_details =
+GST_ELEMENT_DETAILS ("CapsFilter",
     "Generic",
     "Pass data without modification, limiting formats",
     "David Schleef <ds@schleef.org>");
index 7bdaf18..7adab5d 100644 (file)
@@ -42,7 +42,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
 #define GST_CAT_DEFAULT gst_fake_sink_debug
 
-GstElementDetails gst_fake_sink_details = GST_ELEMENT_DETAILS ("Fake Sink",
+static GstElementDetails gst_fake_sink_details =
+GST_ELEMENT_DETAILS ("Fake Sink",
     "Sink",
     "Black hole for data",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index 0bfdf45..485625d 100644 (file)
@@ -45,7 +45,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
 #define GST_CAT_DEFAULT gst_fake_src_debug
 
-GstElementDetails gst_fake_src_details = GST_ELEMENT_DETAILS ("Fake Source",
+static GstElementDetails gst_fake_src_details =
+GST_ELEMENT_DETAILS ("Fake Source",
     "Source",
     "Push empty (no data) buffers around",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index ee49bb8..5cd1d4d 100644 (file)
@@ -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 GstElementDetails gst_fdsink_details =
 GST_ELEMENT_DETAILS ("Filedescriptor Sink",
     "Sink/File",
     "Write data to a file descriptor",
index 2666191..b248377 100644 (file)
@@ -67,7 +67,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
 #define GST_CAT_DEFAULT gst_fdsrc_debug
 
-GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
+static GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
     "Source/File",
     "Synchronous read from a file",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index e529c0e..6893758 100644 (file)
@@ -52,7 +52,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
 #define GST_CAT_DEFAULT gst_file_sink_debug
 
-GstElementDetails gst_file_sink_details = GST_ELEMENT_DETAILS ("File Sink",
+static GstElementDetails gst_file_sink_details =
+GST_ELEMENT_DETAILS ("File Sink",
     "Sink/File",
     "Write stream to a file",
     "Thomas <thomas@apestaart.org>");
index 781817e..9b18b09 100644 (file)
@@ -108,7 +108,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
 #define GST_CAT_DEFAULT gst_file_src_debug
 
-GstElementDetails gst_file_src_details = GST_ELEMENT_DETAILS ("File Source",
+static GstElementDetails gst_file_src_details =
+GST_ELEMENT_DETAILS ("File Source",
     "Source/File",
     "Read from arbitrary point in a file",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index 08c4ec1..5c7393d 100644 (file)
@@ -45,7 +45,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
 #define GST_CAT_DEFAULT gst_identity_debug
 
-GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
+static GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
     "Generic",
     "Pass data without modification",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index 13588c6..a0cfc60 100644 (file)
@@ -37,7 +37,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
 #define GST_CAT_DEFAULT gst_tee_debug
 
-GstElementDetails gst_tee_details = GST_ELEMENT_DETAILS ("Tee pipe fitting",
+static GstElementDetails gst_tee_details =
+GST_ELEMENT_DETAILS ("Tee pipe fitting",
     "Generic",
     "1-to-N pipe fitting",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index cd539db..a6e24a6 100644 (file)
@@ -63,7 +63,7 @@
 GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
 #define GST_CAT_DEFAULT gst_type_find_element_debug
 
-GstElementDetails gst_type_find_element_details =
+static GstElementDetails gst_type_find_element_details =
 GST_ELEMENT_DETAILS ("TypeFind",
     "Generic",
     "Finds the media type of a stream",
index 7b6c4ec..c4e7263 100644 (file)
@@ -29,7 +29,8 @@
 #include <gst/base/gstbasetransform.h>
 
 
-GstElementDetails gst_capsfilter_details = GST_ELEMENT_DETAILS ("CapsFilter",
+static GstElementDetails gst_capsfilter_details =
+GST_ELEMENT_DETAILS ("CapsFilter",
     "Generic",
     "Pass data without modification, limiting formats",
     "David Schleef <ds@schleef.org>");
index 7bdaf18..7adab5d 100644 (file)
@@ -42,7 +42,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_fake_sink_debug);
 #define GST_CAT_DEFAULT gst_fake_sink_debug
 
-GstElementDetails gst_fake_sink_details = GST_ELEMENT_DETAILS ("Fake Sink",
+static GstElementDetails gst_fake_sink_details =
+GST_ELEMENT_DETAILS ("Fake Sink",
     "Sink",
     "Black hole for data",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index 0bfdf45..485625d 100644 (file)
@@ -45,7 +45,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_fake_src_debug);
 #define GST_CAT_DEFAULT gst_fake_src_debug
 
-GstElementDetails gst_fake_src_details = GST_ELEMENT_DETAILS ("Fake Source",
+static GstElementDetails gst_fake_src_details =
+GST_ELEMENT_DETAILS ("Fake Source",
     "Source",
     "Push empty (no data) buffers around",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index ee49bb8..5cd1d4d 100644 (file)
@@ -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 GstElementDetails gst_fdsink_details =
 GST_ELEMENT_DETAILS ("Filedescriptor Sink",
     "Sink/File",
     "Write data to a file descriptor",
index 2666191..b248377 100644 (file)
@@ -67,7 +67,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_fdsrc_debug);
 #define GST_CAT_DEFAULT gst_fdsrc_debug
 
-GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
+static GstElementDetails gst_fdsrc_details = GST_ELEMENT_DETAILS ("Disk Source",
     "Source/File",
     "Synchronous read from a file",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index e529c0e..6893758 100644 (file)
@@ -52,7 +52,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_file_sink_debug);
 #define GST_CAT_DEFAULT gst_file_sink_debug
 
-GstElementDetails gst_file_sink_details = GST_ELEMENT_DETAILS ("File Sink",
+static GstElementDetails gst_file_sink_details =
+GST_ELEMENT_DETAILS ("File Sink",
     "Sink/File",
     "Write stream to a file",
     "Thomas <thomas@apestaart.org>");
index 781817e..9b18b09 100644 (file)
@@ -108,7 +108,8 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_file_src_debug);
 #define GST_CAT_DEFAULT gst_file_src_debug
 
-GstElementDetails gst_file_src_details = GST_ELEMENT_DETAILS ("File Source",
+static GstElementDetails gst_file_src_details =
+GST_ELEMENT_DETAILS ("File Source",
     "Source/File",
     "Read from arbitrary point in a file",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index 08c4ec1..5c7393d 100644 (file)
@@ -45,7 +45,7 @@ static GstStaticPadTemplate srctemplate = GST_STATIC_PAD_TEMPLATE ("src",
 GST_DEBUG_CATEGORY_STATIC (gst_identity_debug);
 #define GST_CAT_DEFAULT gst_identity_debug
 
-GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
+static GstElementDetails gst_identity_details = GST_ELEMENT_DETAILS ("Identity",
     "Generic",
     "Pass data without modification",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index 13588c6..a0cfc60 100644 (file)
@@ -37,7 +37,8 @@ static GstStaticPadTemplate sinktemplate = GST_STATIC_PAD_TEMPLATE ("sink",
 GST_DEBUG_CATEGORY_STATIC (gst_tee_debug);
 #define GST_CAT_DEFAULT gst_tee_debug
 
-GstElementDetails gst_tee_details = GST_ELEMENT_DETAILS ("Tee pipe fitting",
+static GstElementDetails gst_tee_details =
+GST_ELEMENT_DETAILS ("Tee pipe fitting",
     "Generic",
     "1-to-N pipe fitting",
     "Erik Walthinsen <omega@cse.ogi.edu>, "
index cd539db..a6e24a6 100644 (file)
@@ -63,7 +63,7 @@
 GST_DEBUG_CATEGORY_STATIC (gst_type_find_element_debug);
 #define GST_CAT_DEFAULT gst_type_find_element_debug
 
-GstElementDetails gst_type_find_element_details =
+static GstElementDetails gst_type_find_element_details =
 GST_ELEMENT_DETAILS ("TypeFind",
     "Generic",
     "Finds the media type of a stream",