summaryrefslogtreecommitdiff
path: root/gst/autoconvert/gstautovideoconvert.h
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/gstautovideoconvert.h
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/gstautovideoconvert.h')
-rw-r--r--gst/autoconvert/gstautovideoconvert.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/gst/autoconvert/gstautovideoconvert.h b/gst/autoconvert/gstautovideoconvert.h
new file mode 100644
index 000000000..9136efaed
--- /dev/null
+++ b/gst/autoconvert/gstautovideoconvert.h
@@ -0,0 +1,55 @@
+/* GStreamer
+ * Copyright 2010 ST-Ericsson SA
+ * @author: Benjamin Gaignard <benjamin.gaignard@stericsson.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GST_AUTO_VIDEO_CONVERT_H__
+#define __GST_AUTO_VIDEO_CONVERT_H__
+
+#include <gst/gst.h>
+#include <gst/gstbin.h>
+#include "gstautoconvert.h"
+
+G_BEGIN_DECLS
+#define GST_TYPE_AUTO_VIDEO_CONVERT (gst_auto_video_convert_get_type())
+#define GST_AUTO_VIDEO_CONVERT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GST_TYPE_AUTO_VIDEO_CONVERT,GstAutoVideoConvert))
+#define GST_AUTO_VIDEO_CONVERT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), GST_TYPE_AUTO_VIDEO_CONVERT,GstAutoVideoConvertClass))
+#define GST_IS_AUTO_VIDEO_CONVERT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GST_TYPE_AUTO_VIDEO_CONVERT))
+#define GST_IS_AUTO_VIDEO_CONVERT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GST_TYPE_AUTO_VIDEO_CONVERT))
+typedef struct _GstAutoVideoConvert GstAutoVideoConvert;
+typedef struct _GstAutoVideoConvertClass GstAutoVideoConvertClass;
+
+struct _GstAutoVideoConvert
+{
+ /*< private > */
+ GstBin bin; /* we extend GstBin */
+
+ GstElement *autoconvert;
+ GstPad *sinkpad;
+ GstPad *srcpad;
+};
+
+struct _GstAutoVideoConvertClass
+{
+ GstBinClass parent_class;
+};
+
+GType gst_auto_video_convert_get_type (void);
+
+G_END_DECLS
+#endif /* __GST_AUTO_VIDEO_CONVERT_H__ */