mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
Fix the fixate functions to handle new prototype:
Original commit message from CVS: Fix the fixate functions to handle new prototype: * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate): * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_fixate): * sys/oss/gstosssink.c: (gst_osssink_sink_fixate): * sys/ximage/ximagesink.c: (gst_ximagesink_fixate): * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
This commit is contained in:
parent
408cd46e50
commit
5cbe819fe2
5 changed files with 15 additions and 7 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2004-01-04 David Schleef <ds@schleef.org>
|
||||
|
||||
Fix the fixate functions to handle new prototype:
|
||||
* gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
|
||||
* gst/videotestsrc/gstvideotestsrc.c:
|
||||
(gst_videotestsrc_src_fixate):
|
||||
* sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
|
||||
* sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
|
||||
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
|
||||
|
||||
2004-01-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
|
||||
|
||||
* sys/ximage/ximagesink.h:
|
||||
|
|
|
@ -99,7 +99,7 @@ static gboolean gst_sinesrc_src_query (GstPad *pad,
|
|||
gint64 *value);
|
||||
|
||||
static GstData* gst_sinesrc_get (GstPad *pad);
|
||||
static GstCaps * gst_sinesrc_src_fixate (GstPad *pad, const GstCaps *caps, gpointer user_data);
|
||||
static GstCaps * gst_sinesrc_src_fixate (GstPad *pad, const GstCaps *caps);
|
||||
|
||||
static GstElementClass *parent_class = NULL;
|
||||
/*static guint gst_sinesrc_signals[LAST_SIGNAL] = { 0 }; */
|
||||
|
@ -216,8 +216,7 @@ gst_sinesrc_init (GstSineSrc *src)
|
|||
}
|
||||
|
||||
static GstCaps *
|
||||
gst_sinesrc_src_fixate (GstPad *pad, const GstCaps *caps,
|
||||
gpointer user_data)
|
||||
gst_sinesrc_src_fixate (GstPad *pad, const GstCaps *caps)
|
||||
{
|
||||
GstStructure *structure;
|
||||
GstCaps *newcaps;
|
||||
|
|
|
@ -194,8 +194,7 @@ gst_videotestsrc_set_clock (GstElement *element, GstClock *clock)
|
|||
}
|
||||
|
||||
static GstCaps *
|
||||
gst_videotestsrc_src_fixate (GstPad * pad, const GstCaps * caps,
|
||||
gpointer user_data)
|
||||
gst_videotestsrc_src_fixate (GstPad * pad, const GstCaps * caps)
|
||||
{
|
||||
GstStructure *structure;
|
||||
GstCaps *newcaps;
|
||||
|
|
|
@ -510,7 +510,7 @@ gst_ximagesink_xcontext_clear (GstXImageSink *ximagesink)
|
|||
/* Element stuff */
|
||||
|
||||
static GstCaps *
|
||||
gst_ximagesink_fixate (GstPad *pad, const GstCaps *caps, gpointer ignore)
|
||||
gst_ximagesink_fixate (GstPad *pad, const GstCaps *caps)
|
||||
{
|
||||
GstStructure *structure;
|
||||
GstCaps *newcaps;
|
||||
|
|
|
@ -605,7 +605,7 @@ gst_xvimagesink_xcontext_clear (GstXvImageSink *xvimagesink)
|
|||
/* Element stuff */
|
||||
|
||||
static GstCaps *
|
||||
gst_xvimagesink_fixate (GstPad *pad, const GstCaps *caps, gpointer ignore)
|
||||
gst_xvimagesink_fixate (GstPad *pad, const GstCaps *caps)
|
||||
{
|
||||
GstStructure *structure;
|
||||
GstCaps *newcaps;
|
||||
|
|
Loading…
Reference in a new issue