diff --git a/ChangeLog b/ChangeLog index 584a4ac727..cde64f2534 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-08-25 Stefan Kost + + * gst/volume/gstvolume.c: + made set_caps function static + 2005-08-24 Wim Taymans * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init), diff --git a/gst/volume/gstvolume.c b/gst/volume/gstvolume.c index 094de2a0a7..7ca1cf5046 100644 --- a/gst/volume/gstvolume.c +++ b/gst/volume/gstvolume.c @@ -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);