2 * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
24 #include <gst/base/gstbasetransform.h>
25 #include <gst/video/video.h>
29 #define GST_TYPE_VIDEO_BOX \
30 (gst_video_box_get_type())
31 #define GST_VIDEO_BOX(obj) \
32 (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_VIDEO_BOX,GstVideoBox))
33 #define GST_VIDEO_BOX_CLASS(klass) \
34 (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_VIDEO_BOX,GstVideoBoxClass))
35 #define GST_IS_VIDEO_BOX(obj) \
36 (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_VIDEO_BOX))
37 #define GST_IS_VIDEO_BOX_CLASS(obj) \
38 (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_VIDEO_BOX))
40 typedef struct _GstVideoBox GstVideoBox;
41 typedef struct _GstVideoBoxClass GstVideoBoxClass;
53 GstBaseTransform element;
56 gint in_width, in_height;
57 gint out_width, out_height;
59 gint box_left, box_right, box_top, box_bottom;
61 gint border_left, border_right, border_top, border_bottom;
62 gint crop_left, crop_right, crop_top, crop_bottom;
68 GstVideoBoxFill fill_type;
71 struct _GstVideoBoxClass
73 GstBaseTransformClass parent_class;
76 /* elementfactory information */
77 static GstElementDetails gst_video_box_details =
78 GST_ELEMENT_DETAILS ("video box filter",
79 "Filter/Effect/Video",
80 "Resizes a video by adding borders or cropping",
81 "Wim Taymans <wim@fluendo.com>");
84 #define DEFAULT_LEFT 0
85 #define DEFAULT_RIGHT 0
87 #define DEFAULT_BOTTOM 0
88 #define DEFAULT_FILL_TYPE VIDEO_BOX_FILL_BLACK
89 #define DEFAULT_ALPHA 1.0
90 #define DEFAULT_BORDER_ALPHA 1.0
105 static GstStaticPadTemplate gst_video_box_src_template =
106 GST_STATIC_PAD_TEMPLATE ("src",
109 GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ AYUV, I420 }"))
112 static GstStaticPadTemplate gst_video_box_sink_template =
113 GST_STATIC_PAD_TEMPLATE ("sink",
116 GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
120 GST_BOILERPLATE (GstVideoBox, gst_video_box, GstBaseTransform,
121 GST_TYPE_BASE_TRANSFORM);
123 static void gst_video_box_set_property (GObject * object, guint prop_id,
124 const GValue * value, GParamSpec * pspec);
125 static void gst_video_box_get_property (GObject * object, guint prop_id,
126 GValue * value, GParamSpec * pspec);
128 static GstCaps *gst_video_box_transform_caps (GstBaseTransform * trans,
129 GstPadDirection direction, GstCaps * from);
130 static gboolean gst_video_box_set_caps (GstBaseTransform * trans,
131 GstCaps * in, GstCaps * out);
132 static gboolean gst_video_box_get_unit_size (GstBaseTransform * trans,
133 GstCaps * caps, guint * size);
134 static GstFlowReturn gst_video_box_transform (GstBaseTransform * trans,
135 GstBuffer * in, GstBuffer * out);
138 #define GST_TYPE_VIDEO_BOX_FILL (gst_video_box_fill_get_type())
140 gst_video_box_fill_get_type (void)
142 static GType video_box_fill_type = 0;
143 static GEnumValue video_box_fill[] = {
144 {VIDEO_BOX_FILL_BLACK, "0", "Black"},
145 {VIDEO_BOX_FILL_GREEN, "1", "Colorkey green"},
146 {VIDEO_BOX_FILL_BLUE, "2", "Colorkey blue"},
150 if (!video_box_fill_type) {
151 video_box_fill_type =
152 g_enum_register_static ("GstVideoBoxFill", video_box_fill);
154 return video_box_fill_type;
159 gst_video_box_base_init (gpointer g_class)
161 GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
163 gst_element_class_set_details (element_class, &gst_video_box_details);
165 gst_element_class_add_pad_template (element_class,
166 gst_static_pad_template_get (&gst_video_box_sink_template));
167 gst_element_class_add_pad_template (element_class,
168 gst_static_pad_template_get (&gst_video_box_src_template));
172 gst_video_box_class_init (GstVideoBoxClass * klass)
174 GObjectClass *gobject_class;
175 GstBaseTransformClass *trans_class;
177 gobject_class = (GObjectClass *) klass;
178 trans_class = (GstBaseTransformClass *) klass;
180 gobject_class->set_property = gst_video_box_set_property;
181 gobject_class->get_property = gst_video_box_get_property;
183 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_FILL_TYPE,
184 g_param_spec_enum ("fill", "Fill", "How to fill the borders",
185 GST_TYPE_VIDEO_BOX_FILL, DEFAULT_FILL_TYPE,
186 (GParamFlags) G_PARAM_READWRITE));
187 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_LEFT,
188 g_param_spec_int ("left", "Left",
189 "Pixels to box at left (<0 = add a border)", G_MININT, G_MAXINT,
190 DEFAULT_LEFT, G_PARAM_READWRITE));
191 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_RIGHT,
192 g_param_spec_int ("right", "Right",
193 "Pixels to box at right (<0 = add a border)", G_MININT, G_MAXINT,
194 DEFAULT_RIGHT, G_PARAM_READWRITE));
195 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_TOP,
196 g_param_spec_int ("top", "Top",
197 "Pixels to box at top (<0 = add a border)", G_MININT, G_MAXINT,
198 DEFAULT_TOP, G_PARAM_READWRITE));
199 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_BOTTOM,
200 g_param_spec_int ("bottom", "Bottom",
201 "Pixels to box at bottom (<0 = add a border)", G_MININT, G_MAXINT,
202 DEFAULT_BOTTOM, G_PARAM_READWRITE));
203 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_ALPHA,
204 g_param_spec_double ("alpha", "Alpha", "Alpha value picture", 0.0, 1.0,
205 DEFAULT_ALPHA, G_PARAM_READWRITE));
206 g_object_class_install_property (G_OBJECT_CLASS (klass), PROP_BORDER_ALPHA,
207 g_param_spec_double ("border_alpha", "Border Alpha",
208 "Alpha value of the border", 0.0, 1.0, DEFAULT_BORDER_ALPHA,
211 trans_class->transform_caps = gst_video_box_transform_caps;
212 trans_class->set_caps = gst_video_box_set_caps;
213 trans_class->get_unit_size = gst_video_box_get_unit_size;
214 trans_class->transform = gst_video_box_transform;
218 gst_video_box_init (GstVideoBox * video_box, GstVideoBoxClass * g_class)
220 video_box->box_right = DEFAULT_RIGHT;
221 video_box->box_left = DEFAULT_LEFT;
222 video_box->box_top = DEFAULT_TOP;
223 video_box->box_bottom = DEFAULT_BOTTOM;
224 video_box->crop_right = 0;
225 video_box->crop_left = 0;
226 video_box->crop_top = 0;
227 video_box->crop_bottom = 0;
228 video_box->fill_type = DEFAULT_FILL_TYPE;
229 video_box->alpha = DEFAULT_ALPHA;
230 video_box->border_alpha = DEFAULT_BORDER_ALPHA;
234 gst_video_box_set_property (GObject * object, guint prop_id,
235 const GValue * value, GParamSpec * pspec)
237 GstVideoBox *video_box = GST_VIDEO_BOX (object);
241 video_box->box_left = g_value_get_int (value);
242 if (video_box->box_left < 0) {
243 video_box->border_left = -video_box->box_left;
244 video_box->crop_left = 0;
246 video_box->border_left = 0;
247 video_box->crop_left = video_box->box_left;
251 video_box->box_right = g_value_get_int (value);
252 if (video_box->box_right < 0) {
253 video_box->border_right = -video_box->box_right;
254 video_box->crop_right = 0;
256 video_box->border_right = 0;
257 video_box->crop_right = video_box->box_right;
261 video_box->box_top = g_value_get_int (value);
262 if (video_box->box_top < 0) {
263 video_box->border_top = -video_box->box_top;
264 video_box->crop_top = 0;
266 video_box->border_top = 0;
267 video_box->crop_top = video_box->box_top;
271 video_box->box_bottom = g_value_get_int (value);
272 if (video_box->box_bottom < 0) {
273 video_box->border_bottom = -video_box->box_bottom;
274 video_box->crop_bottom = 0;
276 video_box->border_bottom = 0;
277 video_box->crop_bottom = video_box->box_bottom;
281 video_box->fill_type = g_value_get_enum (value);
284 video_box->alpha = g_value_get_double (value);
286 case PROP_BORDER_ALPHA:
287 video_box->border_alpha = g_value_get_double (value);
290 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
295 gst_video_box_get_property (GObject * object, guint prop_id, GValue * value,
298 GstVideoBox *video_box = GST_VIDEO_BOX (object);
302 g_value_set_int (value, video_box->box_left);
305 g_value_set_int (value, video_box->box_right);
308 g_value_set_int (value, video_box->box_top);
311 g_value_set_int (value, video_box->box_bottom);
314 g_value_set_enum (value, video_box->fill_type);
317 g_value_set_double (value, video_box->alpha);
319 case PROP_BORDER_ALPHA:
320 g_value_set_double (value, video_box->border_alpha);
323 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
329 gst_video_box_transform_caps (GstBaseTransform * trans,
330 GstPadDirection direction, GstCaps * from)
332 GstVideoBox *video_box;
334 GstStructure *structure;
337 video_box = GST_VIDEO_BOX (trans);
338 to = gst_caps_copy (from);
339 dir = (direction == GST_PAD_SINK) ? -1 : 1;
341 /* FIXME, include AYUV */
342 for (i = 0; i < gst_caps_get_size (to); i++) {
343 structure = gst_caps_get_structure (to, i);
344 if (gst_structure_get_int (structure, "width", &tmp))
345 gst_structure_set (structure, "width", G_TYPE_INT,
346 tmp + direction * (video_box->box_left + video_box->box_right), NULL);
347 if (gst_structure_get_int (structure, "height", &tmp))
348 gst_structure_set (structure, "height", G_TYPE_INT,
349 tmp + direction * (video_box->box_top + video_box->box_bottom), NULL);
356 gst_video_box_set_caps (GstBaseTransform * trans, GstCaps * in, GstCaps * out)
358 GstVideoBox *video_box;
359 GstStructure *structure;
363 video_box = GST_VIDEO_BOX (trans);
365 structure = gst_caps_get_structure (in, 0);
366 ret = gst_structure_get_int (structure, "width", &video_box->in_width);
367 ret &= gst_structure_get_int (structure, "height", &video_box->in_height);
369 structure = gst_caps_get_structure (out, 0);
370 ret &= gst_structure_get_int (structure, "width", &video_box->out_width);
371 ret &= gst_structure_get_int (structure, "height", &video_box->out_height);
372 ret &= gst_structure_get_fourcc (structure, "format", &fourcc);
374 video_box->use_alpha = fourcc == GST_STR_FOURCC ("AYUV");
379 #define ROUND_UP_2(x) (((x)+1)&~1)
380 #define ROUND_UP_4(x) (((x)+3)&~3)
381 #define ROUND_UP_8(x) (((x)+7)&~7)
383 /* see gst-plugins/gst/games/gstvideoimage.c, paint_setup_I420() */
384 #define GST_VIDEO_I420_Y_ROWSTRIDE(width) (ROUND_UP_4(width))
385 #define GST_VIDEO_I420_U_ROWSTRIDE(width) (ROUND_UP_8(width)/2)
386 #define GST_VIDEO_I420_V_ROWSTRIDE(width) ((ROUND_UP_8(GST_VIDEO_I420_Y_ROWSTRIDE(width)))/2)
388 #define GST_VIDEO_I420_Y_OFFSET(w,h) (0)
389 #define GST_VIDEO_I420_U_OFFSET(w,h) (GST_VIDEO_I420_Y_OFFSET(w,h)+(GST_VIDEO_I420_Y_ROWSTRIDE(w)*ROUND_UP_2(h)))
390 #define GST_VIDEO_I420_V_OFFSET(w,h) (GST_VIDEO_I420_U_OFFSET(w,h)+(GST_VIDEO_I420_U_ROWSTRIDE(w)*ROUND_UP_2(h)/2))
392 #define GST_VIDEO_I420_SIZE(w,h) (GST_VIDEO_I420_V_OFFSET(w,h)+(GST_VIDEO_I420_V_ROWSTRIDE(w)*ROUND_UP_2(h)/2))
395 gst_video_box_get_unit_size (GstBaseTransform * trans, GstCaps * caps,
398 GstVideoBox *video_box;
400 g_return_val_if_fail (size, FALSE);
401 video_box = GST_VIDEO_BOX (trans);
403 if (gst_caps_is_equal (caps, GST_PAD_CAPS (trans->sinkpad))) {
404 *size = GST_VIDEO_I420_SIZE (video_box->in_width, video_box->in_height);
405 } else if (gst_caps_is_equal (caps, GST_PAD_CAPS (trans->srcpad))) {
406 if (video_box->use_alpha) {
407 *size = video_box->out_height * video_box->out_height * 4;
409 *size = GST_VIDEO_I420_SIZE (video_box->out_width, video_box->out_height);
416 static int yuv_colors_Y[] = { 16, 150, 29 };
417 static int yuv_colors_U[] = { 128, 46, 255 };
418 static int yuv_colors_V[] = { 128, 21, 107 };
421 gst_video_box_copy_plane_i420 (GstVideoBox * video_box, guint8 * src,
422 guint8 * dest, gint br, gint bl, gint bt, gint bb, gint src_crop_width,
423 gint src_crop_height, gint src_stride, gint dest_width, gint dest_stride,
429 for (j = 0; j < bt; j++) {
430 memset (dest, fill_color, dest_width);
434 /* copy and add left and right border */
435 for (j = 0; j < src_crop_height; j++) {
436 memset (dest, fill_color, bl);
437 memcpy (dest + bl, src, src_crop_width);
438 memset (dest + bl + src_crop_width, fill_color, br);
444 for (j = 0; j < bb; j++) {
445 memset (dest, fill_color, dest_width);
451 gst_video_box_i420 (GstVideoBox * video_box, guint8 * src, guint8 * dest)
453 guint8 *srcY, *srcU, *srcV;
454 guint8 *destY, *destU, *destV;
455 gint crop_width, crop_height;
456 gint out_width, out_height;
457 gint src_width, src_height;
458 gint src_stride, dest_stride;
461 br = video_box->border_right;
462 bl = video_box->border_left;
463 bt = video_box->border_top;
464 bb = video_box->border_bottom;
466 out_width = video_box->out_width;
467 out_height = video_box->out_height;
469 src_width = video_box->in_width;
470 src_height = video_box->in_height;
472 crop_width = src_width - (video_box->crop_left + video_box->crop_right);
473 crop_height = src_height - (video_box->crop_top + video_box->crop_bottom);
476 src_stride = GST_VIDEO_I420_Y_ROWSTRIDE (src_width);
477 dest_stride = GST_VIDEO_I420_Y_ROWSTRIDE (out_width);
479 destY = dest + GST_VIDEO_I420_Y_OFFSET (out_width, out_height);
481 srcY = src + GST_VIDEO_I420_Y_OFFSET (src_width, src_height);
482 srcY += src_stride * video_box->crop_top + video_box->crop_left;
484 gst_video_box_copy_plane_i420 (video_box, srcY, destY, br, bl, bt, bb,
485 crop_width, crop_height, src_stride, out_width, dest_stride,
486 yuv_colors_Y[video_box->fill_type]);
489 src_stride = GST_VIDEO_I420_U_ROWSTRIDE (src_width);
490 dest_stride = GST_VIDEO_I420_U_ROWSTRIDE (out_width);
492 destU = dest + GST_VIDEO_I420_U_OFFSET (out_width, out_height);
494 srcU = src + GST_VIDEO_I420_U_OFFSET (src_width, src_height);
495 srcU += src_stride * (video_box->crop_top / 2) + (video_box->crop_left / 2);
497 gst_video_box_copy_plane_i420 (video_box, srcU, destU, br / 2, bl / 2, bt / 2,
498 bb / 2, crop_width / 2, crop_height / 2, src_stride, out_width / 2,
499 dest_stride, yuv_colors_U[video_box->fill_type]);
502 src_stride = GST_VIDEO_I420_V_ROWSTRIDE (src_width);
503 dest_stride = GST_VIDEO_I420_V_ROWSTRIDE (out_width);
505 destV = dest + GST_VIDEO_I420_V_OFFSET (out_width, out_height);
507 srcV = src + GST_VIDEO_I420_V_OFFSET (src_width, src_height);
508 srcV += src_stride * (video_box->crop_top / 2) + (video_box->crop_left / 2);
510 gst_video_box_copy_plane_i420 (video_box, srcV, destV, br / 2, bl / 2, bt / 2,
511 bb / 2, crop_width / 2, crop_height / 2, src_stride, out_width / 2,
512 dest_stride, yuv_colors_V[video_box->fill_type]);
515 /* Note the source image is always I420, we
516 * are converting to AYUV on the fly here */
519 gst_video_box_ayuv (GstVideoBox * video_box, guint8 * src, guint8 * dest)
521 guint8 *srcY, *srcU, *srcV;
522 gint crop_width, crop_width2, crop_height;
523 gint out_width, out_height;
524 gint src_stride, src_stride2;
526 gint colorY, colorU, colorV;
528 guint8 b_alpha = (guint8) (video_box->border_alpha * 255);
529 guint8 i_alpha = (guint8) (video_box->alpha * 255);
530 guint32 *destp = (guint32 *) dest;
533 br = video_box->border_right;
534 bl = video_box->border_left;
535 bt = video_box->border_top;
536 bb = video_box->border_bottom;
538 out_width = video_box->out_width;
539 out_height = video_box->out_height;
541 src_stride = GST_VIDEO_I420_Y_ROWSTRIDE (video_box->in_width);
542 src_stride2 = src_stride / 2;
545 video_box->in_width - (video_box->crop_left + video_box->crop_right);
546 crop_width2 = crop_width / 2;
548 video_box->in_height - (video_box->crop_top + video_box->crop_bottom);
551 src + GST_VIDEO_I420_Y_OFFSET (video_box->in_width, video_box->in_height);
552 srcY += src_stride * video_box->crop_top + video_box->crop_left;
554 src + GST_VIDEO_I420_U_OFFSET (video_box->in_width, video_box->in_height);
555 srcU += src_stride2 * (video_box->crop_top / 2) + (video_box->crop_left / 2);
557 src + GST_VIDEO_I420_V_OFFSET (video_box->in_width, video_box->in_height);
558 srcV += src_stride2 * (video_box->crop_top / 2) + (video_box->crop_left / 2);
560 colorY = yuv_colors_Y[video_box->fill_type];
561 colorU = yuv_colors_U[video_box->fill_type];
562 colorV = yuv_colors_V[video_box->fill_type];
565 GUINT32_FROM_BE ((b_alpha << 24) | (colorY << 16) | (colorU << 8) |
569 for (i = 0; i < bt; i++) {
570 for (j = 0; j < out_width; j++) {
574 for (i = 0; i < crop_height; i++) {
576 for (j = 0; j < bl; j++) {
579 dest = (guint8 *) destp;
581 for (j = 0; j < crop_width2; j++) {
595 srcU += src_stride2 - crop_width2;
596 srcV += src_stride2 - crop_width2;
598 srcY += src_stride - crop_width;
600 destp = (guint32 *) dest;
602 for (j = 0; j < br; j++) {
607 for (i = 0; i < bb; i++) {
608 for (j = 0; j < out_width; j++) {
615 gst_video_box_transform (GstBaseTransform * trans, GstBuffer * in,
618 GstVideoBox *video_box;
620 video_box = GST_VIDEO_BOX (trans);
622 if (video_box->use_alpha) {
623 gst_video_box_ayuv (video_box, GST_BUFFER_DATA (in), GST_BUFFER_DATA (out));
625 gst_video_box_i420 (video_box, GST_BUFFER_DATA (in), GST_BUFFER_DATA (out));
632 plugin_init (GstPlugin * plugin)
634 return gst_element_register (plugin, "videobox", GST_RANK_NONE,
638 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
641 "resizes a video by adding borders or cropping",
642 plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)