2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4 * EffecTV - Realtime Digital Video Effector
5 * Copyright (C) 2001 FUKUCHI Kentarou
7 * EffecTV is free software. This library is free software;
8 * you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Library General Public License for more details.
18 * You should have received a copy of the GNU Library General Public
19 * License along with this library; if not, write to the
20 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
23 * From main.c of warp-1.1:
25 * Simple DirectMedia Layer demo
26 * Realtime picture 'gooing'
27 * by sam lantinga slouken@devolution.com
36 #include "gsteffectv.h"
39 #define M_PI 3.14159265358979323846
42 #define GST_TYPE_WARPTV \
43 (gst_warptv_get_type())
44 #define GST_WARPTV(obj) \
45 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WARPTV,GstWarpTV))
46 #define GST_WARPTV_CLASS(klass) \
47 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ULAW,GstWarpTV))
48 #define GST_IS_WARPTV(obj) \
49 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WARPTV))
50 #define GST_IS_WARPTV_CLASS(obj) \
51 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WARPTV))
53 typedef struct _GstWarpTV GstWarpTV;
54 typedef struct _GstWarpTVClass GstWarpTVClass;
60 GstPad *sinkpad, *srcpad;
66 gint32 sintable[1024+256];
70 struct _GstWarpTVClass
72 GstElementClass parent_class;
75 /* elementfactory information */
76 GstElementDetails gst_warptv_details = {
78 "Filter/Video/Effect",
80 "WarpTV does realtime goo'ing of the video input",
82 "Sam Lantinga <slouken@devolution.com>",
83 "Wim Taymans <wim.taymans@chello.be>, "
84 "(C) 2001 FUKUCHI Kentarou",
88 /* Filter signals and args */
100 static void gst_warptv_class_init (GstWarpTVClass * klass);
101 static void gst_warptv_init (GstWarpTV * filter);
103 static void gst_warptv_initialize (GstWarpTV *filter);
105 static void gst_warptv_set_property (GObject * object, guint prop_id,
106 const GValue * value, GParamSpec * pspec);
107 static void gst_warptv_get_property (GObject * object, guint prop_id,
108 GValue * value, GParamSpec * pspec);
110 static void gst_warptv_chain (GstPad * pad, GstBuffer * buf);
112 static GstElementClass *parent_class = NULL;
113 /*static guint gst_warptv_signals[LAST_SIGNAL] = { 0 }; */
115 GType gst_warptv_get_type (void)
117 static GType warptv_type = 0;
120 static const GTypeInfo warptv_info = {
121 sizeof (GstWarpTVClass), NULL,
123 (GClassInitFunc) gst_warptv_class_init,
128 (GInstanceInitFunc) gst_warptv_init,
131 warptv_type = g_type_register_static (GST_TYPE_ELEMENT, "GstWarpTV", &warptv_info, 0);
137 gst_warptv_class_init (GstWarpTVClass * klass)
139 GObjectClass *gobject_class;
140 GstElementClass *gstelement_class;
142 gobject_class = (GObjectClass *) klass;
143 gstelement_class = (GstElementClass *) klass;
145 parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
147 gobject_class->set_property = gst_warptv_set_property;
148 gobject_class->get_property = gst_warptv_get_property;
151 static GstPadLinkReturn
152 gst_warptv_sinkconnect (GstPad * pad, GstCaps * caps)
156 filter = GST_WARPTV (gst_pad_get_parent (pad));
158 if (!GST_CAPS_IS_FIXED (caps))
159 return GST_PAD_LINK_DELAYED;
161 gst_caps_get_int (caps, "width", &filter->width);
162 gst_caps_get_int (caps, "height", &filter->height);
164 gst_warptv_initialize (filter);
166 return gst_pad_try_set_caps (filter->srcpad, caps);
170 gst_warptv_init (GstWarpTV * filter)
172 filter->sinkpad = gst_pad_new_from_template (gst_effectv_sink_factory (), "sink");
173 gst_pad_set_chain_function (filter->sinkpad, gst_warptv_chain);
174 gst_pad_set_link_function (filter->sinkpad, gst_warptv_sinkconnect);
175 gst_element_add_pad (GST_ELEMENT (filter), filter->sinkpad);
177 filter->srcpad = gst_pad_new_from_template (gst_effectv_src_factory (), "src");
178 gst_element_add_pad (GST_ELEMENT (filter), filter->srcpad);
181 filter->disttable = NULL;
182 filter->offstable = NULL;
187 initSinTable (GstWarpTV *filter)
189 gint32 *tptr, *tsinptr;
192 tsinptr = tptr = filter->sintable;
194 for (i = 0; i < 1024; i++)
195 *tptr++ = (int) (sin (i * M_PI / 512) * 32767);
197 for (i = 0; i < 256; i++)
198 *tptr++ = *tsinptr++;
202 initOffsTable (GstWarpTV *filter)
206 for (y = 0; y < filter->height; y++) {
207 filter->offstable[y] = y * filter->width;
212 initDistTable (GstWarpTV *filter)
214 gint32 halfw, halfh, *distptr;
221 halfw = filter->width>> 1;
222 halfh = filter->height >> 1;
224 distptr = filter->disttable;
226 m = sqrt ((double)(halfw * halfw + halfh * halfh));
228 for (y = -halfh; y < halfh; y++)
229 for (x= -halfw; x < halfw; x++)
231 *distptr++ = ((int) ((sqrtf (x * x + y * y) * 511.9999) / m)) << 1;
233 *distptr++ = ((int) ((sqrt (x * x + y * y) * 511.9999) / m)) << 1;
238 gst_warptv_initialize (GstWarpTV *filter)
240 g_free (filter->disttable);
241 g_free (filter->offstable);
243 filter->offstable = (guint32 *) g_malloc (filter->height * sizeof (guint32));
244 filter->disttable = g_malloc (filter->width * filter->height * sizeof (guint32));
246 initSinTable (filter);
247 initOffsTable (filter);
248 initDistTable (filter);
252 gst_warptv_chain (GstPad * pad, GstBuffer * buf)
258 gint32 c,i, x,y, dx,dy, maxx, maxy;
259 gint32 width, height, skip, *ctptr, *distptr;
260 gint32 *sintable, *ctable;
262 filter = GST_WARPTV (gst_pad_get_parent (pad));
264 src = (guint32 *) GST_BUFFER_DATA (buf);
266 outbuf = gst_buffer_new ();
267 GST_BUFFER_SIZE (outbuf) = (filter->width * filter->height * sizeof(guint32));
268 dest = (guint32 *) GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
269 GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
271 xw = (gint) (sin ((filter->tval + 100) * M_PI / 128) * 30);
272 yw = (gint) (sin ((filter->tval) * M_PI / 256) * -35);
273 cw = (gint) (sin ((filter->tval - 70) * M_PI / 64) * 50);
274 xw += (gint) (sin ((filter->tval - 10) * M_PI / 512) * 40);
275 yw += (gint) (sin ((filter->tval + 30) * M_PI / 512) * 40);
277 ctptr = filter->ctable;
278 distptr = filter->disttable;
279 width = filter->width;
280 height = filter->height;
281 sintable = filter->sintable;
282 ctable = filter->ctable;
284 skip = 0 ; /* video_width*sizeof(RGB32)/4 - video_width;; */
287 for (x = 0; x < 512; x++) {
288 i = (c >> 3) & 0x3FE;
289 *ctptr++ = ((sintable[i] * yw) >> 15);
290 *ctptr++ = ((sintable[i + 256] * xw) >> 15);
293 maxx = width - 2; maxy = height - 2;
295 for (y = 0; y < height - 1; y++) {
296 for (x = 0; x < width; x++) {
298 dx = ctable [i + 1] + x;
302 else if (dx > maxx) dx = maxx;
305 else if (dy > maxy) dy = maxy;
306 *dest++ = src[filter->offstable[dy] + dx];
311 filter->tval = (filter->tval + 1) & 511;
313 gst_buffer_unref (buf);
315 gst_pad_push (filter->srcpad, outbuf);
319 gst_warptv_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
323 /* it's not null if we got it, but it might not be ours */
324 g_return_if_fail (GST_IS_WARPTV (object));
326 filter = GST_WARPTV (object);
335 gst_warptv_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
339 /* it's not null if we got it, but it might not be ours */
340 g_return_if_fail (GST_IS_WARPTV (object));
342 filter = GST_WARPTV (object);
346 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);