3 * Copyright (C) 2007 David Schleef <ds@schleef.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
15 * You should have received a copy of the GNU Library General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 * Logic enhanced by William Brack <wbrack@mmm.com.hk>
25 * SECTION:element-bayer2rgb
27 * Decodes raw camera bayer (fourcc BA81) to RGB.
31 * In order to guard against my advancing maturity, some extra detailed
32 * information about the logic of the decode is included here. Much of
33 * this was inspired by a technical paper from siliconimaging.com, which
34 * in turn was based upon an article from IEEE,
35 * T. Sakamoto, C. Nakanishi and T. Hase,
36 * “Software pixel interpolation for digital still cameras suitable for
38 * IEEE Trans. Consumer Electronics, vol. 44, no. 4, November 1998.
40 * The code assumes a Bayer matrix of the type produced by the fourcc
41 * BA81 (v4l2 format SBGGR8) of width w and height h which looks like:
51 * We expand this matrix, producing a separate {r, g, b} triple for each
52 * of the individual elements. The algorithm for doing this expansion is
55 * We are designing for speed of transformation, at a slight expense of code.
56 * First, we calculate the appropriate triples for the four corners, the
57 * remainder of the top and bottom rows, and the left and right columns.
58 * The reason for this is that those elements are transformed slightly
59 * differently than all of the remainder of the matrix. Finally, we transform
60 * all of the remainder.
62 * The transformation into the "appropriate triples" is based upon the
63 * "nearest neighbor" principal, with some additional complexity for the
64 * calculation of the "green" element, where an "adaptive" pairing is used.
66 * For purposes of documentation and indentification, each element of the
67 * original array can be put into one of four classes:
70 * GR A green element which is followed by a red one
71 * GB A green element which is followed by a blue one
79 #include <gst/base/gstbasetransform.h>
80 #include <gst/video/video.h>
84 #include "gstbayerorc.h"
86 #define GST_CAT_DEFAULT gst_bayer2rgb_debug
87 GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
91 GST_BAYER_2_RGB_FORMAT_BGGR = 0,
92 GST_BAYER_2_RGB_FORMAT_GBRG,
93 GST_BAYER_2_RGB_FORMAT_GRBG,
94 GST_BAYER_2_RGB_FORMAT_RGGB
98 #define GST_TYPE_BAYER2RGB (gst_bayer2rgb_get_type())
99 #define GST_BAYER2RGB(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_BAYER2RGB,GstBayer2RGB))
100 #define GST_IS_BAYER2RGB(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_BAYER2RGB))
101 #define GST_BAYER2RGB_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass) ,GST_TYPE_BAYER2RGB,GstBayer2RGBClass))
102 #define GST_IS_BAYER2RGB_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass) ,GST_TYPE_BAYER2RGB))
103 #define GST_BAYER2RGB_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj) ,GST_TYPE_BAYER2RGB,GstBayer2RGBClass))
104 typedef struct _GstBayer2RGB GstBayer2RGB;
105 typedef struct _GstBayer2RGBClass GstBayer2RGBClass;
107 typedef void (*GstBayer2RGBProcessFunc) (GstBayer2RGB *, guint8 *, guint);
111 GstBaseTransform basetransform;
117 int r_off; /* offset for red */
118 int g_off; /* offset for green */
119 int b_off; /* offset for blue */
123 struct _GstBayer2RGBClass
125 GstBaseTransformClass parent;
129 GST_VIDEO_CAPS_MAKE ("{ RGBx, xRGB, BGRx, xBGR, RGBA, ARGB, BGRA, ABGR }")
131 #define SINK_CAPS "video/x-raw-bayer,format=(string){bggr,grbg,gbrg,rggb}," \
132 "width=(int)[1,MAX],height=(int)[1,MAX],framerate=(fraction)[0/1,MAX]"
139 GType gst_bayer2rgb_get_type (void);
141 #define gst_bayer2rgb_parent_class parent_class
142 G_DEFINE_TYPE (GstBayer2RGB, gst_bayer2rgb, GST_TYPE_BASE_TRANSFORM);
144 static void gst_bayer2rgb_set_property (GObject * object, guint prop_id,
145 const GValue * value, GParamSpec * pspec);
146 static void gst_bayer2rgb_get_property (GObject * object, guint prop_id,
147 GValue * value, GParamSpec * pspec);
149 static gboolean gst_bayer2rgb_set_caps (GstBaseTransform * filter,
150 GstCaps * incaps, GstCaps * outcaps);
151 static GstFlowReturn gst_bayer2rgb_transform (GstBaseTransform * base,
152 GstBuffer * inbuf, GstBuffer * outbuf);
153 static void gst_bayer2rgb_reset (GstBayer2RGB * filter);
154 static GstCaps *gst_bayer2rgb_transform_caps (GstBaseTransform * base,
155 GstPadDirection direction, GstCaps * caps, GstCaps * filter);
156 static gboolean gst_bayer2rgb_get_unit_size (GstBaseTransform * base,
157 GstCaps * caps, gsize * size);
161 gst_bayer2rgb_class_init (GstBayer2RGBClass * klass)
163 GObjectClass *gobject_class;
164 GstElementClass *gstelement_class;
166 gobject_class = (GObjectClass *) klass;
167 gstelement_class = (GstElementClass *) klass;
169 gobject_class->set_property = gst_bayer2rgb_set_property;
170 gobject_class->get_property = gst_bayer2rgb_get_property;
172 gst_element_class_set_details_simple (gstelement_class,
173 "Bayer to RGB decoder for cameras", "Filter/Converter/Video",
174 "Converts video/x-raw-bayer to video/x-raw",
175 "William Brack <wbrack@mmm.com.hk>");
177 gst_element_class_add_pad_template (gstelement_class,
178 gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
179 gst_caps_from_string (SRC_CAPS)));
180 gst_element_class_add_pad_template (gstelement_class,
181 gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
182 gst_caps_from_string (SINK_CAPS)));
184 GST_BASE_TRANSFORM_CLASS (klass)->transform_caps =
185 GST_DEBUG_FUNCPTR (gst_bayer2rgb_transform_caps);
186 GST_BASE_TRANSFORM_CLASS (klass)->get_unit_size =
187 GST_DEBUG_FUNCPTR (gst_bayer2rgb_get_unit_size);
188 GST_BASE_TRANSFORM_CLASS (klass)->set_caps =
189 GST_DEBUG_FUNCPTR (gst_bayer2rgb_set_caps);
190 GST_BASE_TRANSFORM_CLASS (klass)->transform =
191 GST_DEBUG_FUNCPTR (gst_bayer2rgb_transform);
193 GST_DEBUG_CATEGORY_INIT (gst_bayer2rgb_debug, "bayer2rgb", 0,
194 "bayer2rgb element");
198 gst_bayer2rgb_init (GstBayer2RGB * filter)
200 gst_bayer2rgb_reset (filter);
201 gst_base_transform_set_in_place (GST_BASE_TRANSFORM (filter), TRUE);
204 /* No properties are implemented, so only a warning is produced */
206 gst_bayer2rgb_set_property (GObject * object, guint prop_id,
207 const GValue * value, GParamSpec * pspec)
212 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
218 gst_bayer2rgb_get_property (GObject * object, guint prop_id,
219 GValue * value, GParamSpec * pspec)
224 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
230 gst_bayer2rgb_set_caps (GstBaseTransform * base, GstCaps * incaps,
233 GstBayer2RGB *bayer2rgb = GST_BAYER2RGB (base);
234 GstStructure *structure;
238 GST_DEBUG ("in caps %" GST_PTR_FORMAT " out caps %" GST_PTR_FORMAT, incaps,
241 structure = gst_caps_get_structure (incaps, 0);
243 gst_structure_get_int (structure, "width", &bayer2rgb->width);
244 gst_structure_get_int (structure, "height", &bayer2rgb->height);
246 format = gst_structure_get_string (structure, "format");
247 if (g_str_equal (format, "bggr")) {
248 bayer2rgb->format = GST_BAYER_2_RGB_FORMAT_BGGR;
249 } else if (g_str_equal (format, "gbrg")) {
250 bayer2rgb->format = GST_BAYER_2_RGB_FORMAT_GBRG;
251 } else if (g_str_equal (format, "grbg")) {
252 bayer2rgb->format = GST_BAYER_2_RGB_FORMAT_GRBG;
253 } else if (g_str_equal (format, "rggb")) {
254 bayer2rgb->format = GST_BAYER_2_RGB_FORMAT_RGGB;
259 /* To cater for different RGB formats, we need to set params for later */
260 gst_video_info_from_caps (&info, outcaps);
261 bayer2rgb->r_off = GST_VIDEO_INFO_COMP_OFFSET (&info, 0);
262 bayer2rgb->g_off = GST_VIDEO_INFO_COMP_OFFSET (&info, 1);
263 bayer2rgb->b_off = GST_VIDEO_INFO_COMP_OFFSET (&info, 2);
265 bayer2rgb->info = info;
271 gst_bayer2rgb_reset (GstBayer2RGB * filter)
278 gst_video_info_init (&filter->info);
282 gst_bayer2rgb_transform_caps (GstBaseTransform * base,
283 GstPadDirection direction, GstCaps * caps, GstCaps * filter)
285 GstStructure *structure;
287 GstStructure *newstruct;
289 GST_DEBUG_OBJECT (caps, "transforming caps (from)");
291 structure = gst_caps_get_structure (caps, 0);
293 if (direction == GST_PAD_SRC) {
294 newcaps = gst_caps_from_string ("video/x-raw-bayer,"
295 "format=(string){bggr,grbg,gbrg,rggb}");
297 newcaps = gst_caps_new_empty_simple ("video/x-raw");
299 newstruct = gst_caps_get_structure (newcaps, 0);
301 gst_structure_set_value (newstruct, "width",
302 gst_structure_get_value (structure, "width"));
303 gst_structure_set_value (newstruct, "height",
304 gst_structure_get_value (structure, "height"));
305 gst_structure_set_value (newstruct, "framerate",
306 gst_structure_get_value (structure, "framerate"));
308 GST_DEBUG_OBJECT (newcaps, "transforming caps (into)");
314 gst_bayer2rgb_get_unit_size (GstBaseTransform * base, GstCaps * caps,
317 GstStructure *structure;
322 structure = gst_caps_get_structure (caps, 0);
324 if (gst_structure_get_int (structure, "width", &width) &&
325 gst_structure_get_int (structure, "height", &height)) {
326 name = gst_structure_get_name (structure);
327 /* Our name must be either video/x-raw-bayer video/x-raw-rgb */
328 if (strcmp (name, "video/x-raw")) {
329 *size = GST_ROUND_UP_4 (width) * height;
332 /* For output, calculate according to format (always 32 bits) */
333 *size = width * height * 4;
338 GST_ELEMENT_ERROR (base, CORE, NEGOTIATION, (NULL),
339 ("Incomplete caps, some required field missing"));
344 gst_bayer2rgb_split_and_upsample_horiz (guint8 * dest0, guint8 * dest1,
345 const guint8 * src, int n)
351 dest0[1] = (src[0] + src[2] + 1) >> 1;
354 #if defined(__i386__) || defined(__amd64__)
355 gst_bayer_horiz_upsample_unaligned (dest0 + 2, dest1 + 2, src + 1,
358 gst_bayer_horiz_upsample (dest0 + 2, dest1 + 2, src + 2, (n - 4) >> 1);
361 for (i = n - 2; i < n; i++) {
364 dest1[i] = src[i - 1];
366 dest0[i] = src[i - 1];
372 typedef void (*process_func) (guint8 * d0, const guint8 * s0, const guint8 * s1,
373 const guint8 * s2, const guint8 * s3, const guint8 * s4, const guint8 * s5,
377 gst_bayer2rgb_process (GstBayer2RGB * bayer2rgb, uint8_t * dest,
378 int dest_stride, uint8_t * src, int src_stride)
382 process_func merge[2] = { NULL, NULL };
383 int r_off, g_off, b_off;
385 /* We exploit some symmetry in the functions here. The base functions
386 * are all named for the BGGR arrangement. For RGGB, we swap the
387 * red offset and blue offset in the output. For GRBG, we swap the
388 * order of the merge functions. For GBRG, do both. */
389 r_off = bayer2rgb->r_off;
390 g_off = bayer2rgb->g_off;
391 b_off = bayer2rgb->b_off;
392 if (bayer2rgb->format == GST_BAYER_2_RGB_FORMAT_RGGB ||
393 bayer2rgb->format == GST_BAYER_2_RGB_FORMAT_GBRG) {
394 r_off = bayer2rgb->b_off;
395 b_off = bayer2rgb->r_off;
398 if (r_off == 2 && g_off == 1 && b_off == 0) {
399 merge[0] = gst_bayer_merge_bg_bgra;
400 merge[1] = gst_bayer_merge_gr_bgra;
401 } else if (r_off == 3 && g_off == 2 && b_off == 1) {
402 merge[0] = gst_bayer_merge_bg_abgr;
403 merge[1] = gst_bayer_merge_gr_abgr;
404 } else if (r_off == 1 && g_off == 2 && b_off == 3) {
405 merge[0] = gst_bayer_merge_bg_argb;
406 merge[1] = gst_bayer_merge_gr_argb;
407 } else if (r_off == 0 && g_off == 1 && b_off == 2) {
408 merge[0] = gst_bayer_merge_bg_rgba;
409 merge[1] = gst_bayer_merge_gr_rgba;
411 if (bayer2rgb->format == GST_BAYER_2_RGB_FORMAT_GRBG ||
412 bayer2rgb->format == GST_BAYER_2_RGB_FORMAT_GBRG) {
413 process_func tmp = merge[0];
418 tmp = g_malloc (2 * 4 * bayer2rgb->width);
419 #define LINE(x) (tmp + ((x)&7) * bayer2rgb->width)
421 gst_bayer2rgb_split_and_upsample_horiz (LINE (3 * 2 + 0), LINE (3 * 2 + 1),
422 src + 1 * src_stride, bayer2rgb->width);
424 gst_bayer2rgb_split_and_upsample_horiz (LINE (j * 2 + 0), LINE (j * 2 + 1),
425 src + j * src_stride, bayer2rgb->width);
427 for (j = 0; j < bayer2rgb->height; j++) {
428 if (j < bayer2rgb->height - 1) {
429 gst_bayer2rgb_split_and_upsample_horiz (LINE ((j + 1) * 2 + 0),
430 LINE ((j + 1) * 2 + 1), src + (j + 1) * src_stride, bayer2rgb->width);
433 merge[j & 1] (dest + j * dest_stride,
434 LINE (j * 2 - 2), LINE (j * 2 - 1),
435 LINE (j * 2 + 0), LINE (j * 2 + 1),
436 LINE (j * 2 + 2), LINE (j * 2 + 3), bayer2rgb->width >> 1);
446 gst_bayer2rgb_transform (GstBaseTransform * base, GstBuffer * inbuf,
449 GstBayer2RGB *filter = GST_BAYER2RGB (base);
450 uint8_t *input, *output;
453 GST_DEBUG ("transforming buffer");
454 input = gst_buffer_map (inbuf, NULL, NULL, GST_MAP_READ);
455 gst_video_frame_map (&frame, &filter->info, inbuf, GST_MAP_WRITE);
457 output = GST_VIDEO_FRAME_PLANE_DATA (&frame, 0);
458 gst_bayer2rgb_process (filter, output, filter->width * 4,
459 input, filter->width);
460 gst_video_frame_unmap (&frame);
461 gst_buffer_unmap (inbuf, input, -1);