Define GstElementDetails as const and also static (when defined as global)
authorStefan Kost <ensonic@users.sourceforge.net>
Tue, 25 Apr 2006 21:47:03 +0000 (21:47 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Tue, 25 Apr 2006 21:47:03 +0000 (21:47 +0000)
Original commit message from CVS:
* ext/mad/gstid3tag.c:
* ext/mad/gstmad.c:
* gst/ac3parse/gstac3parse.c:
* gst/dvdlpcmdec/gstdvdlpcmdec.c:
* gst/synaesthesia/gstsynaesthesia.c:
Define GstElementDetails as const and also static (when defined as
global)

ChangeLog
ext/mad/gstid3tag.c
ext/mad/gstmad.c
gst/ac3parse/gstac3parse.c
gst/dvdlpcmdec/gstdvdlpcmdec.c
gst/synaesthesia/gstsynaesthesia.c

index c299325efd798c73339654885e2514b68165514b..33dc5a3993961c0249f890d4da7c150c076d9ae0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2006-04-26  Stefan Kost  <ensonic@users.sf.net>
+
+       * ext/mad/gstid3tag.c:
+       * ext/mad/gstmad.c:
+       * gst/ac3parse/gstac3parse.c:
+       * gst/dvdlpcmdec/gstdvdlpcmdec.c:
+       * gst/synaesthesia/gstsynaesthesia.c:
+         Define GstElementDetails as const and also static (when defined as
+         global)
+
 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
 
        * ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_push_titlelang_event):
index a2a1a2075f83e274b1a73f4b51d5c1f327c32854..d244145fe9aed7b723531c4355882d2ac4aa70c9 100644 (file)
@@ -243,7 +243,7 @@ gst_id3_tag_get_type (guint type)
 }
 
 /* elementfactory information */
-GstElementDetails gst_id3_tag_details[3] = {
+static const GstElementDetails gst_id3_tag_details[3] = {
   GST_ELEMENT_DETAILS ("id3 tag extractor",
       "Codec/Demuxer/Audio",
       "Extract ID3 tagging information",
index c3795ee44cddfdc6d8eec76049211800a6e9f880..3c0b2f23db5bfe377ba905033d9678ffe6b65d98 100644 (file)
@@ -95,7 +95,7 @@ struct _GstMadClass
 };
 
 /* elementfactory information */
-static GstElementDetails gst_mad_details =
+static const GstElementDetails gst_mad_details =
 GST_ELEMENT_DETAILS ("mad mp3 decoder",
     "Codec/Decoder/Audio",
     "Uses mad code to decode mp3 streams",
index 12f713a3ff476545676989e0a8237a5091f73497..e4f4efb2ad55f16e7943b6ad62ae6ff07c618d82 100644 (file)
@@ -76,7 +76,8 @@ static struct frmsize_s frmsizecod_tbl[] = {
 };
 
 /* elementfactory information */
-static GstElementDetails ac3parse_details = GST_ELEMENT_DETAILS ("AC3 Parser",
+static const GstElementDetails ac3parse_details =
+GST_ELEMENT_DETAILS ("AC3 Parser",
     "Codec/Parser/Audio",
     "Parses and frames AC3 audio streams, provides seek",
     "Erik Walthinsen <omega@cse.ogi.edu>");
index 027a140553aabcc4f89f7c481d38f7cb4277ac44..f10337a8691134a409afd90502fae28bef8c14ab 100644 (file)
@@ -31,7 +31,7 @@ GST_DEBUG_CATEGORY_STATIC (dvdlpcm_debug);
 #define GST_CAT_DEFAULT dvdlpcm_debug
 
 /* elementfactory information */
-static GstElementDetails gst_dvdlpcmdec_details =
+static const GstElementDetails gst_dvdlpcmdec_details =
 GST_ELEMENT_DETAILS ("DVD LPCM Audio decoder",
     "Codec/Demuxer/Audio",
     "Decode DVD LPCM frames into standard PCM audio",
index 8cbe8a981afe37f0c6e46ccc1f9795a298ee3c93..2fb82cbfe31861cdd25489ded8cfd303b6d90d37 100644 (file)
@@ -73,7 +73,7 @@ GType gst_synaesthesia_get_type (void);
 
 
 /* elementfactory information */
-static GstElementDetails gst_synaesthesia_details =
+static const GstElementDetails gst_synaesthesia_details =
 GST_ELEMENT_DETAILS ("Synaesthesia",
     "Visualization",
     "Creates video visualizations of audio input, using stereo and pitch information",