Fixed license statements in EffectTv plugins so they now state LGPL.
[platform/upstream/gst-plugins-good.git] / gst / effectv / gstrev.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
4  * EffecTV:
5  * Copyright (C) 2001 FUKUCHI Kentarou
6  *
7  * EffecTV - Realtime Digital Video Effector
8  * Copyright (C) 2001 FUKUCHI Kentarou
9  *
10  * revTV based on Rutt-Etra Video Synthesizer 1974?
11
12  * (c)2002 Ed Tannenbaum
13  *
14  * This effect acts like a waveform monitor on each line.
15  * It was originally done by deflecting the electron beam on a monitor using
16  * additional electromagnets on the yoke of a b/w CRT. 
17  * Here it is emulated digitally.
18
19  * Experimaental tapes were made with this system by Bill and 
20  * Louise Etra and Woody and Steina Vasulka
21
22  * The line spacing can be controlled using the 1 and 2 Keys.
23  * The gain is controlled using the 3 and 4 keys.
24  * The update rate is controlled using the 0 and - keys.
25  
26  * EffecTV is free software. This library is free software;
27  * you can redistribute it and/or
28  * modify it under the terms of the GNU Library General Public
29  * License as published by the Free Software Foundation; either
30  * version 2 of the License, or (at your option) any later version.
31  *
32  * This library is distributed in the hope that it will be useful,
33  * but WITHOUT ANY WARRANTY; without even the implied warranty of
34  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
35  * Library General Public License for more details.
36  *
37  * You should have received a copy of the GNU Library General Public
38  * License along with this library; if not, write to the
39  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
40  * Boston, MA 02111-1307, USA.
41  */
42
43 #include <math.h>
44 #include <string.h>
45 #include <gst/gst.h>
46 #include "gsteffectv.h"
47
48 #define GST_TYPE_REVTV \
49   (gst_revtv_get_type())
50 #define GST_REVTV(obj) \
51   (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_REVTV,GstRevTV))
52 #define GST_REVTV_CLASS(klass) \
53   (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_ULAW,GstRevTV))
54 #define GST_IS_REVTV(obj) \
55   (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_REVTV))
56 #define GST_IS_REVTV_CLASS(obj) \
57   (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_REVTV))
58
59 #define THE_COLOR 0xffffffff
60
61 typedef struct _GstRevTV GstRevTV;
62 typedef struct _GstRevTVClass GstRevTVClass;
63
64 struct _GstRevTV
65 {
66   GstElement element;
67
68   GstPad *sinkpad, *srcpad;
69
70   gint width, height;
71   gint vgrabtime;
72   gint vgrab;
73   gint linespace;
74   gint vscale;
75 };
76
77 struct _GstRevTVClass
78 {
79   GstElementClass parent_class;
80
81   void (*reset) (GstElement *element);
82 };
83
84 GstElementDetails gst_revtv_details = {
85   "RevTV",
86   "Filter/Video/Effect",
87   "A video waveform monitor for each line of video processed",
88   VERSION,
89   "Wim Taymans <wim.taymans@chello.be>",
90   "(C) 2001 FUKUCHI Kentarou,"
91   "(c) 2002 Ed Tannenbaum",
92 };
93
94
95 /* Filter signals and args */
96 enum
97 {
98   /* FILL ME */
99   LAST_SIGNAL
100 };
101
102 enum
103 {
104   ARG_0,
105   ARG_DELAY,
106   ARG_LINESPACE,
107   ARG_GAIN,
108 };
109
110 static void     gst_revtv_class_init            (GstRevTVClass * klass);
111 static void     gst_revtv_init                  (GstRevTV * filter);
112
113 static void     gst_revtv_set_property          (GObject * object, guint prop_id,
114                                                  const GValue * value, GParamSpec * pspec);
115 static void     gst_revtv_get_property          (GObject * object, guint prop_id,
116                                                  GValue * value, GParamSpec * pspec);
117
118 static void     gst_revtv_chain                 (GstPad * pad, GstBuffer * buf);
119
120 static GstElementClass *parent_class = NULL;
121 /* static guint gst_revtv_signals[LAST_SIGNAL] = { 0 }; */
122
123 GType gst_revtv_get_type (void)
124 {
125   static GType revtv_type = 0;
126
127   if (!revtv_type) {
128     static const GTypeInfo revtv_info = {
129       sizeof (GstRevTVClass), NULL,
130       NULL,
131       (GClassInitFunc) gst_revtv_class_init,
132       NULL,
133       NULL,
134       sizeof (GstRevTV),
135       0,
136       (GInstanceInitFunc) gst_revtv_init,
137     };
138
139     revtv_type = g_type_register_static (GST_TYPE_ELEMENT, "GstRevTV", &revtv_info, 0);
140   }
141   return revtv_type;
142 }
143
144 static void
145 gst_revtv_class_init (GstRevTVClass * klass)
146 {
147   GObjectClass *gobject_class;
148   GstElementClass *gstelement_class;
149
150   gobject_class = (GObjectClass *) klass;
151   gstelement_class = (GstElementClass *) klass;
152
153   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
154
155   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DELAY,
156     g_param_spec_int ("delay","Delay","Delay in frames between updates",
157                         1, 100, 1, G_PARAM_READWRITE));
158   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LINESPACE,
159     g_param_spec_int ("linespace","Linespace","Control line spacing",
160                         1, 100, 6, G_PARAM_READWRITE));
161   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_GAIN,
162     g_param_spec_int ("gain","Gain","Control gain",
163                         1, 200, 50, G_PARAM_READWRITE));
164
165   gobject_class->set_property = gst_revtv_set_property;
166   gobject_class->get_property = gst_revtv_get_property;
167 }
168
169 static GstPadConnectReturn
170 gst_revtv_sinkconnect (GstPad * pad, GstCaps * caps)
171 {
172   GstRevTV *filter;
173
174   filter = GST_REVTV (gst_pad_get_parent (pad));
175
176   if (!GST_CAPS_IS_FIXED (caps))
177     return GST_PAD_CONNECT_DELAYED;
178
179   gst_caps_get_int (caps, "width", &filter->width);
180   gst_caps_get_int (caps, "height", &filter->height);
181
182   if (gst_pad_try_set_caps (filter->srcpad, caps)) {
183     return GST_PAD_CONNECT_OK;
184   }
185
186   return GST_PAD_CONNECT_REFUSED;
187 }
188
189 static void
190 gst_revtv_init (GstRevTV * filter)
191 {
192   filter->sinkpad = gst_pad_new_from_template (gst_effectv_sink_factory (), "sink");
193   gst_pad_set_chain_function (filter->sinkpad, gst_revtv_chain);
194   gst_pad_set_connect_function (filter->sinkpad, gst_revtv_sinkconnect);
195   gst_element_add_pad (GST_ELEMENT (filter), filter->sinkpad);
196
197   filter->srcpad = gst_pad_new_from_template (gst_effectv_src_factory (), "src");
198   gst_element_add_pad (GST_ELEMENT (filter), filter->srcpad);
199
200   filter->vgrabtime = 1;
201   filter->vgrab = 0;
202   filter->linespace = 6;
203   filter->vscale = 50;
204 }
205
206
207 static void
208 gst_revtv_chain (GstPad * pad, GstBuffer * buf)
209 {
210   GstRevTV *filter;
211   guint32 *src, *dest;
212   GstBuffer *outbuf;
213   gint width, height, area;
214   guint32 *nsrc;
215   gint y, x, R, G, B, yval;
216
217   filter = GST_REVTV (gst_pad_get_parent (pad));
218
219   src = (guint32 *) GST_BUFFER_DATA (buf);
220
221   width = filter->width;
222   height = filter->height;
223   area = width * height;
224
225   outbuf = gst_buffer_new ();
226   GST_BUFFER_SIZE (outbuf) = area * sizeof(guint32);
227   dest = (guint32 *) GST_BUFFER_DATA (outbuf) = g_malloc (GST_BUFFER_SIZE (outbuf));
228   GST_BUFFER_TIMESTAMP (outbuf) = GST_BUFFER_TIMESTAMP (buf);
229
230   // draw the offset lines
231   for (y = 0; y < height ; y += filter->linespace){
232     for (x = 0; x <= width; x++) {
233       nsrc = src + (y * width) + x;
234
235       // Calc Y Value for curpix
236       R = ((*nsrc) & 0xff0000) >> (16 - 1);
237       G = ((*nsrc) & 0xff00) >> (8 - 2);
238       B =  (*nsrc) & 0xff;
239
240       yval = y - ((short) (R + G + B) / filter->vscale) ;
241
242       if (yval > 0) {
243         dest[x + (yval * width)] = THE_COLOR;
244       }
245     }
246   }
247   
248   gst_buffer_unref (buf);
249
250   gst_pad_push (filter->srcpad, outbuf);
251 }
252
253 static void
254 gst_revtv_set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec)
255 {
256   GstRevTV *filter;
257
258   /* it's not null if we got it, but it might not be ours */
259   g_return_if_fail (GST_IS_REVTV (object));
260
261   filter = GST_REVTV (object);
262
263   switch (prop_id) {
264     case ARG_DELAY:
265       filter->vgrabtime = g_value_get_int (value);
266       break;
267     case ARG_LINESPACE:
268       filter->linespace = g_value_get_int (value);
269       break;
270     case ARG_GAIN:
271       filter->vscale = g_value_get_int (value);
272       break;
273     default:
274       break;
275   }
276 }
277
278 static void
279 gst_revtv_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec)
280 {
281   GstRevTV *filter;
282
283   /* it's not null if we got it, but it might not be ours */
284   g_return_if_fail (GST_IS_REVTV (object));
285
286   filter = GST_REVTV (object);
287
288   switch (prop_id) {
289     case ARG_DELAY:
290       g_value_set_int (value, filter->vgrabtime);
291       break;
292     case ARG_LINESPACE:
293       g_value_set_int (value, filter->linespace);
294       break;
295     case ARG_GAIN:
296       g_value_set_int (value, filter->vscale);
297       break;
298     default:
299       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
300       break;
301   }
302 }