1 /*
2 * GStreamer
3 * Copyright (C) <2010-2015> Luis de Bethencourt <luis@debethencourt.com>
4 *
5 * Exclusion - color exclusion 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-exclusion
49 * @title: exclusion
50 *
51 * Exclusion saturates the colors of a video stream in realtime.
52 *
53 * ## Example launch line
54 * |[
55 * gst-launch-1.0 -v videotestsrc ! exclusion ! videoconvert ! autovideosink
56 * ]| This pipeline shows the effect of exclusion 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 "gstexclusion.h"
68
69 #include <gst/video/video.h>
70
71 GST_DEBUG_CATEGORY_STATIC (gst_exclusion_debug);
72 #define GST_CAT_DEFAULT gst_exclusion_debug
73
74 #if G_BYTE_ORDER == G_LITTLE_ENDIAN
75 #define CAPS_STR GST_VIDEO_CAPS_MAKE ("{ BGRx, RGBx }")
76 #else
77 #define CAPS_STR GST_VIDEO_CAPS_MAKE ("{ xBGR, xRGB }")
78 #endif
79
80 /* Filter signals and args. */
81 enum
82 {
83 LAST_SIGNAL
84 };
85
86 enum
87 {
88 PROP_0 = 0,
89 PROP_FACTOR,
90 };
91
92 /* Initializations */
93
94 #define DEFAULT_FACTOR 175
95
96 static void transform (guint32 * src, guint32 * dest, gint video_area,
97 gint factor);
98
99 /* The capabilities of the inputs and outputs. */
100
101 static GstStaticPadTemplate gst_exclusion_sink_template =
102 GST_STATIC_PAD_TEMPLATE ("sink",
103 GST_PAD_SINK,
104 GST_PAD_ALWAYS,
105 GST_STATIC_CAPS (CAPS_STR)
106 );
107
108 static GstStaticPadTemplate gst_exclusion_src_template =
109 GST_STATIC_PAD_TEMPLATE ("src",
110 GST_PAD_SRC,
111 GST_PAD_ALWAYS,
112 GST_STATIC_CAPS (CAPS_STR)
113 );
114
115 #define gst_exclusion_parent_class parent_class
116 G_DEFINE_TYPE (GstExclusion, gst_exclusion, GST_TYPE_VIDEO_FILTER);
117 GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (exclusion, "exclusion", GST_RANK_NONE,
118 GST_TYPE_EXCLUSION, GST_DEBUG_CATEGORY_INIT (gst_exclusion_debug,
119 "exclusion", 0, "Template exclusion"));
120
121 static void gst_exclusion_set_property (GObject * object, guint prop_id,
122 const GValue * value, GParamSpec * pspec);
123 static void gst_exclusion_get_property (GObject * object, guint prop_id,
124 GValue * value, GParamSpec * pspec);
125 static void gst_exclusion_finalize (GObject * object);
126
127 static GstFlowReturn gst_exclusion_transform_frame (GstVideoFilter * vfilter,
128 GstVideoFrame * in_frame, GstVideoFrame * out_frame);
129
130 /* GObject vmethod implementations */
131
132 /* Initialize the exclusion's class. */
133 static void
gst_exclusion_class_init(GstExclusionClass * klass)134 gst_exclusion_class_init (GstExclusionClass * klass)
135 {
136 GObjectClass *gobject_class = (GObjectClass *) klass;
137 GstElementClass *gstelement_class = (GstElementClass *) klass;
138 GstVideoFilterClass *vfilter_class = (GstVideoFilterClass *) klass;
139
140 gst_element_class_set_static_metadata (gstelement_class, "Exclusion",
141 "Filter/Effect/Video",
142 "Exclusion exclodes the colors in the video signal.",
143 "Luis de Bethencourt <luis@debethencourt.com>");
144
145 gst_element_class_add_static_pad_template (gstelement_class,
146 &gst_exclusion_sink_template);
147 gst_element_class_add_static_pad_template (gstelement_class,
148 &gst_exclusion_src_template);
149
150 gobject_class->set_property = gst_exclusion_set_property;
151 gobject_class->get_property = gst_exclusion_get_property;
152 gobject_class->finalize = gst_exclusion_finalize;
153
154 g_object_class_install_property (gobject_class, PROP_FACTOR,
155 g_param_spec_uint ("factor", "Factor",
156 "Exclusion factor parameter", 1, 175, DEFAULT_FACTOR,
157 G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS | GST_PARAM_CONTROLLABLE));
158
159 vfilter_class->transform_frame =
160 GST_DEBUG_FUNCPTR (gst_exclusion_transform_frame);
161 }
162
163 /* Initialize the element,
164 * instantiate pads and add them to element,
165 * set pad callback functions, and
166 * initialize instance structure.
167 */
168 static void
gst_exclusion_init(GstExclusion * filter)169 gst_exclusion_init (GstExclusion * filter)
170 {
171 filter->factor = DEFAULT_FACTOR;
172 }
173
174 static void
gst_exclusion_set_property(GObject * object,guint prop_id,const GValue * value,GParamSpec * pspec)175 gst_exclusion_set_property (GObject * object, guint prop_id,
176 const GValue * value, GParamSpec * pspec)
177 {
178 GstExclusion *filter = GST_EXCLUSION (object);
179
180 switch (prop_id) {
181 case PROP_FACTOR:
182 filter->factor = g_value_get_uint (value);
183 break;
184 default:
185 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
186 break;
187 }
188 }
189
190 static void
gst_exclusion_get_property(GObject * object,guint prop_id,GValue * value,GParamSpec * pspec)191 gst_exclusion_get_property (GObject * object, guint prop_id,
192 GValue * value, GParamSpec * pspec)
193 {
194 GstExclusion *filter = GST_EXCLUSION (object);
195
196 GST_OBJECT_LOCK (filter);
197 switch (prop_id) {
198 case PROP_FACTOR:
199 g_value_set_uint (value, filter->factor);
200 break;
201 default:
202 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
203 break;
204 }
205 GST_OBJECT_UNLOCK (filter);
206 }
207
208 static void
gst_exclusion_finalize(GObject * object)209 gst_exclusion_finalize (GObject * object)
210 {
211 G_OBJECT_CLASS (parent_class)->finalize (object);
212 }
213
214 /* GstElement vmethod implementations */
215
216 /* Actual processing. */
217 static GstFlowReturn
gst_exclusion_transform_frame(GstVideoFilter * vfilter,GstVideoFrame * in_frame,GstVideoFrame * out_frame)218 gst_exclusion_transform_frame (GstVideoFilter * vfilter,
219 GstVideoFrame * in_frame, GstVideoFrame * out_frame)
220 {
221 GstExclusion *filter = GST_EXCLUSION (vfilter);
222 gint video_size, factor;
223 guint32 *src, *dest;
224 GstClockTime timestamp;
225 gint64 stream_time;
226
227 src = GST_VIDEO_FRAME_PLANE_DATA (in_frame, 0);
228 dest = GST_VIDEO_FRAME_PLANE_DATA (out_frame, 0);
229
230 /* GstController: update the properties */
231 timestamp = GST_BUFFER_TIMESTAMP (in_frame->buffer);
232 stream_time =
233 gst_segment_to_stream_time (&GST_BASE_TRANSFORM (filter)->segment,
234 GST_FORMAT_TIME, timestamp);
235
236 GST_DEBUG_OBJECT (filter, "sync to %" GST_TIME_FORMAT,
237 GST_TIME_ARGS (timestamp));
238
239 if (GST_CLOCK_TIME_IS_VALID (stream_time))
240 gst_object_sync_values (GST_OBJECT (filter), stream_time);
241
242 GST_OBJECT_LOCK (filter);
243 factor = filter->factor;
244 GST_OBJECT_UNLOCK (filter);
245
246 video_size = GST_VIDEO_FRAME_WIDTH (in_frame) *
247 GST_VIDEO_FRAME_HEIGHT (in_frame);
248 transform (src, dest, video_size, factor);
249
250 return GST_FLOW_OK;
251 }
252
253 /*** Now the image processing work.... ***/
254
255 /* Transform processes each frame. */
256 static void
transform(guint32 * src,guint32 * dest,gint video_area,gint factor)257 transform (guint32 * src, guint32 * dest, gint video_area, gint factor)
258 {
259 guint32 in;
260 gint x, red, green, blue;
261
262 for (x = 0; x < video_area; x++) {
263 in = *src++;
264
265 red = (in >> 16) & 0xff;
266 green = (in >> 8) & 0xff;
267 blue = (in) & 0xff;
268
269 red = factor -
270 (((factor - red) * (factor - red) / factor) + ((green * red) / factor));
271 green = factor -
272 (((factor - green) * (factor - green) / factor) +
273 ((green * green) / factor));
274 blue = factor -
275 (((factor - blue) * (factor - blue) / factor) +
276 ((blue * blue) / factor));
277
278 red = CLAMP (red, 0, 255);
279 green = CLAMP (green, 0, 255);
280 blue = CLAMP (blue, 0, 255);
281
282 *dest++ = (red << 16) | (green << 8) | blue;
283 }
284 }
285