diff options
Diffstat (limited to 'gst/effectv')
-rw-r--r-- | gst/effectv/gstaging.c | 8 | ||||
-rw-r--r-- | gst/effectv/gstdice.c | 10 | ||||
-rw-r--r-- | gst/effectv/gstedge.c | 10 | ||||
-rw-r--r-- | gst/effectv/gstquark.c | 8 | ||||
-rw-r--r-- | gst/effectv/gstrev.c | 8 | ||||
-rw-r--r-- | gst/effectv/gstshagadelic.c | 8 | ||||
-rw-r--r-- | gst/effectv/gstvertigo.c | 8 | ||||
-rw-r--r-- | gst/effectv/gstwarp.c | 8 |
8 files changed, 34 insertions, 34 deletions
diff --git a/gst/effectv/gstaging.c b/gst/effectv/gstaging.c index 6bddf65d..c9a9da6e 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 12ce2ed9..b5492b5e 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 8a34480e..3da3870d 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 161eb809..1e357028 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 a1482e77..898eb5dd 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 6a39f723..b049d0ae 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 04df4310..244ca171 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 190d0d58..1d24671b 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; |