From 4ad25ff08e3178a8b3c55b520847005c605cbff2 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Wed, 30 Nov 2005 08:26:47 +0000 Subject: [PATCH] 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 --- ChangeLog | 17 +++++++++++++++++ common | 2 +- gst/debug/gstnavigationtest.c | 4 ++-- gst/debug/gstnavigationtest.h | 4 ++-- gst/effectv/gstaging.c | 8 ++++---- gst/effectv/gstdice.c | 10 +++++----- gst/effectv/gstedge.c | 10 +++++----- gst/effectv/gstquark.c | 8 ++++---- gst/effectv/gstrev.c | 8 ++++---- gst/effectv/gstshagadelic.c | 8 ++++---- gst/effectv/gstvertigo.c | 8 ++++---- gst/effectv/gstwarp.c | 8 ++++---- gst/videofilter/gstvideoflip.c | 8 ++++---- gst/videofilter/gstvideoflip.h | 6 +++--- 14 files changed, 63 insertions(+), 46 deletions(-) diff --git a/ChangeLog b/ChangeLog index 95626e2..13b7525f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +2005-11-30 Thomas Vander Stichele + + * 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 * gst/udp/gstdynudpsink.c: diff --git a/common b/common index 33084fb..8db4c61 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 33084fbe0531733bc02aa1d9de608206d5553a15 +Subproject commit 8db4c613eb1aa57dc21d25a4b83b36e3cdedc5ca diff --git a/gst/debug/gstnavigationtest.c b/gst/debug/gstnavigationtest.c index c033972..f31ee96 100644 --- a/gst/debug/gstnavigationtest.c +++ b/gst/debug/gstnavigationtest.c @@ -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; diff --git a/gst/debug/gstnavigationtest.h b/gst/debug/gstnavigationtest.h index b31dacb..a51ec1b 100644 --- a/gst/debug/gstnavigationtest.h +++ b/gst/debug/gstnavigationtest.h @@ -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); diff --git a/gst/effectv/gstaging.c b/gst/effectv/gstaging.c index 6bddf65..c9a9da6 100644 --- a/gst/effectv/gstaging.c +++ b/gst/effectv/gstaging.c @@ -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; diff --git a/gst/effectv/gstdice.c b/gst/effectv/gstdice.c index 12ce2ed..b5492b5 100644 --- a/gst/effectv/gstdice.c +++ b/gst/effectv/gstdice.c @@ -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; } diff --git a/gst/effectv/gstedge.c b/gst/effectv/gstedge.c index 8a34480..3da3870 100644 --- a/gst/effectv/gstedge.c +++ b/gst/effectv/gstedge.c @@ -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; } diff --git a/gst/effectv/gstquark.c b/gst/effectv/gstquark.c index 161eb80..1e35702 100644 --- a/gst/effectv/gstquark.c +++ b/gst/effectv/gstquark.c @@ -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; diff --git a/gst/effectv/gstrev.c b/gst/effectv/gstrev.c index a1482e7..898eb5d 100644 --- a/gst/effectv/gstrev.c +++ b/gst/effectv/gstrev.c @@ -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; diff --git a/gst/effectv/gstshagadelic.c b/gst/effectv/gstshagadelic.c index 6a39f72..b049d0a 100644 --- a/gst/effectv/gstshagadelic.c +++ b/gst/effectv/gstshagadelic.c @@ -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; diff --git a/gst/effectv/gstvertigo.c b/gst/effectv/gstvertigo.c index 04df431..244ca17 100644 --- a/gst/effectv/gstvertigo.c +++ b/gst/effectv/gstvertigo.c @@ -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; diff --git a/gst/effectv/gstwarp.c b/gst/effectv/gstwarp.c index 190d0d5..1d24671 100644 --- a/gst/effectv/gstwarp.c +++ b/gst/effectv/gstwarp.c @@ -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; diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c index 6da681e..4b23cf3 100644 --- a/gst/videofilter/gstvideoflip.c +++ b/gst/videofilter/gstvideoflip.c @@ -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; diff --git a/gst/videofilter/gstvideoflip.h b/gst/videofilter/gstvideoflip.h index 6a83009..5ece67c 100644 --- a/gst/videofilter/gstvideoflip.h +++ b/gst/videofilter/gstvideoflip.h @@ -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,10 +59,10 @@ struct _GstVideoFlip { }; struct _GstVideoFlipClass { - GstVideofilterClass parent_class; + GstVideoFilterClass parent_class; }; -GType gst_video_flip_get_type(void); +GType gst_video_flip_get_type (void); G_END_DECLS -- 2.7.4