summaryrefslogtreecommitdiffstats
path: root/gst/debug
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-30 08:26:47 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-30 08:26:47 +0000
commit4ad25ff08e3178a8b3c55b520847005c605cbff2 (patch)
treec950e64997e62d69dde2f7eea3e4e0b1c056abf8 /gst/debug
parentd5c2ade62f0c32497c0cce19948d9362e7debd05 (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/debug')
-rw-r--r--gst/debug/gstnavigationtest.c4
-rw-r--r--gst/debug/gstnavigationtest.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/gst/debug/gstnavigationtest.c b/gst/debug/gstnavigationtest.c
index c0339727..f31ee96e 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 b31dacb6..a51ec1bd 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);