summaryrefslogtreecommitdiff
path: root/gst/gaudieffects/gstdilate.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2010-07-28 17:34:02 +0200
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-07-28 18:42:05 +0200
commit120d4a29558a4437e09f012a243d6e879293227a (patch)
tree0beb43bb11f2ae40a695e45da111815458ef3b8f /gst/gaudieffects/gstdilate.c
parent691901da51799cb04d17ed9ba94619bc7fd61f73 (diff)
gaudieffects: fix structure names to comply with the plugin moving guidelines
Diffstat (limited to 'gst/gaudieffects/gstdilate.c')
-rw-r--r--gst/gaudieffects/gstdilate.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/gst/gaudieffects/gstdilate.c b/gst/gaudieffects/gstdilate.c
index 7a68ccf59..0a7ebaea0 100644
--- a/gst/gaudieffects/gstdilate.c
+++ b/gst/gaudieffects/gstdilate.c
@@ -111,7 +111,7 @@ static GstStaticPadTemplate src_factory = GST_STATIC_PAD_TEMPLATE ("src",
GST_STATIC_CAPS (CAPS_STR)
);
-GST_BOILERPLATE (Gstdilate, gst_dilate, GstVideoFilter, GST_TYPE_VIDEO_FILTER);
+GST_BOILERPLATE (GstDilate, gst_dilate, GstVideoFilter, GST_TYPE_VIDEO_FILTER);
static void gst_dilate_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec);
@@ -144,7 +144,7 @@ gst_dilate_base_init (gpointer gclass)
/* Initialize the dilate's class. */
static void
-gst_dilate_class_init (GstdilateClass * klass)
+gst_dilate_class_init (GstDilateClass * klass)
{
GObjectClass *gobject_class = (GObjectClass *) klass;
GstBaseTransformClass *trans_class = (GstBaseTransformClass *) klass;
@@ -166,7 +166,7 @@ gst_dilate_class_init (GstdilateClass * klass)
* initialize instance structure.
*/
static void
-gst_dilate_init (Gstdilate * filter, GstdilateClass * gclass)
+gst_dilate_init (GstDilate * filter, GstDilateClass * gclass)
{
filter->silent = FALSE;
}
@@ -175,7 +175,7 @@ static void
gst_dilate_set_property (GObject * object, guint prop_id,
const GValue * value, GParamSpec * pspec)
{
- Gstdilate *filter = GST_DILATE (object);
+ GstDilate *filter = GST_DILATE (object);
switch (prop_id) {
case PROP_SILENT:
@@ -191,7 +191,7 @@ static void
gst_dilate_get_property (GObject * object, guint prop_id,
GValue * value, GParamSpec * pspec)
{
- Gstdilate *filter = GST_DILATE (object);
+ GstDilate *filter = GST_DILATE (object);
switch (prop_id) {
case PROP_SILENT:
@@ -210,7 +210,7 @@ static gboolean
gst_dilate_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
GstCaps * outcaps)
{
- Gstdilate *filter = GST_DILATE (btrans);
+ GstDilate *filter = GST_DILATE (btrans);
GstStructure *structure;
gboolean ret = TRUE;
@@ -226,7 +226,7 @@ static GstFlowReturn
gst_dilate_transform (GstBaseTransform * btrans,
GstBuffer * in_buf, GstBuffer * out_buf)
{
- Gstdilate *filter = GST_DILATE (btrans);
+ GstDilate *filter = GST_DILATE (btrans);
gint video_size;
guint32 *src = (guint32 *) GST_BUFFER_DATA (in_buf);