gst/volume/gstvolume.c: made set_caps function static
authorStefan Kost <ensonic@users.sourceforge.net>
Wed, 24 Aug 2005 21:32:59 +0000 (21:32 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Wed, 24 Aug 2005 21:32:59 +0000 (21:32 +0000)
Original commit message from CVS:
* gst/volume/gstvolume.c:
made set_caps function static

ChangeLog
gst/volume/gstvolume.c

index 584a4ac72736e21e08821d0ffee07d04cc02712d..cde64f25343fb748d84da81eec53dba43eb87fa4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-25  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst/volume/gstvolume.c:
+          made set_caps function static
+
 2005-08-24  Wim Taymans  <wim@fluendo.com>
 
        * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
index 094de2a0a710335a601fb2917ad22e1e612ff74f..7ca1cf504638e4e9bdbefa2fbb0c258e2c8e47aa 100644 (file)
@@ -134,7 +134,7 @@ static void volume_update_mute (const GValue * value, gpointer data);
 
 static GstFlowReturn volume_transform (GstBaseTransform * base,
     GstBuffer * inbuf, GstBuffer * outbuf);
-gboolean volume_set_caps (GstBaseTransform * base, GstCaps * incaps,
+static gboolean volume_set_caps (GstBaseTransform * base, GstCaps * incaps,
     GstCaps * outcaps);
 
 static void volume_process_float (GstVolume * this, GstClockTime tstamp,
@@ -364,7 +364,7 @@ volume_process_int16 (GstVolume * this, GstClockTime tstamp,
 /* GstBaseTransform vmethod implementations */
 
 /* get notified of caps and plug in the correct process function */
-gboolean
+static gboolean
 volume_set_caps (GstBaseTransform * base, GstCaps * incaps, GstCaps * outcaps)
 {
   GstVolume *this = GST_VOLUME (base);