2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3 * Copyright (C) <2003> David Schleef <ds@schleef.org>
5 * EffecTV - Realtime Digital Video Effector
6 * Copyright (C) 2001 FUKUCHI Kentarou
8 * This library is free software; 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.
25 * This file was (probably) generated from gstvideotemplate.c,
26 * gstvideotemplate.c,v 1.11 2004/01/07 08:56:45 ds Exp
29 /* From main.c of warp-1.1:
31 * Simple DirectMedia Layer demo
32 * Realtime picture 'gooing'
33 * by sam lantinga slouken@devolution.com
41 #include <gstvideofilter.h>
44 #include "gsteffectv.h"
47 #define M_PI 3.14159265358979323846
51 #define GST_TYPE_WARPTV \
52 (gst_warptv_get_type())
53 #define GST_WARPTV(obj) \
54 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_WARPTV,GstWarpTV))
55 #define GST_WARPTV_CLASS(klass) \
56 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_WARPTV,GstWarpTVClass))
57 #define GST_IS_WARPTV(obj) \
58 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_WARPTV))
59 #define GST_IS_WARPTV_CLASS(obj) \
60 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_WARPTV))
62 typedef struct _GstWarpTV GstWarpTV;
63 typedef struct _GstWarpTVClass GstWarpTVClass;
67 GstVideofilter videofilter;
73 gint32 sintable[1024 + 256];
77 struct _GstWarpTVClass
79 GstVideofilterClass parent_class;
83 /* GstWarpTV signals and args */
96 static void gst_warptv_base_init (gpointer g_class);
97 static void gst_warptv_class_init (gpointer g_class, gpointer class_data);
98 static void gst_warptv_init (GTypeInstance * instance, gpointer g_class);
100 static void gst_warptv_set_property (GObject * object, guint prop_id,
101 const GValue * value, GParamSpec * pspec);
102 static void gst_warptv_get_property (GObject * object, guint prop_id,
103 GValue * value, GParamSpec * pspec);
105 static void gst_warptv_setup (GstVideofilter * videofilter);
106 static void initSinTable (GstWarpTV * filter);
107 static void initOffsTable (GstWarpTV * filter);
108 static void initDistTable (GstWarpTV * filter);
109 static void gst_warptv_rgb32 (GstVideofilter * videofilter, void *d, void *s);
112 gst_warptv_get_type (void)
114 static GType warptv_type = 0;
117 static const GTypeInfo warptv_info = {
118 sizeof (GstWarpTVClass),
119 gst_warptv_base_init,
121 gst_warptv_class_init,
129 warptv_type = g_type_register_static (GST_TYPE_VIDEOFILTER,
130 "GstWarpTV", &warptv_info, 0);
135 static GstVideofilterFormat gst_warptv_formats[] = {
136 {"RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x00ff0000, 0x0000ff00,
138 {"RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0xff000000, 0x00ff0000,
140 {"RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x000000ff, 0x0000ff00,
142 {"RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x0000ff00, 0x00ff0000,
147 gst_warptv_base_init (gpointer g_class)
149 static GstElementDetails warptv_details = GST_ELEMENT_DETAILS ("WarpTV",
150 "Filter/Effect/Video",
151 "WarpTV does realtime goo'ing of the video input",
152 "Sam Lantinga <slouken@devolution.com>");
153 GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
154 GstVideofilterClass *videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
157 gst_element_class_set_details (element_class, &warptv_details);
159 for (i = 0; i < G_N_ELEMENTS (gst_warptv_formats); i++) {
160 gst_videofilter_class_add_format (videofilter_class,
161 gst_warptv_formats + i);
164 gst_videofilter_class_add_pad_templates (GST_VIDEOFILTER_CLASS (g_class));
168 gst_warptv_class_init (gpointer g_class, gpointer class_data)
170 GObjectClass *gobject_class;
171 GstVideofilterClass *videofilter_class;
173 gobject_class = G_OBJECT_CLASS (g_class);
174 videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
176 gobject_class->set_property = gst_warptv_set_property;
177 gobject_class->get_property = gst_warptv_get_property;
180 g_object_class_install_property (gobject_class, ARG_METHOD,
181 g_param_spec_enum ("method", "method", "method",
182 GST_TYPE_WARPTV_METHOD, GST_WARPTV_METHOD_1, G_PARAM_READWRITE));
185 videofilter_class->setup = gst_warptv_setup;
189 gst_warptv_init (GTypeInstance * instance, gpointer g_class)
191 GstWarpTV *warptv = GST_WARPTV (instance);
192 GstVideofilter *videofilter;
194 GST_DEBUG ("gst_warptv_init");
196 videofilter = GST_VIDEOFILTER (warptv);
202 gst_warptv_set_property (GObject * object, guint prop_id, const GValue * value,
207 g_return_if_fail (GST_IS_WARPTV (object));
208 src = GST_WARPTV (object);
210 GST_DEBUG ("gst_warptv_set_property");
214 src->method = g_value_get_enum (value);
223 gst_warptv_get_property (GObject * object, guint prop_id, GValue * value,
228 g_return_if_fail (GST_IS_WARPTV (object));
229 src = GST_WARPTV (object);
234 g_value_set_enum (value, src->method);
238 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
245 gst_warptv_setup (GstVideofilter * videofilter)
248 int width = gst_videofilter_get_input_width (videofilter);
249 int height = gst_videofilter_get_input_height (videofilter);
251 g_return_if_fail (GST_IS_WARPTV (videofilter));
252 warptv = GST_WARPTV (videofilter);
254 /* if any setup needs to be done, do it here */
256 warptv->width = width;
257 warptv->height = height;
259 /* FIXME this should be reset in PAUSE->READY, not here */
263 g_free (warptv->disttable);
264 g_free (warptv->offstable);
266 warptv->offstable = g_malloc (height * sizeof (guint32));
267 warptv->disttable = g_malloc (width * height * sizeof (guint32));
269 initSinTable (warptv);
270 initOffsTable (warptv);
271 initDistTable (warptv);
275 initSinTable (GstWarpTV * filter)
277 gint32 *tptr, *tsinptr;
280 tsinptr = tptr = filter->sintable;
282 for (i = 0; i < 1024; i++)
283 *tptr++ = (int) (sin (i * M_PI / 512) * 32767);
285 for (i = 0; i < 256; i++)
286 *tptr++ = *tsinptr++;
290 initOffsTable (GstWarpTV * filter)
294 for (y = 0; y < filter->height; y++) {
295 filter->offstable[y] = y * filter->width;
300 initDistTable (GstWarpTV * filter)
302 gint32 halfw, halfh, *distptr;
310 halfw = filter->width >> 1;
311 halfh = filter->height >> 1;
313 distptr = filter->disttable;
315 m = sqrt ((double) (halfw * halfw + halfh * halfh));
317 for (y = -halfh; y < halfh; y++)
318 for (x = -halfw; x < halfw; x++)
320 *distptr++ = ((int) ((sqrtf (x * x + y * y) * 511.9999) / m)) << 1;
322 *distptr++ = ((int) ((sqrt (x * x + y * y) * 511.9999) / m)) << 1;
327 gst_warptv_rgb32 (GstVideofilter * videofilter, void *d, void *s)
330 int width = gst_videofilter_get_input_width (videofilter);
331 int height = gst_videofilter_get_input_height (videofilter);
335 gint32 c, i, x, y, dx, dy, maxx, maxy;
336 gint32 skip, *ctptr, *distptr;
337 gint32 *sintable, *ctable;
339 g_return_if_fail (GST_IS_WARPTV (videofilter));
340 warptv = GST_WARPTV (videofilter);
342 xw = (gint) (sin ((warptv->tval + 100) * M_PI / 128) * 30);
343 yw = (gint) (sin ((warptv->tval) * M_PI / 256) * -35);
344 cw = (gint) (sin ((warptv->tval - 70) * M_PI / 64) * 50);
345 xw += (gint) (sin ((warptv->tval - 10) * M_PI / 512) * 40);
346 yw += (gint) (sin ((warptv->tval + 30) * M_PI / 512) * 40);
348 ctptr = warptv->ctable;
349 distptr = warptv->disttable;
350 sintable = warptv->sintable;
351 ctable = warptv->ctable;
353 skip = 0; /* video_width*sizeof(RGB32)/4 - video_width;; */
356 for (x = 0; x < 512; x++) {
357 i = (c >> 3) & 0x3FE;
358 *ctptr++ = ((sintable[i] * yw) >> 15);
359 *ctptr++ = ((sintable[i + 256] * xw) >> 15);
365 for (y = 0; y < height - 1; y++) {
366 for (x = 0; x < width; x++) {
368 dx = ctable[i + 1] + x;
380 *dest++ = src[warptv->offstable[dy] + dx];
385 warptv->tval = (warptv->tval + 1) & 511;