Replace GST_PLUGINS_LIBS_* with GST_PLUGINS_BASE_*
[platform/upstream/gst-plugins-good.git] / gst / videofilter / gstvideotemplate.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2003> David Schleef <ds@schleef.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * This file was (probably) generated from
23  * $Id$
24  * and
25  * MAKEFILTERVERSION
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #include "config.h"
30 #endif
31
32 #include <gst/gst.h>
33 #include <gstvideofilter.h>
34 #include <string.h>
35
36 #define GST_TYPE_VIDEOTEMPLATE \
37   (gst_videotemplate_get_type())
38 #define GST_VIDEOTEMPLATE(obj) \
39   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEOTEMPLATE,GstVideotemplate))
40 #define GST_VIDEOTEMPLATE_CLASS(klass) \
41   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEOTEMPLATE,GstVideotemplateClass))
42 #define GST_IS_VIDEOTEMPLATE(obj) \
43   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEOTEMPLATE))
44 #define GST_IS_VIDEOTEMPLATE_CLASS(obj) \
45   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEOTEMPLATE))
46
47 typedef struct _GstVideotemplate GstVideotemplate;
48 typedef struct _GstVideotemplateClass GstVideotemplateClass;
49
50 struct _GstVideotemplate
51 {
52   GstVideofilter videofilter;
53
54 };
55
56 struct _GstVideotemplateClass
57 {
58   GstVideofilterClass parent_class;
59 };
60
61
62 /* GstVideotemplate signals and args */
63 enum
64 {
65   /* FILL ME */
66   LAST_SIGNAL
67 };
68
69 enum
70 {
71   ARG_0
72       /* FILL ME */
73 };
74
75 static void gst_videotemplate_base_init (gpointer g_class);
76 static void gst_videotemplate_class_init (gpointer g_class,
77     gpointer class_data);
78 static void gst_videotemplate_init (GTypeInstance * instance, gpointer g_class);
79
80 static void gst_videotemplate_set_property (GObject * object, guint prop_id,
81     const GValue * value, GParamSpec * pspec);
82 static void gst_videotemplate_get_property (GObject * object, guint prop_id,
83     GValue * value, GParamSpec * pspec);
84
85 static void gst_videotemplate_planar411 (GstVideofilter * videofilter,
86     void *dest, void *src);
87 static void gst_videotemplate_setup (GstVideofilter * videofilter);
88
89 GType
90 gst_videotemplate_get_type (void)
91 {
92   static GType videotemplate_type = 0;
93
94   if (!videotemplate_type) {
95     static const GTypeInfo videotemplate_info = {
96       sizeof (GstVideotemplateClass),
97       gst_videotemplate_base_init,
98       NULL,
99       gst_videotemplate_class_init,
100       NULL,
101       NULL,
102       sizeof (GstVideotemplate),
103       0,
104       gst_videotemplate_init,
105     };
106
107     videotemplate_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
108         "GstVideotemplate", &videotemplate_info, 0);
109   }
110   return videotemplate_type;
111 }
112
113 static GstVideofilterFormat gst_videotemplate_formats[] = {
114   {"I420", 12, gst_videotemplate_planar411,},
115 };
116
117
118 static void
119 gst_videotemplate_base_init (gpointer g_class)
120 {
121   static GstElementDetails videotemplate_details =
122       GST_ELEMENT_DETAILS ("Video Filter Template",
123       "Filter/Effect/Video",
124       "Template for a video filter",
125       "David Schleef <ds@schleef.org>");
126   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
127   GstVideofilterClass *videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
128   int i;
129
130   gst_element_class_set_details (element_class, &videotemplate_details);
131
132   for (i = 0; i < G_N_ELEMENTS (gst_videotemplate_formats); i++) {
133     gst_videofilter_class_add_format (videofilter_class,
134         gst_videotemplate_formats + i);
135   }
136
137   gst_videofilter_class_add_pad_templates (GST_VIDEOFILTER_CLASS (g_class));
138 }
139
140 static void
141 gst_videotemplate_class_init (gpointer g_class, gpointer class_data)
142 {
143   GObjectClass *gobject_class;
144   GstVideofilterClass *videofilter_class;
145
146   gobject_class = G_OBJECT_CLASS (g_class);
147   videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
148
149 #if 0
150   g_object_class_install_property (gobject_class, ARG_METHOD,
151       g_param_spec_enum ("method", "method", "method",
152           GST_TYPE_VIDEOTEMPLATE_METHOD, GST_VIDEOTEMPLATE_METHOD_1,
153           G_PARAM_READWRITE));
154 #endif
155
156   gobject_class->set_property = gst_videotemplate_set_property;
157   gobject_class->get_property = gst_videotemplate_get_property;
158
159   videofilter_class->setup = gst_videotemplate_setup;
160 }
161
162 static void
163 gst_videotemplate_init (GTypeInstance * instance, gpointer g_class)
164 {
165   GstVideotemplate *videotemplate = GST_VIDEOTEMPLATE (instance);
166   GstVideofilter *videofilter;
167
168   GST_DEBUG ("gst_videotemplate_init");
169
170   videofilter = GST_VIDEOFILTER (videotemplate);
171
172   /* do stuff */
173 }
174
175 static void
176 gst_videotemplate_set_property (GObject * object, guint prop_id,
177     const GValue * value, GParamSpec * pspec)
178 {
179   GstVideotemplate *src;
180
181   /* it's not null if we got it, but it might not be ours */
182   g_return_if_fail (GST_IS_VIDEOTEMPLATE (object));
183   src = GST_VIDEOTEMPLATE (object);
184
185   GST_DEBUG ("gst_videotemplate_set_property");
186   switch (prop_id) {
187 #if 0
188     case ARG_METHOD:
189       src->method = g_value_get_enum (value);
190       break;
191 #endif
192     default:
193       break;
194   }
195 }
196
197 static void
198 gst_videotemplate_get_property (GObject * object, guint prop_id, GValue * value,
199     GParamSpec * pspec)
200 {
201   GstVideotemplate *src;
202
203   /* it's not null if we got it, but it might not be ours */
204   g_return_if_fail (GST_IS_VIDEOTEMPLATE (object));
205   src = GST_VIDEOTEMPLATE (object);
206
207   switch (prop_id) {
208 #if 0
209     case ARG_METHOD:
210       g_value_set_enum (value, src->method);
211       break;
212 #endif
213     default:
214       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
215       break;
216   }
217 }
218
219 static gboolean
220 plugin_init (GstPlugin * plugin)
221 {
222   return gst_element_register (plugin, "videotemplate", GST_RANK_NONE,
223       GST_TYPE_VIDEOTEMPLATE);
224 }
225
226 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
227     GST_VERSION_MINOR,
228     "videotemplate",
229     "Template for a video filter",
230     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
231
232      static void gst_videotemplate_setup (GstVideofilter * videofilter)
233 {
234   GstVideotemplate *videotemplate;
235
236   g_return_if_fail (GST_IS_VIDEOTEMPLATE (videofilter));
237   videotemplate = GST_VIDEOTEMPLATE (videofilter);
238
239   /* if any setup needs to be done, do it here */
240
241 }
242
243 static void
244 gst_videotemplate_planar411 (GstVideofilter * videofilter,
245     void *dest, void *src)
246 {
247   GstVideotemplate *videotemplate;
248   int width = gst_videofilter_get_input_width (videofilter);
249   int height = gst_videofilter_get_input_height (videofilter);
250
251   g_return_if_fail (GST_IS_VIDEOTEMPLATE (videofilter));
252   videotemplate = GST_VIDEOTEMPLATE (videofilter);
253
254   /* do something interesting here.  This simply copies the source
255    * to the destination. */
256   memcpy (dest, src, width * height + (width / 2) * (height / 2) * 2);
257 }