summaryrefslogtreecommitdiff
path: root/gst/videoconvert
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2014-09-24 16:19:30 +0200
committerWim Taymans <wtaymans@redhat.com>2014-09-24 16:19:30 +0200
commit98c42dc5e43e5b4e211519cd52ec1a8957e98166 (patch)
tree8c109fc1a3b00c75600506e8f307e695ffee9abf /gst/videoconvert
parentb2fd20c41677e93d1b41f435738cfdeaf08b304f (diff)
downloadgstreamer-plugins-base-98c42dc5e43e5b4e211519cd52ec1a8957e98166.tar.gz
video: convertor -> converter
Diffstat (limited to 'gst/videoconvert')
-rw-r--r--gst/videoconvert/gstvideoconvert.c8
-rw-r--r--gst/videoconvert/gstvideoconvert.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/gst/videoconvert/gstvideoconvert.c b/gst/videoconvert/gstvideoconvert.c
index 3bca13ae8..dce4638df 100644
--- a/gst/videoconvert/gstvideoconvert.c
+++ b/gst/videoconvert/gstvideoconvert.c
@@ -401,7 +401,7 @@ gst_video_convert_set_info (GstVideoFilter * filter,
space = GST_VIDEO_CONVERT_CAST (filter);
if (space->convert) {
- gst_video_convertor_free (space->convert);
+ gst_video_converter_free (space->convert);
space->convert = NULL;
}
@@ -419,7 +419,7 @@ gst_video_convert_set_info (GstVideoFilter * filter,
goto format_mismatch;
- space->convert = gst_video_convertor_new (in_info, out_info,
+ space->convert = gst_video_converter_new (in_info, out_info,
gst_structure_new ("GstVideoConvertConfig",
"dither", GST_TYPE_VIDEO_DITHER_METHOD, space->dither, NULL));
if (space->convert == NULL)
@@ -449,7 +449,7 @@ gst_video_convert_finalize (GObject * obj)
GstVideoConvert *space = GST_VIDEO_CONVERT (obj);
if (space->convert) {
- gst_video_convertor_free (space->convert);
+ gst_video_converter_free (space->convert);
}
G_OBJECT_CLASS (parent_class)->finalize (obj);
@@ -554,7 +554,7 @@ gst_video_convert_transform_frame (GstVideoFilter * filter,
GST_VIDEO_INFO_NAME (&filter->in_info),
GST_VIDEO_INFO_NAME (&filter->out_info));
- gst_video_convertor_frame (space->convert, out_frame, in_frame);
+ gst_video_converter_frame (space->convert, out_frame, in_frame);
return GST_FLOW_OK;
}
diff --git a/gst/videoconvert/gstvideoconvert.h b/gst/videoconvert/gstvideoconvert.h
index b1834f0bb..e93d9c3a9 100644
--- a/gst/videoconvert/gstvideoconvert.h
+++ b/gst/videoconvert/gstvideoconvert.h
@@ -46,7 +46,7 @@ typedef struct _GstVideoConvertClass GstVideoConvertClass;
struct _GstVideoConvert {
GstVideoFilter element;
- GstVideoConvertor *convert;
+ GstVideoConverter *convert;
GstVideoDitherMethod dither;
};