upload tizen1.0 source
[framework/multimedia/gst-plugins-good0.10.git] / gst / effectv / gstedge.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Copyright (C) <2009> Sebastian Dröge <sebastian.droege@collabora.co.uk>
4  *
5  * EffecTV:
6  * Copyright (C) 2001-2002 FUKUCHI Kentarou
7  *
8  * EdgeTV - detects edge and display it in good old computer way
9  *
10  * EffecTV is free software. This library is free software;
11  * you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  * 
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  * 
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  */
26
27 /**
28  * SECTION:element-edgetv
29  *
30  * EdgeTV detects edges and display it in good old low resolution
31  * computer way.
32  *
33  * <refsect2>
34  * <title>Example launch line</title>
35  * |[
36  * gst-launch -v videotestsrc ! edgetv ! ffmpegcolorspace ! autovideosink
37  * ]| This pipeline shows the effect of edgetv on a test stream.
38  * </refsect2>
39  */
40
41 #ifdef HAVE_CONFIG_H
42 #include "config.h"
43 #endif
44
45 #include <string.h>
46
47 #include "gstedge.h"
48
49 #include <gst/video/video.h>
50
51 GST_BOILERPLATE (GstEdgeTV, gst_edgetv, GstVideoFilter, GST_TYPE_VIDEO_FILTER);
52
53 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
54 #define CAPS_STR GST_VIDEO_CAPS_BGRx ";" GST_VIDEO_CAPS_RGBx
55 #else
56 #define CAPS_STR GST_VIDEO_CAPS_xBGR ";" GST_VIDEO_CAPS_xRGB
57 #endif
58
59 static GstStaticPadTemplate gst_edgetv_src_template =
60 GST_STATIC_PAD_TEMPLATE ("src",
61     GST_PAD_SRC,
62     GST_PAD_ALWAYS,
63     GST_STATIC_CAPS (CAPS_STR)
64     );
65
66 static GstStaticPadTemplate gst_edgetv_sink_template =
67 GST_STATIC_PAD_TEMPLATE ("sink",
68     GST_PAD_SINK,
69     GST_PAD_ALWAYS,
70     GST_STATIC_CAPS (CAPS_STR)
71     );
72
73 static gboolean
74 gst_edgetv_set_caps (GstBaseTransform * btrans, GstCaps * incaps,
75     GstCaps * outcaps)
76 {
77   GstEdgeTV *edgetv = GST_EDGETV (btrans);
78   GstStructure *structure;
79   gboolean ret = FALSE;
80
81   structure = gst_caps_get_structure (incaps, 0);
82
83   GST_OBJECT_LOCK (edgetv);
84   if (gst_structure_get_int (structure, "width", &edgetv->width) &&
85       gst_structure_get_int (structure, "height", &edgetv->height)) {
86     guint map_size;
87
88     edgetv->map_width = edgetv->width / 4;
89     edgetv->map_height = edgetv->height / 4;
90     edgetv->video_width_margin = edgetv->width % 4;
91
92     map_size = edgetv->map_width * edgetv->map_height * sizeof (guint32) * 2;
93
94     g_free (edgetv->map);
95     edgetv->map = (guint32 *) g_malloc0 (map_size);
96     ret = TRUE;
97   }
98   GST_OBJECT_UNLOCK (edgetv);
99
100   return ret;
101 }
102
103 static GstFlowReturn
104 gst_edgetv_transform (GstBaseTransform * trans, GstBuffer * in, GstBuffer * out)
105 {
106   GstEdgeTV *filter = GST_EDGETV (trans);
107   gint x, y, r, g, b;
108   guint32 *src, *dest;
109   guint32 p, q;
110   guint32 v0, v1, v2, v3;
111   gint width, map_height, map_width;
112   gint video_width_margin;
113   guint32 *map;
114   GstFlowReturn ret = GST_FLOW_OK;
115
116   src = (guint32 *) GST_BUFFER_DATA (in);
117   dest = (guint32 *) GST_BUFFER_DATA (out);
118
119   GST_OBJECT_LOCK (filter);
120   map = filter->map;
121   width = filter->width;
122   map_height = filter->map_height;
123   map_width = filter->map_width;
124   video_width_margin = filter->video_width_margin;
125   src += width * 4 + 4;
126   dest += width * 4 + 4;
127
128   for (y = 1; y < map_height - 1; y++) {
129     for (x = 1; x < map_width - 1; x++) {
130       p = *src;
131       q = *(src - 4);
132
133       /* difference between the current pixel and right neighbor. */
134       r = ((p & 0xff0000) - (q & 0xff0000)) >> 16;
135       g = ((p & 0xff00) - (q & 0xff00)) >> 8;
136       b = (p & 0xff) - (q & 0xff);
137       r *= r;
138       g *= g;
139       b *= b;
140       r = r >> 5;               /* To lack the lower bit for saturated addition,  */
141       g = g >> 5;               /* devide the value with 32, instead of 16. It is */
142       b = b >> 4;               /* same as `v2 &= 0xfefeff' */
143       if (r > 127)
144         r = 127;
145       if (g > 127)
146         g = 127;
147       if (b > 255)
148         b = 255;
149       v2 = (r << 17) | (g << 9) | b;
150
151       /* difference between the current pixel and upper neighbor. */
152       q = *(src - width * 4);
153       r = ((p & 0xff0000) - (q & 0xff0000)) >> 16;
154       g = ((p & 0xff00) - (q & 0xff00)) >> 8;
155       b = (p & 0xff) - (q & 0xff);
156       r *= r;
157       g *= g;
158       b *= b;
159       r = r >> 5;
160       g = g >> 5;
161       b = b >> 4;
162       if (r > 127)
163         r = 127;
164       if (g > 127)
165         g = 127;
166       if (b > 255)
167         b = 255;
168       v3 = (r << 17) | (g << 9) | b;
169
170       v0 = map[(y - 1) * map_width * 2 + x * 2];
171       v1 = map[y * map_width * 2 + (x - 1) * 2 + 1];
172       map[y * map_width * 2 + x * 2] = v2;
173       map[y * map_width * 2 + x * 2 + 1] = v3;
174       r = v0 + v1;
175       g = r & 0x01010100;
176       dest[0] = r | (g - (g >> 8));
177       r = v0 + v3;
178       g = r & 0x01010100;
179       dest[1] = r | (g - (g >> 8));
180       dest[2] = v3;
181       dest[3] = v3;
182       r = v2 + v1;
183       g = r & 0x01010100;
184       dest[width] = r | (g - (g >> 8));
185       r = v2 + v3;
186       g = r & 0x01010100;
187       dest[width + 1] = r | (g - (g >> 8));
188       dest[width + 2] = v3;
189       dest[width + 3] = v3;
190       dest[width * 2] = v2;
191       dest[width * 2 + 1] = v2;
192       dest[width * 3] = v2;
193       dest[width * 3 + 1] = v2;
194
195       src += 4;
196       dest += 4;
197     }
198     src += width * 3 + 8 + video_width_margin;
199     dest += width * 3 + 8 + video_width_margin;
200   }
201   GST_OBJECT_UNLOCK (filter);
202
203   return ret;
204 }
205
206 static gboolean
207 gst_edgetv_start (GstBaseTransform * trans)
208 {
209   GstEdgeTV *edgetv = GST_EDGETV (trans);
210
211   if (edgetv->map)
212     memset (edgetv->map, 0,
213         edgetv->map_width * edgetv->map_height * sizeof (guint32) * 2);
214   return TRUE;
215 }
216
217 static void
218 gst_edgetv_finalize (GObject * object)
219 {
220   GstEdgeTV *edgetv = GST_EDGETV (object);
221
222   g_free (edgetv->map);
223   edgetv->map = NULL;
224
225   G_OBJECT_CLASS (parent_class)->finalize (object);
226 }
227
228 static void
229 gst_edgetv_base_init (gpointer g_class)
230 {
231   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
232
233   gst_element_class_set_details_simple (element_class, "EdgeTV effect",
234       "Filter/Effect/Video",
235       "Apply edge detect on video", "Wim Taymans <wim.taymans@chello.be>");
236
237   gst_element_class_add_pad_template (element_class,
238       gst_static_pad_template_get (&gst_edgetv_sink_template));
239   gst_element_class_add_pad_template (element_class,
240       gst_static_pad_template_get (&gst_edgetv_src_template));
241 }
242
243 static void
244 gst_edgetv_class_init (GstEdgeTVClass * klass)
245 {
246   GstBaseTransformClass *trans_class = (GstBaseTransformClass *) klass;
247   GObjectClass *gobject_class = (GObjectClass *) klass;
248
249   gobject_class->finalize = gst_edgetv_finalize;
250
251   trans_class->set_caps = GST_DEBUG_FUNCPTR (gst_edgetv_set_caps);
252   trans_class->transform = GST_DEBUG_FUNCPTR (gst_edgetv_transform);
253   trans_class->start = GST_DEBUG_FUNCPTR (gst_edgetv_start);
254 }
255
256 static void
257 gst_edgetv_init (GstEdgeTV * edgetv, GstEdgeTVClass * klass)
258 {
259 }