tizen 2.0 init
[framework/multimedia/gst-plugins-good0.10.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 /**
37  * SECTION:element-warptv
38  *
39  * WarpTV does realtime goo'ing of the video input.
40  *
41  * <refsect2>
42  * <title>Example launch line</title>
43  * |[
44  * gst-launch -v videotestsrc ! warptv ! ffmpegcolorspace ! autovideosink
45  * ]| This pipeline shows the effect of warptv on a test stream.
46  * </refsect2>
47  */
48
49 #ifdef HAVE_CONFIG_H
50 #include "config.h"
51 #endif
52
53 #include <string.h>
54 #include <math.h>
55
56 #include "gstwarp.h"
57
58 #include <gst/video/video.h>
59
60 #ifndef M_PI
61 #define M_PI    3.14159265358979323846
62 #endif
63
64 GST_BOILERPLATE (GstWarpTV, gst_warptv, GstVideoFilter, GST_TYPE_VIDEO_FILTER);
65
66 static void initSinTable ();
67 static void initOffsTable (GstWarpTV * filter);
68 static void initDistTable (GstWarpTV * filter);
69
70 static GstStaticPadTemplate gst_warptv_src_template =
71     GST_STATIC_PAD_TEMPLATE ("src",
72     GST_PAD_SRC,
73     GST_PAD_ALWAYS,
74     GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBx ";" GST_VIDEO_CAPS_xRGB ";"
75         GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_xBGR)
76     );
77
78 static GstStaticPadTemplate gst_warptv_sink_template =
79     GST_STATIC_PAD_TEMPLATE ("sink",
80     GST_PAD_SINK,
81     GST_PAD_ALWAYS,
82     GST_STATIC_CAPS (GST_VIDEO_CAPS_RGBx ";" GST_VIDEO_CAPS_xRGB ";"
83         GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_xBGR)
84     );
85
86 static gboolean
87 gst_warptv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
88     GstCaps * outcaps)
89 {
90   GstWarpTV *filter = GST_WARPTV (btrans);
91   GstStructure *structure;
92   gboolean ret = FALSE;
93
94   structure = gst_caps_get_structure (incaps, 0);
95
96   GST_OBJECT_LOCK (filter);
97   if (gst_structure_get_int (structure, "width", &filter->width) &&
98       gst_structure_get_int (structure, "height", &filter->height)) {
99     g_free (filter->disttable);
100     g_free (filter->offstable);
101
102     filter->offstable = g_malloc (filter->height * sizeof (guint32));
103     filter->disttable =
104         g_malloc (filter->width * filter->height * sizeof (guint32));
105
106     initOffsTable (filter);
107     initDistTable (filter);
108     ret = TRUE;
109   }
110   GST_OBJECT_UNLOCK (filter);
111
112   return ret;
113 }
114
115 static gint32 sintable[1024 + 256];
116
117 static void
118 initSinTable (void)
119 {
120   gint32 *tptr, *tsinptr;
121   gint i;
122
123   tsinptr = tptr = sintable;
124
125   for (i = 0; i < 1024; i++)
126     *tptr++ = (int) (sin (i * M_PI / 512) * 32767);
127
128   for (i = 0; i < 256; i++)
129     *tptr++ = *tsinptr++;
130 }
131
132 static void
133 initOffsTable (GstWarpTV * filter)
134 {
135   gint y;
136
137   for (y = 0; y < filter->height; y++) {
138     filter->offstable[y] = y * filter->width;
139   }
140 }
141
142 static void
143 initDistTable (GstWarpTV * filter)
144 {
145   gint32 halfw, halfh, *distptr;
146   gint x, y;
147   float m;
148
149   halfw = filter->width >> 1;
150   halfh = filter->height >> 1;
151
152   distptr = filter->disttable;
153
154   m = sqrt ((double) (halfw * halfw + halfh * halfh));
155
156   for (y = -halfh; y < halfh; y++)
157     for (x = -halfw; x < halfw; x++)
158 #ifdef PS2
159       *distptr++ = ((int) ((sqrtf (x * x + y * y) * 511.9999) / m)) << 1;
160 #else
161       *distptr++ = ((int) ((sqrt (x * x + y * y) * 511.9999) / m)) << 1;
162 #endif
163 }
164
165 static GstFlowReturn
166 gst_warptv_transform (GstBaseTransform * trans, GstBuffer * in, GstBuffer * out)
167 {
168   GstWarpTV *warptv = GST_WARPTV (trans);
169   gint width, height;
170   guint32 *src = (guint32 *) GST_BUFFER_DATA (in);
171   guint32 *dest = (guint32 *) GST_BUFFER_DATA (out);
172   gint xw, yw, cw;
173   gint32 c, i, x, y, dx, dy, maxx, maxy;
174   gint32 skip, *ctptr, *distptr;
175   gint32 *ctable;
176   GstFlowReturn ret = GST_FLOW_OK;
177
178   GST_OBJECT_LOCK (warptv);
179   width = warptv->width;
180   height = warptv->height;
181
182   xw = (gint) (sin ((warptv->tval + 100) * M_PI / 128) * 30);
183   yw = (gint) (sin ((warptv->tval) * M_PI / 256) * -35);
184   cw = (gint) (sin ((warptv->tval - 70) * M_PI / 64) * 50);
185   xw += (gint) (sin ((warptv->tval - 10) * M_PI / 512) * 40);
186   yw += (gint) (sin ((warptv->tval + 30) * M_PI / 512) * 40);
187
188   ctptr = warptv->ctable;
189   distptr = warptv->disttable;
190   ctable = warptv->ctable;
191
192   skip = 0;                     /* video_width*sizeof(RGB32)/4 - video_width;; */
193   c = 0;
194
195   for (x = 0; x < 512; x++) {
196     i = (c >> 3) & 0x3FE;
197     *ctptr++ = ((sintable[i] * yw) >> 15);
198     *ctptr++ = ((sintable[i + 256] * xw) >> 15);
199     c += cw;
200   }
201   maxx = width - 2;
202   maxy = height - 2;
203
204   for (y = 0; y < height - 1; y++) {
205     for (x = 0; x < width; x++) {
206       i = *distptr++;
207       dx = ctable[i + 1] + x;
208       dy = ctable[i] + y;
209
210       if (dx < 0)
211         dx = 0;
212       else if (dx > maxx)
213         dx = maxx;
214
215       if (dy < 0)
216         dy = 0;
217       else if (dy > maxy)
218         dy = maxy;
219       *dest++ = src[warptv->offstable[dy] + dx];
220     }
221     dest += skip;
222   }
223
224   warptv->tval = (warptv->tval + 1) & 511;
225   GST_OBJECT_UNLOCK (warptv);
226
227   return ret;
228 }
229
230 static gboolean
231 gst_warptv_start (GstBaseTransform * trans)
232 {
233   GstWarpTV *warptv = GST_WARPTV (trans);
234
235   warptv->tval = 0;
236
237   return TRUE;
238 }
239
240 static void
241 gst_warptv_finalize (GObject * object)
242 {
243   GstWarpTV *warptv = GST_WARPTV (object);
244
245   g_free (warptv->offstable);
246   warptv->offstable = NULL;
247   g_free (warptv->disttable);
248   warptv->disttable = NULL;
249
250   G_OBJECT_CLASS (parent_class)->finalize (object);
251 }
252
253 static void
254 gst_warptv_base_init (gpointer g_class)
255 {
256   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
257
258   gst_element_class_set_details_simple (element_class, "WarpTV effect",
259       "Filter/Effect/Video",
260       "WarpTV does realtime goo'ing of the video input",
261       "Sam Lantinga <slouken@devolution.com>");
262
263   gst_element_class_add_static_pad_template (element_class,
264       &gst_warptv_sink_template);
265   gst_element_class_add_static_pad_template (element_class,
266       &gst_warptv_src_template);
267 }
268
269 static void
270 gst_warptv_class_init (GstWarpTVClass * klass)
271 {
272   GObjectClass *gobject_class = (GObjectClass *) klass;
273   GstBaseTransformClass *trans_class = (GstBaseTransformClass *) klass;
274
275   gobject_class->finalize = gst_warptv_finalize;
276
277   trans_class->start = GST_DEBUG_FUNCPTR (gst_warptv_start);
278   trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_warptv_set_caps);
279   trans_class->transform = GST_DEBUG_FUNCPTR (gst_warptv_transform);
280
281   initSinTable ();
282 }
283
284 static void
285 gst_warptv_init (GstWarpTV * warptv, GstWarpTVClass * klass)
286 {
287   /* nothing to do */
288 }