1 /*
2  * GStreamer
3  * Copyright (C) <2010-2015> Luis de Bethencourt <luis@debethencourt.com>
4  *
5  * Dodge - saturation video effect.
6  * Based on Pete Warden's FreeFrame plugin with the same name.
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the "Software"),
10  * to deal in the Software without restriction, including without limitation
11  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12  * and/or sell copies of the Software, and to permit persons to whom the
13  * Software is furnished to do so, subject to the following conditions:
14  *
15  * The above copyright notice and this permission notice shall be included in
16  * all copies or substantial portions of the Software.
17  *
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24  * DEALINGS IN THE SOFTWARE.
25  *
26  * Alternatively, the contents of this file may be used under the
27  * GNU Lesser General Public License Version 2.1 (the "LGPL"), in
28  * which case the following provisions apply instead of the ones
29  * mentioned above:
30  *
31  * This library is free software; you can redistribute it and/or
32  * modify it under the terms of the GNU Library General Public
33  * License as published by the Free Software Foundation; either
34  * version 2 of the License, or (at your option) any later version.
35  *
36  * This library is distributed in the hope that it will be useful,
37  * but WITHOUT ANY WARRANTY; without even the implied warranty of
38  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
39  * Library General Public License for more details.
40  *
41  * You should have received a copy of the GNU Library General Public
42  * License along with this library; if not, write to the
43  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
44  * Boston, MA 02110-1301, USA.
45  */
46 
47 /**
48  * SECTION:element-dodge
49  * @title: dodge
50  *
51  * Dodge saturates the colors of a video stream in realtime.
52  *
53  * ## Example launch line
54  * |[
55  * gst-launch-1.0 -v videotestsrc ! dodge ! videoconvert ! autovideosink
56  * ]| This pipeline shows the effect of dodge on a test stream
57  *
58  */
59 
60 #ifdef HAVE_CONFIG_H
61 #  include <config.h>
62 #endif
63 
64 #include <gst/gst.h>
65 #include <math.h>
66 
67 #include "gstplugin.h"
68 #include "gstdodge.h"
69 
70 GST_DEBUG_CATEGORY_STATIC (gst_dodge_debug);
71 #define GST_CAT_DEFAULT gst_dodge_debug
72 
73 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
74 #define CAPS_STR GST_VIDEO_CAPS_MAKE ("{  BGRx, RGBx }")
75 #else
76 #define CAPS_STR GST_VIDEO_CAPS_MAKE ("{  xBGR, xRGB }")
77 #endif
78 
79 #define gst_dodge_parent_class parent_class
80 G_DEFINE_TYPE (GstDodge, gst_dodge, GST_TYPE_VIDEO_FILTER);
81 
82 /* Filter signals and args. */
83 enum
84 {
85   LAST_SIGNAL
86 };
87 
88 enum
89 {
90   PROP_0,
91 };
92 
93 /* Initializations */
94 
95 static void transform (guint32 * src, guint32 * dest, gint video_area);
96 
97 /* The capabilities of the inputs and outputs. */
98 
99 static GstStaticPadTemplate gst_dodge_sink_template =
100 GST_STATIC_PAD_TEMPLATE ("sink",
101     GST_PAD_SINK,
102     GST_PAD_ALWAYS,
103     GST_STATIC_CAPS (CAPS_STR)
104     );
105 
106 static GstStaticPadTemplate gst_dodge_src_template =
107 GST_STATIC_PAD_TEMPLATE ("src",
108     GST_PAD_SRC,
109     GST_PAD_ALWAYS,
110     GST_STATIC_CAPS (CAPS_STR)
111     );
112 
113 static void gst_dodge_set_property (GObject * object, guint prop_id,
114     const GValue * value, GParamSpec * pspec);
115 static void gst_dodge_get_property (GObject * object, guint prop_id,
116     GValue * value, GParamSpec * pspec);
117 static void gst_dodge_finalize (GObject * object);
118 
119 static GstFlowReturn gst_dodge_transform_frame (GstVideoFilter * vfilter,
120     GstVideoFrame * in_frame, GstVideoFrame * out_frame);
121 
122 /* GObject vmethod implementations */
123 
124 /* Initialize the dodge's class. */
125 static void
gst_dodge_class_init(GstDodgeClass * klass)126 gst_dodge_class_init (GstDodgeClass * klass)
127 {
128   GObjectClass *gobject_class = (GObjectClass *) klass;
129   GstElementClass *gstelement_class = (GstElementClass *) klass;
130   GstVideoFilterClass *vfilter_class = (GstVideoFilterClass *) klass;
131 
132   gst_element_class_set_static_metadata (gstelement_class,
133       "Dodge",
134       "Filter/Effect/Video",
135       "Dodge saturates the colors in the video signal.",
136       "Luis de Bethencourt <luis@debethencourt.com>");
137 
138   gst_element_class_add_static_pad_template (gstelement_class,
139       &gst_dodge_sink_template);
140   gst_element_class_add_static_pad_template (gstelement_class,
141       &gst_dodge_src_template);
142 
143   gobject_class->set_property = gst_dodge_set_property;
144   gobject_class->get_property = gst_dodge_get_property;
145   gobject_class->finalize = gst_dodge_finalize;
146 
147   vfilter_class->transform_frame =
148       GST_DEBUG_FUNCPTR (gst_dodge_transform_frame);
149 }
150 
151 /* Initialize the element,
152  * instantiate pads and add them to element,
153  * set pad calback functions, and
154  * initialize instance structure.
155  */
156 static void
gst_dodge_init(GstDodge * filter)157 gst_dodge_init (GstDodge * filter)
158 {
159 }
160 
161 static void
gst_dodge_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)162 gst_dodge_set_property (GObject * object, guint prop_id,
163     const GValue * value, GParamSpec * pspec)
164 {
165   switch (prop_id) {
166     default:
167       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
168       break;
169   }
170 }
171 
172 static void
gst_dodge_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)173 gst_dodge_get_property (GObject * object, guint prop_id,
174     GValue * value, GParamSpec * pspec)
175 {
176   switch (prop_id) {
177     default:
178       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
179       break;
180   }
181 }
182 
183 static void
gst_dodge_finalize(GObject * object)184 gst_dodge_finalize (GObject * object)
185 {
186   G_OBJECT_CLASS (parent_class)->finalize (object);
187 }
188 
189 /* GstElement vmethod implementations */
190 
191 /* Actual processing. */
192 static GstFlowReturn
gst_dodge_transform_frame(GstVideoFilter * vfilter,GstVideoFrame * in_frame,GstVideoFrame * out_frame)193 gst_dodge_transform_frame (GstVideoFilter * vfilter,
194     GstVideoFrame * in_frame, GstVideoFrame * out_frame)
195 {
196   GstDodge *filter = GST_DODGE (vfilter);
197   guint32 *src, *dest;
198   gint video_size;
199 
200   GstClockTime timestamp;
201   gint64 stream_time;
202 
203   src = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 0);
204   dest = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 0);
205 
206   /* GstController: update the properties */
207   timestamp = GST_BUFFER_TIMESTAMP (in_frame->buffer);
208   stream_time =
209       gst_segment_to_stream_time (&GST_BASE_TRANSFORM (filter)->segment,
210       GST_FORMAT_TIME, timestamp);
211 
212   GST_DEBUG_OBJECT (filter, "sync to %" GST_TIME_FORMAT,
213       GST_TIME_ARGS (timestamp));
214 
215   if (GST_CLOCK_TIME_IS_VALID (stream_time))
216     gst_object_sync_values (GST_OBJECT (filter), stream_time);
217 
218   video_size = GST_VIDEO_FRAME_WIDTH (in_frame) *
219       GST_VIDEO_FRAME_HEIGHT (in_frame);
220 
221   transform (src, dest, video_size);
222 
223   return GST_FLOW_OK;
224 }
225 
226 /* Entry point to initialize the plug-in.
227  * Register the element factories and other features. */
228 gboolean
gst_dodge_plugin_init(GstPlugin * dodge)229 gst_dodge_plugin_init (GstPlugin * dodge)
230 {
231   /* debug category for fltering log messages */
232   GST_DEBUG_CATEGORY_INIT (gst_dodge_debug, "dodge", 0, "Template dodge");
233 
234   return gst_element_register (dodge, "dodge", GST_RANK_NONE, GST_TYPE_DODGE);
235 }
236 
237 /*** Now the image processing work.... ***/
238 
239 /* Transform processes each frame. */
240 static void
transform(guint32 * src,guint32 * dest,gint video_area)241 transform (guint32 * src, guint32 * dest, gint video_area)
242 {
243   guint32 in;
244   gint x, red, green, blue;
245 
246   for (x = 0; x < video_area; x++) {
247     in = *src++;
248 
249     red = (in >> 16) & 0xff;
250     green = (in >> 8) & 0xff;
251     blue = (in) & 0xff;
252 
253     red = (256 * red) / (256 - red);
254     green = (256 * green) / (256 - green);
255     blue = (256 * blue) / (256 - blue);
256 
257     red = CLAMP (red, 0, 255);
258     green = CLAMP (green, 0, 255);
259     blue = CLAMP (blue, 0, 255);
260 
261     *dest++ = (red << 16) | (green << 8) | blue;
262   }
263 }
264