mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
gst/volume/gstvolume.c: made set_caps function static
Original commit message from CVS: * gst/volume/gstvolume.c: made set_caps function static
This commit is contained in:
parent
963941df57
commit
be10c8f8ec
2 changed files with 7 additions and 2 deletions
|
@ -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),
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue