Make warpTV a subclass of videofilter
[platform/upstream/gstreamer.git] / gst / effectv / gstwarp.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2003> David Schleef <ds@schleef.org>
4  *
5  * EffecTV - Realtime Digital Video Effector
6  * Copyright (C) 2001 FUKUCHI Kentarou
7  *
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.
12  *
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.
17  *
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.
22  */
23
24 /*
25  * This file was (probably) generated from gstvideotemplate.c,
26  * gstvideotemplate.c,v 1.11 2004/01/07 08:56:45 ds Exp 
27  */
28
29 /* From main.c of warp-1.1:
30  *
31  *      Simple DirectMedia Layer demo
32  *      Realtime picture 'gooing'
33  *      by sam lantinga slouken@devolution.com
34  */
35
36 #ifdef HAVE_CONFIG_H
37 #include "config.h"
38 #endif
39
40 #include <gst/gst.h>
41 #include <gstvideofilter.h>
42 #include <string.h>
43 #include <math.h>
44 #include "gsteffectv.h"
45
46 #ifndef M_PI
47 #define M_PI    3.14159265358979323846
48 #endif
49
50
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))
61
62 typedef struct _GstWarpTV GstWarpTV;
63 typedef struct _GstWarpTVClass GstWarpTVClass;
64
65 struct _GstWarpTV {
66   GstVideofilter videofilter;
67
68   gint width, height;
69   gint *offstable;
70   gint32 *disttable;
71   gint32 ctable[1024];
72   gint32 sintable[1024+256];
73   gint tval;
74 };
75
76 struct _GstWarpTVClass {
77   GstVideofilterClass parent_class;
78 };
79
80
81 /* GstWarpTV signals and args */
82 enum {
83   /* FILL ME */
84   LAST_SIGNAL
85 };
86
87 enum {
88   ARG_0,
89   /* FILL ME */
90 };
91
92 static void     gst_warptv_base_init    (gpointer g_class);
93 static void     gst_warptv_class_init   (gpointer g_class, gpointer class_data);
94 static void     gst_warptv_init         (GTypeInstance *instance, gpointer g_class);
95
96 static void     gst_warptv_set_property         (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec);
97 static void     gst_warptv_get_property         (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec);
98
99 static void gst_warptv_setup(GstVideofilter *videofilter);
100 static void initSinTable (GstWarpTV *filter);
101 static void initOffsTable (GstWarpTV *filter);
102 static void initDistTable (GstWarpTV *filter);
103 static void gst_warptv_rgb32 (GstVideofilter *videofilter, void *d, void *s);
104
105 GType
106 gst_warptv_get_type (void)
107 {
108   static GType warptv_type = 0;
109
110   if (!warptv_type) {
111     static const GTypeInfo warptv_info = {
112       sizeof(GstWarpTVClass),
113       gst_warptv_base_init,
114       NULL,
115       gst_warptv_class_init,
116       NULL,
117       NULL,
118       sizeof(GstWarpTV),
119       0,
120       gst_warptv_init,
121     };
122     warptv_type = g_type_register_static(GST_TYPE_VIDEOFILTER,
123         "GstWarpTV", &warptv_info, 0);
124   }
125   return warptv_type;
126 }
127
128 static GstVideofilterFormat gst_warptv_formats[] = {
129   { "RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x00ff0000, 0x0000ff00, 0x000000ff },
130   { "RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0xff000000, 0x00ff0000, 0x0000ff00 },
131   { "RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x000000ff, 0x0000ff00, 0x00ff0000 },
132   { "RGB ", 32, gst_warptv_rgb32, 24, G_BIG_ENDIAN, 0x0000ff00, 0x00ff0000, 0xff000000 },
133 };
134
135   
136 static void
137 gst_warptv_base_init (gpointer g_class)
138 {
139   static GstElementDetails warptv_details = GST_ELEMENT_DETAILS (
140     "WarpTV",
141     "Filter/Effect/Video",
142     "WarpTV does realtime goo'ing of the video input",
143     "Sam Lantinga <slouken@devolution.com>"
144   );
145   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
146   GstVideofilterClass *videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
147   int i;
148   
149   gst_element_class_set_details (element_class, &warptv_details);
150
151   for(i=0;i<G_N_ELEMENTS(gst_warptv_formats);i++){
152     gst_videofilter_class_add_format(videofilter_class,
153         gst_warptv_formats + i);
154   }
155
156   gst_videofilter_class_add_pad_templates (GST_VIDEOFILTER_CLASS (g_class));
157 }
158
159 static void
160 gst_warptv_class_init (gpointer g_class, gpointer class_data)
161 {
162   GObjectClass *gobject_class;
163   GstVideofilterClass *videofilter_class;
164
165   gobject_class = G_OBJECT_CLASS (g_class);
166   videofilter_class = GST_VIDEOFILTER_CLASS (g_class);
167
168 #if 0
169   g_object_class_install_property(gobject_class, ARG_METHOD,
170       g_param_spec_enum("method","method","method",
171       GST_TYPE_WARPTV_METHOD, GST_WARPTV_METHOD_1,
172       G_PARAM_READWRITE));
173 #endif
174
175   gobject_class->set_property = gst_warptv_set_property;
176   gobject_class->get_property = gst_warptv_get_property;
177
178   videofilter_class->setup = gst_warptv_setup;
179 }
180
181 static void
182 gst_warptv_init (GTypeInstance *instance, gpointer g_class)
183 {
184   GstWarpTV *warptv = GST_WARPTV (instance);
185   GstVideofilter *videofilter;
186
187   GST_DEBUG("gst_warptv_init");
188
189   videofilter = GST_VIDEOFILTER(warptv);
190
191   /* do stuff */
192 }
193
194 static void
195 gst_warptv_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
196 {
197   GstWarpTV *src;
198
199   /* it's not null if we got it, but it might not be ours */
200   g_return_if_fail(GST_IS_WARPTV(object));
201   src = GST_WARPTV(object);
202
203   GST_DEBUG("gst_warptv_set_property");
204   switch (prop_id) {
205 #if 0
206     case ARG_METHOD:
207       src->method = g_value_get_enum (value);
208       break;
209 #endif
210     default:
211       break;
212   }
213 }
214
215 static void
216 gst_warptv_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
217 {
218   GstWarpTV *src;
219
220   /* it's not null if we got it, but it might not be ours */
221   g_return_if_fail(GST_IS_WARPTV(object));
222   src = GST_WARPTV(object);
223
224   switch (prop_id) {
225 #if 0
226     case ARG_METHOD:
227       g_value_set_enum (value, src->method);
228       break;
229 #endif
230     default:
231       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
232       break;
233   }
234 }
235
236
237 static void gst_warptv_setup(GstVideofilter *videofilter)
238 {
239   GstWarpTV *warptv;
240   int width = gst_videofilter_get_input_width(videofilter);
241   int height = gst_videofilter_get_input_height(videofilter);
242
243   g_return_if_fail(GST_IS_WARPTV(videofilter));
244   warptv = GST_WARPTV(videofilter);
245
246   /* if any setup needs to be done, do it here */
247
248   warptv->width = width;
249   warptv->height = height;
250   warptv->tval = 0;
251
252   g_free (warptv->disttable);
253   g_free (warptv->offstable);
254
255   warptv->offstable = (guint32 *) g_malloc (height * sizeof (guint32));      
256   warptv->disttable = g_malloc (width * height * sizeof (guint32));
257
258   initSinTable (warptv);
259   initOffsTable (warptv);
260   initDistTable (warptv);
261 }
262
263 static void 
264 initSinTable (GstWarpTV *filter) 
265 {
266   gint32        *tptr, *tsinptr;
267   double        i;
268
269   tsinptr = tptr = filter->sintable;
270
271   for (i = 0; i < 1024; i++)
272     *tptr++ = (int) (sin (i * M_PI / 512) * 32767);
273
274   for (i = 0; i < 256; i++)
275     *tptr++ = *tsinptr++;
276 }
277
278 static void 
279 initOffsTable (GstWarpTV *filter) 
280 {
281   int y;
282         
283   for (y = 0; y < filter->height; y++) {
284     filter->offstable[y] = y * filter->width;
285   }
286 }
287       
288 static void 
289 initDistTable (GstWarpTV *filter) 
290 {
291   gint32 halfw, halfh, *distptr;
292 #ifdef PS2
293   float x,y,m;
294 #else
295   double x,y,m;
296 #endif
297
298   halfw = filter->width>> 1;
299   halfh = filter->height >> 1;
300
301   distptr = filter->disttable;
302
303   m = sqrt ((double)(halfw * halfw + halfh * halfh));
304
305   for (y = -halfh; y < halfh; y++)
306     for (x= -halfw; x < halfw; x++)
307 #ifdef PS2
308       *distptr++ = ((int) ((sqrtf (x * x + y * y) * 511.9999) / m)) << 1;
309 #else
310       *distptr++ = ((int) ((sqrt (x * x + y * y) * 511.9999) / m)) << 1;
311 #endif
312 }
313
314 static void gst_warptv_rgb32 (GstVideofilter *videofilter,
315     void *d, void *s)
316 {
317   GstWarpTV *warptv;
318   int width = gst_videofilter_get_input_width(videofilter);
319   int height = gst_videofilter_get_input_height(videofilter);
320   guint32 *src = s;
321   guint32 *dest = d;
322   gint xw,yw,cw;
323   gint32 c,i, x,y, dx,dy, maxx, maxy;
324   gint32 skip, *ctptr, *distptr;
325   gint32 *sintable, *ctable;
326
327   g_return_if_fail(GST_IS_WARPTV(videofilter));
328   warptv = GST_WARPTV(videofilter);
329
330   xw  = (gint) (sin ((warptv->tval + 100) * M_PI / 128) * 30);
331   yw  = (gint) (sin ((warptv->tval) * M_PI / 256) * -35);
332   cw  = (gint) (sin ((warptv->tval - 70) * M_PI / 64) * 50);
333   xw += (gint) (sin ((warptv->tval - 10) * M_PI / 512) * 40);
334   yw += (gint) (sin ((warptv->tval + 30) * M_PI / 512) * 40);     
335
336   ctptr = warptv->ctable;
337   distptr = warptv->disttable;
338   sintable = warptv->sintable;
339   ctable = warptv->ctable;
340
341   skip = 0 ; /* video_width*sizeof(RGB32)/4 - video_width;; */
342   c = 0;
343
344   for (x = 0; x < 512; x++) {
345     i = (c >> 3) & 0x3FE;
346     *ctptr++ = ((sintable[i] * yw) >> 15);
347     *ctptr++ = ((sintable[i + 256] * xw) >> 15);
348     c += cw;
349   }
350   maxx = width - 2; maxy = height - 2;
351
352   for (y = 0; y < height - 1; y++) {
353     for (x = 0; x < width; x++) {
354       i = *distptr++; 
355       dx = ctable [i + 1] + x; 
356       dy = ctable [i] + y;       
357
358       if (dx < 0) dx = 0; 
359       else if (dx > maxx) dx = maxx; 
360    
361       if (dy < 0) dy = 0; 
362       else if (dy > maxy) dy = maxy; 
363       *dest++ = src[warptv->offstable[dy] + dx]; 
364     }
365     dest += skip;
366   }
367
368   warptv->tval = (warptv->tval + 1) & 511;
369 }
370