enable more; update for basetransform
[platform/upstream/gst-plugins-good.git] / gst / videobox / gstvideobox.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23 #include <gst/gst.h>
24 #include <gst/base/gstbasetransform.h>
25 #include <gst/video/video.h>
26
27 #include <string.h>
28
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))
39
40 typedef struct _GstVideoBox GstVideoBox;
41 typedef struct _GstVideoBoxClass GstVideoBoxClass;
42
43 typedef enum
44 {
45   VIDEO_BOX_FILL_BLACK,
46   VIDEO_BOX_FILL_GREEN,
47   VIDEO_BOX_FILL_BLUE,
48 }
49 GstVideoBoxFill;
50
51 struct _GstVideoBox
52 {
53   GstBaseTransform element;
54
55   /* caps */
56   gint in_width, in_height;
57   gint out_width, out_height;
58
59   gint box_left, box_right, box_top, box_bottom;
60
61   gint border_left, border_right, border_top, border_bottom;
62   gint crop_left, crop_right, crop_top, crop_bottom;
63
64   gboolean use_alpha;
65   gdouble alpha;
66   gdouble border_alpha;
67
68   GstVideoBoxFill fill_type;
69 };
70
71 struct _GstVideoBoxClass
72 {
73   GstBaseTransformClass parent_class;
74 };
75
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>");
82
83
84 #define DEFAULT_LEFT      0
85 #define DEFAULT_RIGHT     0
86 #define DEFAULT_TOP       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
91
92 enum
93 {
94   PROP_0,
95   PROP_LEFT,
96   PROP_RIGHT,
97   PROP_TOP,
98   PROP_BOTTOM,
99   PROP_FILL_TYPE,
100   PROP_ALPHA,
101   PROP_BORDER_ALPHA,
102   /* FILL ME */
103 };
104
105 static GstStaticPadTemplate gst_video_box_src_template =
106 GST_STATIC_PAD_TEMPLATE ("src",
107     GST_PAD_SRC,
108     GST_PAD_ALWAYS,
109     GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("{ AYUV, I420 }"))
110     );
111
112 static GstStaticPadTemplate gst_video_box_sink_template =
113 GST_STATIC_PAD_TEMPLATE ("sink",
114     GST_PAD_SINK,
115     GST_PAD_ALWAYS,
116     GST_STATIC_CAPS (GST_VIDEO_CAPS_YUV ("I420"))
117     );
118
119
120 GST_BOILERPLATE (GstVideoBox, gst_video_box, GstBaseTransform,
121     GST_TYPE_BASE_TRANSFORM);
122
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);
127
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);
136
137
138 #define GST_TYPE_VIDEO_BOX_FILL (gst_video_box_fill_get_type())
139 static GType
140 gst_video_box_fill_get_type (void)
141 {
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"},
147     {0, NULL, NULL},
148   };
149
150   if (!video_box_fill_type) {
151     video_box_fill_type =
152         g_enum_register_static ("GstVideoBoxFill", video_box_fill);
153   }
154   return video_box_fill_type;
155 }
156
157
158 static void
159 gst_video_box_base_init (gpointer g_class)
160 {
161   GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
162
163   gst_element_class_set_details (element_class, &gst_video_box_details);
164
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));
169 }
170
171 static void
172 gst_video_box_class_init (GstVideoBoxClass * klass)
173 {
174   GObjectClass *gobject_class;
175   GstBaseTransformClass *trans_class;
176
177   gobject_class = (GObjectClass *) klass;
178   trans_class = (GstBaseTransformClass *) klass;
179
180   gobject_class->set_property = gst_video_box_set_property;
181   gobject_class->get_property = gst_video_box_get_property;
182
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,
209           G_PARAM_READWRITE));
210
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;
215 }
216
217 static void
218 gst_video_box_init (GstVideoBox * video_box)
219 {
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;
231 }
232
233 static void
234 gst_video_box_set_property (GObject * object, guint prop_id,
235     const GValue * value, GParamSpec * pspec)
236 {
237   GstVideoBox *video_box = GST_VIDEO_BOX (object);
238
239   switch (prop_id) {
240     case PROP_LEFT:
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;
245       } else {
246         video_box->border_left = 0;
247         video_box->crop_left = video_box->box_left;
248       }
249       break;
250     case PROP_RIGHT:
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;
255       } else {
256         video_box->border_right = 0;
257         video_box->crop_right = video_box->box_right;
258       }
259       break;
260     case PROP_TOP:
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;
265       } else {
266         video_box->border_top = 0;
267         video_box->crop_top = video_box->box_top;
268       }
269       break;
270     case PROP_BOTTOM:
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;
275       } else {
276         video_box->border_bottom = 0;
277         video_box->crop_bottom = video_box->box_bottom;
278       }
279       break;
280     case PROP_FILL_TYPE:
281       video_box->fill_type = g_value_get_enum (value);
282       break;
283     case PROP_ALPHA:
284       video_box->alpha = g_value_get_double (value);
285       break;
286     case PROP_BORDER_ALPHA:
287       video_box->border_alpha = g_value_get_double (value);
288       break;
289     default:
290       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
291       break;
292   }
293 }
294 static void
295 gst_video_box_get_property (GObject * object, guint prop_id, GValue * value,
296     GParamSpec * pspec)
297 {
298   GstVideoBox *video_box = GST_VIDEO_BOX (object);
299
300   switch (prop_id) {
301     case PROP_LEFT:
302       g_value_set_int (value, video_box->box_left);
303       break;
304     case PROP_RIGHT:
305       g_value_set_int (value, video_box->box_right);
306       break;
307     case PROP_TOP:
308       g_value_set_int (value, video_box->box_top);
309       break;
310     case PROP_BOTTOM:
311       g_value_set_int (value, video_box->box_bottom);
312       break;
313     case PROP_FILL_TYPE:
314       g_value_set_enum (value, video_box->fill_type);
315       break;
316     case PROP_ALPHA:
317       g_value_set_double (value, video_box->alpha);
318       break;
319     case PROP_BORDER_ALPHA:
320       g_value_set_double (value, video_box->border_alpha);
321       break;
322     default:
323       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
324       break;
325   }
326 }
327
328 static GstCaps *
329 gst_video_box_transform_caps (GstBaseTransform * trans,
330     GstPadDirection direction, GstCaps * from)
331 {
332   GstVideoBox *video_box;
333   GstCaps *to;
334   GstStructure *structure;
335   gint dir, i, tmp;
336
337   video_box = GST_VIDEO_BOX (trans);
338   to = gst_caps_copy (from);
339   dir = (direction == GST_PAD_SINK) ? -1 : 1;
340
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);
350   }
351
352   return to;
353 }
354
355 static gboolean
356 gst_video_box_set_caps (GstBaseTransform * trans, GstCaps * in, GstCaps * out)
357 {
358   GstVideoBox *video_box;
359   GstStructure *structure;
360   gboolean ret;
361   guint32 fourcc = 0;
362
363   video_box = GST_VIDEO_BOX (trans);
364
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);
368
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);
373
374   video_box->use_alpha = fourcc == GST_STR_FOURCC ("AYUV");
375
376   return ret;
377 }
378
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)
382
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)
387
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))
391
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))
393
394 static gboolean
395 gst_video_box_get_unit_size (GstBaseTransform * trans, GstCaps * caps,
396     guint * size)
397 {
398   GstVideoBox *video_box;
399
400   g_return_val_if_fail (size, FALSE);
401   video_box = GST_VIDEO_BOX (trans);
402
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;
408     } else {
409       *size = GST_VIDEO_I420_SIZE (video_box->out_width, video_box->out_height);
410     }
411   }
412
413   return TRUE;
414 }
415
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 };
419
420 static void
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,
424     guint8 fill_color)
425 {
426   gint j;
427
428   /* top border */
429   for (j = 0; j < bt; j++) {
430     memset (dest, fill_color, dest_width);
431     dest += dest_stride;
432   }
433
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);
439     dest += dest_stride;
440     src += src_stride;
441   }
442
443   /* bottom border */
444   for (j = 0; j < bb; j++) {
445     memset (dest, fill_color, dest_width);
446     dest += dest_stride;
447   }
448 }
449
450 static void
451 gst_video_box_i420 (GstVideoBox * video_box, guint8 * src, guint8 * dest)
452 {
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;
459   gint br, bl, bt, bb;
460
461   br = video_box->border_right;
462   bl = video_box->border_left;
463   bt = video_box->border_top;
464   bb = video_box->border_bottom;
465
466   out_width = video_box->out_width;
467   out_height = video_box->out_height;
468
469   src_width = video_box->in_width;
470   src_height = video_box->in_height;
471
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);
474
475   /* Y plane */
476   src_stride = GST_VIDEO_I420_Y_ROWSTRIDE (src_width);
477   dest_stride = GST_VIDEO_I420_Y_ROWSTRIDE (out_width);
478
479   destY = dest + GST_VIDEO_I420_Y_OFFSET (out_width, out_height);
480
481   srcY = src + GST_VIDEO_I420_Y_OFFSET (src_width, src_height);
482   srcY += src_stride * video_box->crop_top + video_box->crop_left;
483
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]);
487
488   /* U plane */
489   src_stride = GST_VIDEO_I420_U_ROWSTRIDE (src_width);
490   dest_stride = GST_VIDEO_I420_U_ROWSTRIDE (out_width);
491
492   destU = dest + GST_VIDEO_I420_U_OFFSET (out_width, out_height);
493
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);
496
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]);
500
501   /* V plane */
502   src_stride = GST_VIDEO_I420_V_ROWSTRIDE (src_width);
503   dest_stride = GST_VIDEO_I420_V_ROWSTRIDE (out_width);
504
505   destV = dest + GST_VIDEO_I420_V_OFFSET (out_width, out_height);
506
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);
509
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]);
513 }
514
515 /* Note the source image is always I420, we
516  * are converting to AYUV on the fly here */
517
518 static void
519 gst_video_box_ayuv (GstVideoBox * video_box, guint8 * src, guint8 * dest)
520 {
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;
525   gint br, bl, bt, bb;
526   gint colorY, colorU, colorV;
527   gint i, j;
528   guint8 b_alpha = (guint8) (video_box->border_alpha * 255);
529   guint8 i_alpha = (guint8) (video_box->alpha * 255);
530   guint32 *destp = (guint32 *) dest;
531   guint32 ayuv;
532
533   br = video_box->border_right;
534   bl = video_box->border_left;
535   bt = video_box->border_top;
536   bb = video_box->border_bottom;
537
538   out_width = video_box->out_width;
539   out_height = video_box->out_height;
540
541   src_stride = GST_VIDEO_I420_Y_ROWSTRIDE (video_box->in_width);
542   src_stride2 = src_stride / 2;
543
544   crop_width =
545       video_box->in_width - (video_box->crop_left + video_box->crop_right);
546   crop_width2 = crop_width / 2;
547   crop_height =
548       video_box->in_height - (video_box->crop_top + video_box->crop_bottom);
549
550   srcY =
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;
553   srcU =
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);
556   srcV =
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);
559
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];
563
564   ayuv =
565       GUINT32_FROM_BE ((b_alpha << 24) | (colorY << 16) | (colorU << 8) |
566       colorV);
567
568   /* top border */
569   for (i = 0; i < bt; i++) {
570     for (j = 0; j < out_width; j++) {
571       *destp++ = ayuv;
572     }
573   }
574   for (i = 0; i < crop_height; i++) {
575     /* left border */
576     for (j = 0; j < bl; j++) {
577       *destp++ = ayuv;
578     }
579     dest = (guint8 *) destp;
580     /* center */
581     for (j = 0; j < crop_width2; j++) {
582       *dest++ = i_alpha;
583       *dest++ = *srcY++;
584       *dest++ = *srcU;
585       *dest++ = *srcV;
586       *dest++ = i_alpha;
587       *dest++ = *srcY++;
588       *dest++ = *srcU++;
589       *dest++ = *srcV++;
590     }
591     if (i % 2 == 0) {
592       srcU -= crop_width2;
593       srcV -= crop_width2;
594     } else {
595       srcU += src_stride2 - crop_width2;
596       srcV += src_stride2 - crop_width2;
597     }
598     srcY += src_stride - crop_width;
599
600     destp = (guint32 *) dest;
601     /* right border */
602     for (j = 0; j < br; j++) {
603       *destp++ = ayuv;
604     }
605   }
606   /* bottom border */
607   for (i = 0; i < bb; i++) {
608     for (j = 0; j < out_width; j++) {
609       *destp++ = ayuv;
610     }
611   }
612 }
613
614 static GstFlowReturn
615 gst_video_box_transform (GstBaseTransform * trans, GstBuffer * in,
616     GstBuffer * out)
617 {
618   GstVideoBox *video_box;
619
620   video_box = GST_VIDEO_BOX (trans);
621
622   if (video_box->use_alpha) {
623     gst_video_box_ayuv (video_box, GST_BUFFER_DATA (in), GST_BUFFER_DATA (out));
624   } else {
625     gst_video_box_i420 (video_box, GST_BUFFER_DATA (in), GST_BUFFER_DATA (out));
626   }
627
628   return GST_FLOW_OK;
629 }
630
631 static gboolean
632 plugin_init (GstPlugin * plugin)
633 {
634   return gst_element_register (plugin, "videobox", GST_RANK_NONE,
635       GST_TYPE_VIDEO_BOX);
636 }
637
638 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
639     GST_VERSION_MINOR,
640     "videobox",
641     "resizes a video by adding borders or cropping",
642     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)