mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
gst/: update for symbols change
Original commit message from CVS: * gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type): * gst/debug/gstnavigationtest.h: * gst/effectv/gstaging.c: (gst_agingtv_get_type): * gst/effectv/gstdice.c: (gst_dicetv_get_type): * gst/effectv/gstedge.c: (gst_edgetv_get_type): * gst/effectv/gstquark.c: (gst_quarktv_get_type): * gst/effectv/gstrev.c: (gst_revtv_get_type): * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type): * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type): * gst/effectv/gstwarp.c: (gst_warptv_get_type): * gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property), (gst_video_flip_get_type): * gst/videofilter/gstvideoflip.h: update for symbols change
This commit is contained in:
parent
d5c2ade62f
commit
4ad25ff08e
14 changed files with 63 additions and 46 deletions
17
ChangeLog
17
ChangeLog
|
@ -1,3 +1,20 @@
|
|||
2005-11-30 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/debug/gstnavigationtest.c: (gst_navigationtest_get_type):
|
||||
* gst/debug/gstnavigationtest.h:
|
||||
* gst/effectv/gstaging.c: (gst_agingtv_get_type):
|
||||
* gst/effectv/gstdice.c: (gst_dicetv_get_type):
|
||||
* gst/effectv/gstedge.c: (gst_edgetv_get_type):
|
||||
* gst/effectv/gstquark.c: (gst_quarktv_get_type):
|
||||
* gst/effectv/gstrev.c: (gst_revtv_get_type):
|
||||
* gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type):
|
||||
* gst/effectv/gstvertigo.c: (gst_vertigotv_get_type):
|
||||
* gst/effectv/gstwarp.c: (gst_warptv_get_type):
|
||||
* gst/videofilter/gstvideoflip.c: (gst_video_flip_set_property),
|
||||
(gst_video_flip_get_type):
|
||||
* gst/videofilter/gstvideoflip.h:
|
||||
update for symbols change
|
||||
|
||||
2005-11-29 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* gst/udp/gstdynudpsink.c:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 33084fbe0531733bc02aa1d9de608206d5553a15
|
||||
Subproject commit 8db4c613eb1aa57dc21d25a4b83b36e3cdedc5ca
|
|
@ -51,7 +51,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_navigationtest_handle_src_event (GstPad * pad, GstEvent * event)
|
||||
|
@ -330,7 +330,7 @@ gst_navigationtest_get_type (void)
|
|||
gst_navigationtest_init,
|
||||
};
|
||||
|
||||
navigationtest_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
|
||||
navigationtest_type = g_type_register_static (GST_TYPE_VIDEO_FILTER,
|
||||
"GstNavigationtest", &navigationtest_info, 0);
|
||||
}
|
||||
return navigationtest_type;
|
||||
|
|
|
@ -48,7 +48,7 @@ typedef struct
|
|||
} ButtonClick;
|
||||
|
||||
struct _GstNavigationtest {
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
|
||||
|
@ -59,7 +59,7 @@ struct _GstNavigationtest {
|
|||
};
|
||||
|
||||
struct _GstNavigationtestClass {
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_navigationtest_get_type(void);
|
||||
|
|
|
@ -73,7 +73,7 @@ typedef struct _GstAgingTVClass GstAgingTVClass;
|
|||
|
||||
struct _GstAgingTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gint aging_mode;
|
||||
|
@ -88,7 +88,7 @@ struct _GstAgingTV
|
|||
|
||||
struct _GstAgingTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_agingtv_get_type (void);
|
||||
|
@ -112,7 +112,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_agingtv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -383,7 +383,7 @@ gst_agingtv_get_type (void)
|
|||
gst_agingtv_init,
|
||||
};
|
||||
|
||||
agingtv_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
|
||||
agingtv_type = g_type_register_static (GST_TYPE_VIDEO_FILTER,
|
||||
"GstAgingTV", &agingtv_info, 0);
|
||||
}
|
||||
return agingtv_type;
|
||||
|
|
|
@ -50,7 +50,7 @@ DiceDir;
|
|||
|
||||
struct _GstDiceTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gchar *dicemap;
|
||||
|
@ -63,7 +63,7 @@ struct _GstDiceTV
|
|||
|
||||
struct _GstDiceTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_dicetv_get_type (void);
|
||||
|
@ -91,7 +91,7 @@ static GstStaticPadTemplate gst_dicetv_sink_template =
|
|||
GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_xBGR)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
enum
|
||||
{
|
||||
|
@ -358,8 +358,8 @@ gst_dicetv_get_type (void)
|
|||
};
|
||||
|
||||
dicetv_type =
|
||||
g_type_register_static (GST_TYPE_VIDEOFILTER, "GstDiceTV", &dicetv_info,
|
||||
0);
|
||||
g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstDiceTV",
|
||||
&dicetv_info, 0);
|
||||
}
|
||||
return dicetv_type;
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ typedef struct _GstEdgeTVClass GstEdgeTVClass;
|
|||
|
||||
struct _GstEdgeTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gint map_width, map_height;
|
||||
|
@ -57,7 +57,7 @@ struct _GstEdgeTV
|
|||
|
||||
struct _GstEdgeTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_edgetv_get_type (void);
|
||||
|
@ -81,7 +81,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_edgetv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -291,8 +291,8 @@ gst_edgetv_get_type (void)
|
|||
};
|
||||
|
||||
edgetv_type =
|
||||
g_type_register_static (GST_TYPE_VIDEOFILTER, "GstEdgeTV", &edgetv_info,
|
||||
0);
|
||||
g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstEdgeTV",
|
||||
&edgetv_info, 0);
|
||||
}
|
||||
return edgetv_type;
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ typedef struct _GstQuarkTVClass GstQuarkTVClass;
|
|||
|
||||
struct _GstQuarkTV
|
||||
{
|
||||
GstVideofilter element;
|
||||
GstVideoFilter element;
|
||||
|
||||
gint width, height;
|
||||
gint area;
|
||||
|
@ -63,7 +63,7 @@ struct _GstQuarkTV
|
|||
|
||||
struct _GstQuarkTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
enum
|
||||
|
@ -95,7 +95,7 @@ static GstStaticPadTemplate gst_quarktv_sink_template =
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx "; " GST_VIDEO_CAPS_RGBx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_quarktv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -365,7 +365,7 @@ gst_quarktv_get_type (void)
|
|||
gst_quarktv_init,
|
||||
};
|
||||
|
||||
quarktv_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
|
||||
quarktv_type = g_type_register_static (GST_TYPE_VIDEO_FILTER,
|
||||
"GstQuarkTV", &quarktv_info, 0);
|
||||
}
|
||||
return quarktv_type;
|
||||
|
|
|
@ -69,7 +69,7 @@ typedef struct _GstRevTVClass GstRevTVClass;
|
|||
|
||||
struct _GstRevTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gint vgrabtime;
|
||||
|
@ -80,7 +80,7 @@ struct _GstRevTV
|
|||
|
||||
struct _GstRevTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
enum
|
||||
|
@ -112,7 +112,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_revtv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -325,7 +325,7 @@ gst_revtv_get_type (void)
|
|||
};
|
||||
|
||||
revtv_type =
|
||||
g_type_register_static (GST_TYPE_VIDEOFILTER, "GstRevTV", &revtv_info,
|
||||
g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstRevTV", &revtv_info,
|
||||
0);
|
||||
}
|
||||
return revtv_type;
|
||||
|
|
|
@ -49,7 +49,7 @@ typedef struct _GstShagadelicTVClass GstShagadelicTVClass;
|
|||
|
||||
struct _GstShagadelicTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gint stat;
|
||||
|
@ -64,7 +64,7 @@ struct _GstShagadelicTV
|
|||
|
||||
struct _GstShagadelicTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_shagadelictv_get_type (void);
|
||||
|
@ -91,7 +91,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_shagadelictv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -327,7 +327,7 @@ gst_shagadelictv_get_type (void)
|
|||
};
|
||||
|
||||
shagadelictv_type =
|
||||
g_type_register_static (GST_TYPE_VIDEOFILTER, "GstShagadelicTV",
|
||||
g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstShagadelicTV",
|
||||
&shagadelictv_info, 0);
|
||||
}
|
||||
return shagadelictv_type;
|
||||
|
|
|
@ -49,7 +49,7 @@ typedef struct _GstVertigoTVClass GstVertigoTVClass;
|
|||
|
||||
struct _GstVertigoTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
guint32 *buffer;
|
||||
|
@ -63,7 +63,7 @@ struct _GstVertigoTV
|
|||
|
||||
struct _GstVertigoTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_vertigotv_get_type (void);
|
||||
|
@ -95,7 +95,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_BGRx)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_vertigotv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -368,7 +368,7 @@ gst_vertigotv_get_type (void)
|
|||
};
|
||||
|
||||
vertigotv_type =
|
||||
g_type_register_static (GST_TYPE_VIDEOFILTER, "GstVertigoTV",
|
||||
g_type_register_static (GST_TYPE_VIDEO_FILTER, "GstVertigoTV",
|
||||
&vertigotv_info, 0);
|
||||
}
|
||||
return vertigotv_type;
|
||||
|
|
|
@ -64,7 +64,7 @@ typedef struct _GstWarpTVClass GstWarpTVClass;
|
|||
|
||||
struct _GstWarpTV
|
||||
{
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint width, height;
|
||||
gint *offstable;
|
||||
|
@ -76,7 +76,7 @@ struct _GstWarpTV
|
|||
|
||||
struct _GstWarpTVClass
|
||||
{
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_warptv_get_type (void);
|
||||
|
@ -106,7 +106,7 @@ static GstStaticPadTemplate gst_warptv_sink_template =
|
|||
GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_xBGR)
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
static gboolean
|
||||
gst_warptv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
|
||||
|
@ -330,7 +330,7 @@ gst_warptv_get_type (void)
|
|||
gst_warptv_init,
|
||||
};
|
||||
|
||||
warptv_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
|
||||
warptv_type = g_type_register_static (GST_TYPE_VIDEO_FILTER,
|
||||
"GstWarpTV", &warptv_info, 0);
|
||||
}
|
||||
return warptv_type;
|
||||
|
|
|
@ -64,7 +64,7 @@ GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ IYUV, I420, YV12 }"))
|
||||
);
|
||||
|
||||
static GstVideofilterClass *parent_class = NULL;
|
||||
static GstVideoFilterClass *parent_class = NULL;
|
||||
|
||||
#define GST_TYPE_VIDEO_FLIP_METHOD (gst_video_flip_method_get_type())
|
||||
|
||||
|
@ -549,11 +549,11 @@ gst_video_flip_set_property (GObject * object, guint prop_id,
|
|||
const GValue * value, GParamSpec * pspec)
|
||||
{
|
||||
GstVideoFlip *videoflip;
|
||||
GstVideofilter *videofilter;
|
||||
GstVideoFilter *videofilter;
|
||||
|
||||
g_return_if_fail (GST_IS_VIDEO_FLIP (object));
|
||||
videoflip = GST_VIDEO_FLIP (object);
|
||||
videofilter = GST_VIDEOFILTER (object);
|
||||
videofilter = GST_VIDEO_FILTER (object);
|
||||
|
||||
switch (prop_id) {
|
||||
case ARG_METHOD:
|
||||
|
@ -677,7 +677,7 @@ gst_video_flip_get_type (void)
|
|||
gst_video_flip_init,
|
||||
};
|
||||
|
||||
video_flip_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
|
||||
video_flip_type = g_type_register_static (GST_TYPE_VIDEO_FILTER,
|
||||
"GstVideoFlip", &video_flip_info, 0);
|
||||
}
|
||||
return video_flip_type;
|
||||
|
|
|
@ -50,7 +50,7 @@ typedef struct _GstVideoFlip GstVideoFlip;
|
|||
typedef struct _GstVideoFlipClass GstVideoFlipClass;
|
||||
|
||||
struct _GstVideoFlip {
|
||||
GstVideofilter videofilter;
|
||||
GstVideoFilter videofilter;
|
||||
|
||||
gint from_width, from_height;
|
||||
gint to_width, to_height;
|
||||
|
@ -59,7 +59,7 @@ struct _GstVideoFlip {
|
|||
};
|
||||
|
||||
struct _GstVideoFlipClass {
|
||||
GstVideofilterClass parent_class;
|
||||
GstVideoFilterClass parent_class;
|
||||
};
|
||||
|
||||
GType gst_video_flip_get_type (void);
|
||||
|
|
Loading…
Reference in a new issue