summaryrefslogtreecommitdiff
path: root/gst/autoconvert/plugin.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-12-16 09:56:00 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-12-16 09:59:42 +0100
commit2561bb8fa7d6dfd143024a81198cd047b1345d83 (patch)
treeee6d278428d3ffd1c19d20c50942f5f28862de7b /gst/autoconvert/plugin.c
parent7ae4aaaee6831b9c8bad3c25e99d735435a2a1e0 (diff)
downloadgstreamer-plugins-bad-2561bb8fa7d6dfd143024a81198cd047b1345d83.tar.gz
autoconvert: Rename autocolorspace to autovideoconvert
This doesn't just convert between color spaces.
Diffstat (limited to 'gst/autoconvert/plugin.c')
-rw-r--r--gst/autoconvert/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/autoconvert/plugin.c b/gst/autoconvert/plugin.c
index dd2ca033b..0de71d3bb 100644
--- a/gst/autoconvert/plugin.c
+++ b/gst/autoconvert/plugin.c
@@ -23,7 +23,7 @@
#endif
#include "gstautoconvert.h"
-#include "gstautocolorspace.h"
+#include "gstautovideoconvert.h"
static gboolean
plugin_init (GstPlugin * plugin)
@@ -33,8 +33,8 @@ plugin_init (GstPlugin * plugin)
ret = gst_element_register (plugin, "autoconvert",
GST_RANK_NONE, GST_TYPE_AUTO_CONVERT);
- ret &= gst_element_register (plugin, "autocolorspace",
- GST_RANK_NONE, GST_TYPE_AUTO_COLOR_SPACE);
+ ret &= gst_element_register (plugin, "autovideoconvert",
+ GST_RANK_NONE, GST_TYPE_AUTO_VIDEO_CONVERT);
return ret;
}