diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-11-30 08:26:47 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-11-30 08:26:47 +0000 |
commit | 4ad25ff08e3178a8b3c55b520847005c605cbff2 (patch) | |
tree | c950e64997e62d69dde2f7eea3e4e0b1c056abf8 /gst/videofilter | |
parent | d5c2ade62f0c32497c0cce19948d9362e7debd05 (diff) |
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
Diffstat (limited to 'gst/videofilter')
-rw-r--r-- | gst/videofilter/gstvideoflip.c | 8 | ||||
-rw-r--r-- | gst/videofilter/gstvideoflip.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/gst/videofilter/gstvideoflip.c b/gst/videofilter/gstvideoflip.c index 6da681e3..4b23cf30 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 6a830094..5ece67c0 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 |