video-info: add gst_video_info_align_full()
[platform/upstream/gstreamer.git] / gst-libs / gst / video / video-info.c
1 /* GStreamer
2  * Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
3  * Library       <2002> Ronald Bultje <rbultje@ronald.bitfreak.net>
4  * Copyright (C) 2007 David A. Schleef <ds@schleef.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
19  * Boston, MA 02110-1301, USA.
20  */
21
22 /**
23  * SECTION:video-info
24  * @title: GstVideoInfo
25  * @short_description: Structures and enumerations to describe raw images
26  */
27
28 #ifdef HAVE_CONFIG_H
29 #  include "config.h"
30 #endif
31
32 #include <string.h>
33 #include <stdio.h>
34
35 #include "video-info.h"
36 #include "video-tile.h"
37
38 #ifndef GST_DISABLE_GST_DEBUG
39 #define GST_CAT_DEFAULT ensure_debug_category()
40 static GstDebugCategory *
41 ensure_debug_category (void)
42 {
43   static gsize cat_gonce = 0;
44
45   if (g_once_init_enter (&cat_gonce)) {
46     gsize cat_done;
47
48     cat_done = (gsize) _gst_debug_category_new ("video-info", 0,
49         "video-info structure");
50
51     g_once_init_leave (&cat_gonce, cat_done);
52   }
53
54   return (GstDebugCategory *) cat_gonce;
55 }
56 #else
57 #define ensure_debug_category() /* NOOP */
58 #endif /* GST_DISABLE_GST_DEBUG */
59
60 /**
61  * gst_video_info_copy:
62  * @info: a #GstVideoInfo
63  *
64  * Copy a GstVideoInfo structure.
65  *
66  * Returns: a new #GstVideoInfo. free with gst_video_info_free.
67  *
68  * Since: 1.6
69  */
70 GstVideoInfo *
71 gst_video_info_copy (const GstVideoInfo * info)
72 {
73   return g_slice_dup (GstVideoInfo, info);
74 }
75
76 /**
77  * gst_video_info_free:
78  * @info: a #GstVideoInfo
79  *
80  * Free a GstVideoInfo structure previously allocated with gst_video_info_new()
81  * or gst_video_info_copy().
82  *
83  * Since: 1.6
84  */
85 void
86 gst_video_info_free (GstVideoInfo * info)
87 {
88   g_slice_free (GstVideoInfo, info);
89 }
90
91 G_DEFINE_BOXED_TYPE (GstVideoInfo, gst_video_info,
92     (GBoxedCopyFunc) gst_video_info_copy, (GBoxedFreeFunc) gst_video_info_free);
93
94 /**
95  * gst_video_info_new:
96  *
97  * Allocate a new #GstVideoInfo that is also initialized with
98  * gst_video_info_init().
99  *
100  * Returns: a new #GstVideoInfo. free with gst_video_info_free().
101  *
102  * Since: 1.6
103  */
104 GstVideoInfo *
105 gst_video_info_new (void)
106 {
107   GstVideoInfo *info;
108
109   info = g_slice_new (GstVideoInfo);
110   gst_video_info_init (info);
111
112   return info;
113 }
114
115 static gboolean fill_planes (GstVideoInfo * info,
116     gsize plane_size[GST_VIDEO_MAX_PLANES]);
117
118 /**
119  * gst_video_info_init:
120  * @info: a #GstVideoInfo
121  *
122  * Initialize @info with default values.
123  */
124 void
125 gst_video_info_init (GstVideoInfo * info)
126 {
127   g_return_if_fail (info != NULL);
128
129   memset (info, 0, sizeof (GstVideoInfo));
130
131   info->finfo = gst_video_format_get_info (GST_VIDEO_FORMAT_UNKNOWN);
132
133   info->views = 1;
134   /* arrange for sensible defaults, e.g. if turned into caps */
135   info->fps_n = 0;
136   info->fps_d = 1;
137   info->par_n = 1;
138   info->par_d = 1;
139   GST_VIDEO_INFO_MULTIVIEW_MODE (info) = GST_VIDEO_MULTIVIEW_MODE_NONE;
140   GST_VIDEO_INFO_MULTIVIEW_FLAGS (info) = GST_VIDEO_MULTIVIEW_FLAGS_NONE;
141   GST_VIDEO_INFO_FIELD_ORDER (info) = GST_VIDEO_FIELD_ORDER_UNKNOWN;
142 }
143
144 #define MAKE_COLORIMETRY(r,m,t,p) {  \
145   GST_VIDEO_COLOR_RANGE ##r, GST_VIDEO_COLOR_MATRIX_ ##m, \
146   GST_VIDEO_TRANSFER_ ##t, GST_VIDEO_COLOR_PRIMARIES_ ##p }
147
148 #define DEFAULT_YUV_SD  0
149 #define DEFAULT_YUV_HD  1
150 #define DEFAULT_RGB     2
151 #define DEFAULT_GRAY    3
152 #define DEFAULT_UNKNOWN 4
153 #define DEFAULT_YUV_UHD 5
154
155 static const GstVideoColorimetry default_color[] = {
156   MAKE_COLORIMETRY (_16_235, BT601, BT709, SMPTE170M),
157   MAKE_COLORIMETRY (_16_235, BT709, BT709, BT709),
158   MAKE_COLORIMETRY (_0_255, RGB, SRGB, BT709),
159   MAKE_COLORIMETRY (_0_255, BT601, UNKNOWN, UNKNOWN),
160   MAKE_COLORIMETRY (_UNKNOWN, UNKNOWN, UNKNOWN, UNKNOWN),
161   MAKE_COLORIMETRY (_16_235, BT2020, BT2020_12, BT2020),
162 };
163
164 static void
165 set_default_colorimetry (GstVideoInfo * info)
166 {
167   const GstVideoFormatInfo *finfo = info->finfo;
168
169   if (GST_VIDEO_FORMAT_INFO_IS_YUV (finfo)) {
170     if (info->height >= 2160) {
171       info->chroma_site = GST_VIDEO_CHROMA_SITE_H_COSITED;
172       info->colorimetry = default_color[DEFAULT_YUV_UHD];
173     } else if (info->height > 576) {
174       info->chroma_site = GST_VIDEO_CHROMA_SITE_H_COSITED;
175       info->colorimetry = default_color[DEFAULT_YUV_HD];
176     } else {
177       info->chroma_site = GST_VIDEO_CHROMA_SITE_NONE;
178       info->colorimetry = default_color[DEFAULT_YUV_SD];
179     }
180   } else if (GST_VIDEO_FORMAT_INFO_IS_GRAY (finfo)) {
181     info->colorimetry = default_color[DEFAULT_GRAY];
182   } else if (GST_VIDEO_FORMAT_INFO_IS_RGB (finfo)) {
183     info->colorimetry = default_color[DEFAULT_RGB];
184   } else {
185     info->colorimetry = default_color[DEFAULT_UNKNOWN];
186   }
187 }
188
189 static gboolean
190 validate_colorimetry (GstVideoInfo * info)
191 {
192   const GstVideoFormatInfo *finfo = info->finfo;
193
194   if (!GST_VIDEO_FORMAT_INFO_IS_RGB (finfo) &&
195       info->colorimetry.matrix == GST_VIDEO_COLOR_MATRIX_RGB) {
196     GST_WARNING
197         ("color matrix RGB is only supported with RGB format, %s is not",
198         finfo->name);
199     return FALSE;
200   }
201
202   if (GST_VIDEO_FORMAT_INFO_IS_YUV (finfo) &&
203       info->colorimetry.matrix == GST_VIDEO_COLOR_MATRIX_UNKNOWN) {
204     GST_WARNING ("Need to specify a color matrix when using YUV format (%s)",
205         finfo->name);
206     return FALSE;
207   }
208
209   return TRUE;
210 }
211
212 static gboolean
213 gst_video_info_set_format_common (GstVideoInfo * info, GstVideoFormat format,
214     guint width, guint height)
215 {
216   g_return_val_if_fail (info != NULL, FALSE);
217   g_return_val_if_fail (format != GST_VIDEO_FORMAT_UNKNOWN, FALSE);
218
219   if (width > G_MAXINT || height > G_MAXINT)
220     return FALSE;
221
222   gst_video_info_init (info);
223
224   info->finfo = gst_video_format_get_info (format);
225   info->width = width;
226   info->height = height;
227   info->views = 1;
228
229   set_default_colorimetry (info);
230
231   return TRUE;
232 }
233
234 /**
235  * gst_video_info_set_format:
236  * @info: a #GstVideoInfo
237  * @format: the format
238  * @width: a width
239  * @height: a height
240  *
241  * Set the default info for a video frame of @format and @width and @height.
242  *
243  * Note: This initializes @info first, no values are preserved. This function
244  * does not set the offsets correctly for interlaced vertically
245  * subsampled formats.
246  *
247  * Returns: %FALSE if the returned video info is invalid, e.g. because the
248  *   size of a frame can't be represented as a 32 bit integer (Since: 1.12)
249  */
250 gboolean
251 gst_video_info_set_format (GstVideoInfo * info, GstVideoFormat format,
252     guint width, guint height)
253 {
254   if (!gst_video_info_set_format_common (info, format, width, height))
255     return FALSE;
256
257   return fill_planes (info, NULL);
258 }
259
260 /**
261  * gst_video_info_set_interlaced_format:
262  * @info: a #GstVideoInfo
263  * @format: the format
264  * @mode: a #GstVideoInterlaceMode
265  * @width: a width
266  * @height: a height
267  *
268  * Same as #gst_video_info_set_format but also allowing to set the interlaced
269  * mode.
270  *
271  * Returns: %FALSE if the returned video info is invalid, e.g. because the
272  *   size of a frame can't be represented as a 32 bit integer.
273  *
274  * Since: 1.16
275  */
276 gboolean
277 gst_video_info_set_interlaced_format (GstVideoInfo * info,
278     GstVideoFormat format, GstVideoInterlaceMode mode, guint width,
279     guint height)
280 {
281   if (!gst_video_info_set_format_common (info, format, width, height))
282     return FALSE;
283
284   GST_VIDEO_INFO_INTERLACE_MODE (info) = mode;
285   return fill_planes (info, NULL);
286 }
287
288 static const gchar *interlace_mode[] = {
289   "progressive",
290   "interleaved",
291   "mixed",
292   "fields",
293   "alternate"
294 };
295
296 /**
297  * gst_video_interlace_mode_to_string:
298  * @mode: a #GstVideoInterlaceMode
299  *
300  * Convert @mode to its string representation.
301  *
302  * Returns: @mode as a string or NULL if @mode in invalid.
303  *
304  * Since: 1.6
305  */
306 const gchar *
307 gst_video_interlace_mode_to_string (GstVideoInterlaceMode mode)
308 {
309   if (((guint) mode) >= G_N_ELEMENTS (interlace_mode))
310     return NULL;
311
312   return interlace_mode[mode];
313 }
314
315 /**
316  * gst_video_interlace_mode_from_string:
317  * @mode: a mode
318  *
319  * Convert @mode to a #GstVideoInterlaceMode
320  *
321  * Returns: the #GstVideoInterlaceMode of @mode or
322  *    #GST_VIDEO_INTERLACE_MODE_PROGRESSIVE when @mode is not a valid
323  *    string representation for a #GstVideoInterlaceMode.
324  *
325  * Since: 1.6
326  */
327 GstVideoInterlaceMode
328 gst_video_interlace_mode_from_string (const gchar * mode)
329 {
330   gint i;
331   for (i = 0; i < G_N_ELEMENTS (interlace_mode); i++) {
332     if (g_str_equal (interlace_mode[i], mode))
333       return i;
334   }
335   return GST_VIDEO_INTERLACE_MODE_PROGRESSIVE;
336 }
337
338 static const gchar *field_order[] = {
339   "unknown",
340   "top-field-first",
341   "bottom-field-first"
342 };
343
344 /**
345  * gst_video_field_order_to_string:
346  * @order: a #GstVideoFieldOrder
347  *
348  * Convert @order to its string representation.
349  *
350  * Returns: @order as a string or NULL if @order in invalid.
351  *
352  * Since: 1.12
353  */
354 const gchar *
355 gst_video_field_order_to_string (GstVideoFieldOrder order)
356 {
357   if (((guint) order) >= G_N_ELEMENTS (field_order))
358     return NULL;
359
360   return field_order[order];
361 }
362
363 /**
364  * gst_video_field_order_from_string:
365  * @order: a field order
366  *
367  * Convert @order to a #GstVideoFieldOrder
368  *
369  * Returns: the #GstVideoFieldOrder of @order or
370  *    #GST_VIDEO_FIELD_ORDER_UNKNOWN when @order is not a valid
371  *    string representation for a #GstVideoFieldOrder.
372  *
373  * Since: 1.12
374  */
375 GstVideoFieldOrder
376 gst_video_field_order_from_string (const gchar * order)
377 {
378   gint i;
379   for (i = 0; i < G_N_ELEMENTS (field_order); i++) {
380     if (g_str_equal (field_order[i], order))
381       return i;
382   }
383   return GST_VIDEO_FIELD_ORDER_UNKNOWN;
384 }
385
386 /**
387  * gst_video_info_from_caps:
388  * @info: a #GstVideoInfo
389  * @caps: a #GstCaps
390  *
391  * Parse @caps and update @info.
392  *
393  * Returns: TRUE if @caps could be parsed
394  */
395 gboolean
396 gst_video_info_from_caps (GstVideoInfo * info, const GstCaps * caps)
397 {
398   GstStructure *structure;
399   const gchar *s;
400   GstVideoFormat format = GST_VIDEO_FORMAT_UNKNOWN;
401   gint width = 0, height = 0;
402   gint fps_n, fps_d;
403   gint par_n, par_d;
404   guint multiview_flags;
405
406   g_return_val_if_fail (info != NULL, FALSE);
407   g_return_val_if_fail (caps != NULL, FALSE);
408   g_return_val_if_fail (gst_caps_is_fixed (caps), FALSE);
409
410   GST_DEBUG ("parsing caps %" GST_PTR_FORMAT, caps);
411
412   structure = gst_caps_get_structure (caps, 0);
413
414   if (gst_structure_has_name (structure, "video/x-raw")) {
415     if (!(s = gst_structure_get_string (structure, "format")))
416       goto no_format;
417
418     format = gst_video_format_from_string (s);
419     if (format == GST_VIDEO_FORMAT_UNKNOWN)
420       goto unknown_format;
421
422   } else if (g_str_has_prefix (gst_structure_get_name (structure), "video/") ||
423       g_str_has_prefix (gst_structure_get_name (structure), "image/")) {
424     format = GST_VIDEO_FORMAT_ENCODED;
425   } else {
426     goto wrong_name;
427   }
428
429   /* width and height are mandatory, except for non-raw-formats */
430   if (!gst_structure_get_int (structure, "width", &width) &&
431       format != GST_VIDEO_FORMAT_ENCODED)
432     goto no_width;
433   if (!gst_structure_get_int (structure, "height", &height) &&
434       format != GST_VIDEO_FORMAT_ENCODED)
435     goto no_height;
436
437   gst_video_info_init (info);
438
439   info->finfo = gst_video_format_get_info (format);
440   info->width = width;
441   info->height = height;
442
443   if (gst_structure_get_fraction (structure, "framerate", &fps_n, &fps_d)) {
444     if (fps_n == 0) {
445       /* variable framerate */
446       info->flags |= GST_VIDEO_FLAG_VARIABLE_FPS;
447       /* see if we have a max-framerate */
448       gst_structure_get_fraction (structure, "max-framerate", &fps_n, &fps_d);
449     }
450     info->fps_n = fps_n;
451     info->fps_d = fps_d;
452   } else {
453     /* unspecified is variable framerate */
454     info->fps_n = 0;
455     info->fps_d = 1;
456   }
457
458   if (gst_structure_get_fraction (structure, "pixel-aspect-ratio",
459           &par_n, &par_d)) {
460     info->par_n = par_n;
461     info->par_d = par_d;
462   } else {
463     info->par_n = 1;
464     info->par_d = 1;
465   }
466
467   if ((s = gst_structure_get_string (structure, "interlace-mode")))
468     info->interlace_mode = gst_video_interlace_mode_from_string (s);
469   else
470     info->interlace_mode = GST_VIDEO_INTERLACE_MODE_PROGRESSIVE;
471
472   /* Interlaced feature is mandatory for raw alternate streams */
473   if (info->interlace_mode == GST_VIDEO_INTERLACE_MODE_ALTERNATE &&
474       format != GST_VIDEO_FORMAT_ENCODED) {
475     GstCapsFeatures *f;
476
477     f = gst_caps_get_features (caps, 0);
478     if (!f
479         || !gst_caps_features_contains (f, GST_CAPS_FEATURE_FORMAT_INTERLACED))
480       goto alternate_no_feature;
481   }
482
483   if (GST_VIDEO_INFO_IS_INTERLACED (info) &&
484       (s = gst_structure_get_string (structure, "field-order"))) {
485     GST_VIDEO_INFO_FIELD_ORDER (info) = gst_video_field_order_from_string (s);
486   } else {
487     GST_VIDEO_INFO_FIELD_ORDER (info) = GST_VIDEO_FIELD_ORDER_UNKNOWN;
488   }
489
490   {
491     if ((s = gst_structure_get_string (structure, "multiview-mode")))
492       GST_VIDEO_INFO_MULTIVIEW_MODE (info) =
493           gst_video_multiview_mode_from_caps_string (s);
494     else
495       GST_VIDEO_INFO_MULTIVIEW_MODE (info) = GST_VIDEO_MULTIVIEW_MODE_NONE;
496
497     if (gst_structure_get_flagset (structure, "multiview-flags",
498             &multiview_flags, NULL))
499       GST_VIDEO_INFO_MULTIVIEW_FLAGS (info) = multiview_flags;
500
501     if (!gst_structure_get_int (structure, "views", &info->views))
502       info->views = 1;
503
504     /* At one point, I tried normalising the half-aspect flag here,
505      * but it behaves weird for GstVideoInfo operations other than
506      * directly converting to/from caps - sometimes causing the
507      * PAR to be doubled/halved too many times */
508   }
509
510   if ((s = gst_structure_get_string (structure, "chroma-site")))
511     info->chroma_site = gst_video_chroma_from_string (s);
512   else
513     info->chroma_site = GST_VIDEO_CHROMA_SITE_UNKNOWN;
514
515   if ((s = gst_structure_get_string (structure, "colorimetry"))) {
516     if (!gst_video_colorimetry_from_string (&info->colorimetry, s)) {
517       GST_WARNING ("unparsable colorimetry, using default");
518       set_default_colorimetry (info);
519     } else if (!validate_colorimetry (info)) {
520       GST_WARNING ("invalid colorimetry, using default");
521       set_default_colorimetry (info);
522     } else {
523       /* force RGB matrix for RGB formats */
524       if (GST_VIDEO_FORMAT_INFO_IS_RGB (info->finfo) &&
525           info->colorimetry.matrix != GST_VIDEO_COLOR_MATRIX_RGB) {
526         GST_WARNING ("invalid matrix %d for RGB format, using RGB",
527             info->colorimetry.matrix);
528         info->colorimetry.matrix = GST_VIDEO_COLOR_MATRIX_RGB;
529       }
530     }
531   } else {
532     GST_DEBUG ("no colorimetry, using default");
533     set_default_colorimetry (info);
534   }
535
536   if (!fill_planes (info, NULL))
537     return FALSE;
538
539   return TRUE;
540
541   /* ERROR */
542 wrong_name:
543   {
544     GST_ERROR ("wrong name '%s', expected video/ or image/",
545         gst_structure_get_name (structure));
546     return FALSE;
547   }
548 no_format:
549   {
550     GST_ERROR ("no format given");
551     return FALSE;
552   }
553 unknown_format:
554   {
555     GST_ERROR ("unknown format '%s' given", s);
556     return FALSE;
557   }
558 no_width:
559   {
560     GST_ERROR ("no width property given");
561     return FALSE;
562   }
563 no_height:
564   {
565     GST_ERROR ("no height property given");
566     return FALSE;
567   }
568 alternate_no_feature:
569   {
570     GST_ERROR
571         ("caps has 'interlace-mode=alternate' but doesn't have the Interlaced feature");
572     return FALSE;
573   }
574 }
575
576 /**
577  * gst_video_info_is_equal:
578  * @info: a #GstVideoInfo
579  * @other: a #GstVideoInfo
580  *
581  * Compares two #GstVideoInfo and returns whether they are equal or not
582  *
583  * Returns: %TRUE if @info and @other are equal, else %FALSE.
584  */
585 gboolean
586 gst_video_info_is_equal (const GstVideoInfo * info, const GstVideoInfo * other)
587 {
588   gint i;
589
590   if (GST_VIDEO_INFO_FORMAT (info) != GST_VIDEO_INFO_FORMAT (other))
591     return FALSE;
592   if (GST_VIDEO_INFO_INTERLACE_MODE (info) !=
593       GST_VIDEO_INFO_INTERLACE_MODE (other))
594     return FALSE;
595   if (GST_VIDEO_INFO_FLAGS (info) != GST_VIDEO_INFO_FLAGS (other))
596     return FALSE;
597   if (GST_VIDEO_INFO_WIDTH (info) != GST_VIDEO_INFO_WIDTH (other))
598     return FALSE;
599   if (GST_VIDEO_INFO_HEIGHT (info) != GST_VIDEO_INFO_HEIGHT (other))
600     return FALSE;
601   if (GST_VIDEO_INFO_SIZE (info) != GST_VIDEO_INFO_SIZE (other))
602     return FALSE;
603   if (GST_VIDEO_INFO_PAR_N (info) != GST_VIDEO_INFO_PAR_N (other))
604     return FALSE;
605   if (GST_VIDEO_INFO_PAR_D (info) != GST_VIDEO_INFO_PAR_D (other))
606     return FALSE;
607   if (GST_VIDEO_INFO_FPS_N (info) != GST_VIDEO_INFO_FPS_N (other))
608     return FALSE;
609   if (GST_VIDEO_INFO_FPS_D (info) != GST_VIDEO_INFO_FPS_D (other))
610     return FALSE;
611   if (!gst_video_colorimetry_is_equal (&GST_VIDEO_INFO_COLORIMETRY (info),
612           &GST_VIDEO_INFO_COLORIMETRY (other)))
613     return FALSE;
614   if (GST_VIDEO_INFO_CHROMA_SITE (info) != GST_VIDEO_INFO_CHROMA_SITE (other))
615     return FALSE;
616   if (GST_VIDEO_INFO_MULTIVIEW_MODE (info) !=
617       GST_VIDEO_INFO_MULTIVIEW_MODE (other))
618     return FALSE;
619   if (GST_VIDEO_INFO_MULTIVIEW_FLAGS (info) !=
620       GST_VIDEO_INFO_MULTIVIEW_FLAGS (other))
621     return FALSE;
622   if (GST_VIDEO_INFO_VIEWS (info) != GST_VIDEO_INFO_VIEWS (other))
623     return FALSE;
624
625   for (i = 0; i < info->finfo->n_planes; i++) {
626     if (info->stride[i] != other->stride[i])
627       return FALSE;
628     if (info->offset[i] != other->offset[i])
629       return FALSE;
630   }
631
632   return TRUE;
633 }
634
635 /**
636  * gst_video_info_to_caps:
637  * @info: a #GstVideoInfo
638  *
639  * Convert the values of @info into a #GstCaps.
640  *
641  * Returns: a new #GstCaps containing the info of @info.
642  */
643 GstCaps *
644 gst_video_info_to_caps (GstVideoInfo * info)
645 {
646   GstCaps *caps;
647   const gchar *format;
648   gchar *color;
649   gint par_n, par_d;
650   GstVideoColorimetry colorimetry;
651
652   g_return_val_if_fail (info != NULL, NULL);
653   g_return_val_if_fail (info->finfo != NULL, NULL);
654   g_return_val_if_fail (info->finfo->format != GST_VIDEO_FORMAT_UNKNOWN, NULL);
655
656   format = gst_video_format_to_string (info->finfo->format);
657   g_return_val_if_fail (format != NULL, NULL);
658
659   caps = gst_caps_new_simple ("video/x-raw",
660       "format", G_TYPE_STRING, format,
661       "width", G_TYPE_INT, info->width,
662       "height", G_TYPE_INT, info->height, NULL);
663
664   par_n = info->par_n;
665   par_d = info->par_d;
666
667   gst_caps_set_simple (caps, "interlace-mode", G_TYPE_STRING,
668       gst_video_interlace_mode_to_string (info->interlace_mode), NULL);
669
670   if ((info->interlace_mode == GST_VIDEO_INTERLACE_MODE_INTERLEAVED ||
671           info->interlace_mode == GST_VIDEO_INTERLACE_MODE_ALTERNATE) &&
672       GST_VIDEO_INFO_FIELD_ORDER (info) != GST_VIDEO_FIELD_ORDER_UNKNOWN) {
673     gst_caps_set_simple (caps, "field-order", G_TYPE_STRING,
674         gst_video_field_order_to_string (GST_VIDEO_INFO_FIELD_ORDER (info)),
675         NULL);
676   }
677
678   if (info->interlace_mode == GST_VIDEO_INTERLACE_MODE_ALTERNATE) {
679     /* 'alternate' mode must always be accompanied by interlaced caps feature.
680      */
681     GstCapsFeatures *features;
682
683     features = gst_caps_features_new (GST_CAPS_FEATURE_FORMAT_INTERLACED, NULL);
684     gst_caps_set_features (caps, 0, features);
685   }
686
687   if (GST_VIDEO_INFO_MULTIVIEW_MODE (info) != GST_VIDEO_MULTIVIEW_MODE_NONE) {
688     const gchar *caps_str = NULL;
689
690     /* If the half-aspect flag is set, applying it into the PAR of the
691      * resulting caps now seems safe, and helps with automatic behaviour
692      * in elements that aren't explicitly multiview aware */
693     if (GST_VIDEO_INFO_MULTIVIEW_FLAGS (info) &
694         GST_VIDEO_MULTIVIEW_FLAGS_HALF_ASPECT) {
695       GST_VIDEO_INFO_MULTIVIEW_FLAGS (info) &=
696           ~GST_VIDEO_MULTIVIEW_FLAGS_HALF_ASPECT;
697       switch (GST_VIDEO_INFO_MULTIVIEW_MODE (info)) {
698         case GST_VIDEO_MULTIVIEW_MODE_SIDE_BY_SIDE:
699         case GST_VIDEO_MULTIVIEW_MODE_SIDE_BY_SIDE_QUINCUNX:
700         case GST_VIDEO_MULTIVIEW_MODE_COLUMN_INTERLEAVED:
701         case GST_VIDEO_MULTIVIEW_MODE_CHECKERBOARD:
702           par_n *= 2;           /* double the width / half the height */
703           break;
704         case GST_VIDEO_MULTIVIEW_MODE_ROW_INTERLEAVED:
705         case GST_VIDEO_MULTIVIEW_MODE_TOP_BOTTOM:
706           par_d *= 2;           /* half the width / double the height */
707           break;
708         default:
709           break;
710       }
711     }
712
713     caps_str =
714         gst_video_multiview_mode_to_caps_string (GST_VIDEO_INFO_MULTIVIEW_MODE
715         (info));
716     if (caps_str != NULL) {
717       gst_caps_set_simple (caps, "multiview-mode", G_TYPE_STRING,
718           caps_str, "multiview-flags", GST_TYPE_VIDEO_MULTIVIEW_FLAGSET,
719           GST_VIDEO_INFO_MULTIVIEW_FLAGS (info), GST_FLAG_SET_MASK_EXACT, NULL);
720     }
721   }
722
723   gst_caps_set_simple (caps, "pixel-aspect-ratio",
724       GST_TYPE_FRACTION, par_n, par_d, NULL);
725
726   if (info->chroma_site != GST_VIDEO_CHROMA_SITE_UNKNOWN)
727     gst_caps_set_simple (caps, "chroma-site", G_TYPE_STRING,
728         gst_video_chroma_to_string (info->chroma_site), NULL);
729
730   /* make sure we set the RGB matrix for RGB formats */
731   colorimetry = info->colorimetry;
732   if (GST_VIDEO_FORMAT_INFO_IS_RGB (info->finfo) &&
733       colorimetry.matrix != GST_VIDEO_COLOR_MATRIX_RGB) {
734     GST_WARNING ("invalid matrix %d for RGB format, using RGB",
735         colorimetry.matrix);
736     colorimetry.matrix = GST_VIDEO_COLOR_MATRIX_RGB;
737   }
738   if ((color = gst_video_colorimetry_to_string (&colorimetry))) {
739     gst_caps_set_simple (caps, "colorimetry", G_TYPE_STRING, color, NULL);
740     g_free (color);
741   }
742
743   if (info->views > 1)
744     gst_caps_set_simple (caps, "views", G_TYPE_INT, info->views, NULL);
745
746   if (info->flags & GST_VIDEO_FLAG_VARIABLE_FPS && info->fps_n != 0) {
747     /* variable fps with a max-framerate */
748     gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION, 0, 1,
749         "max-framerate", GST_TYPE_FRACTION, info->fps_n, info->fps_d, NULL);
750   } else {
751     /* no variable fps or no max-framerate */
752     gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION,
753         info->fps_n, info->fps_d, NULL);
754   }
755
756   return caps;
757 }
758
759 static gboolean
760 fill_planes (GstVideoInfo * info, gsize plane_size[GST_VIDEO_MAX_PLANES])
761 {
762   gsize width, height, cr_h;
763   gint bpp = 0, i;
764
765   width = (gsize) info->width;
766   height = (gsize) GST_VIDEO_INFO_FIELD_HEIGHT (info);
767
768   /* Sanity check the resulting frame size for overflows */
769   for (i = 0; i < GST_VIDEO_INFO_N_COMPONENTS (info); i++)
770     bpp += GST_VIDEO_INFO_COMP_DEPTH (info, i);
771   bpp = GST_ROUND_UP_8 (bpp) / 8;
772   if (bpp > 0 && GST_ROUND_UP_128 ((guint64) width) * ((guint64) height) >=
773       G_MAXUINT / bpp) {
774     GST_ERROR ("Frame size %ux%u would overflow", info->width, info->height);
775     return FALSE;
776   }
777
778   switch (info->finfo->format) {
779     case GST_VIDEO_FORMAT_YUY2:
780     case GST_VIDEO_FORMAT_YVYU:
781     case GST_VIDEO_FORMAT_UYVY:
782     case GST_VIDEO_FORMAT_VYUY:
783       info->stride[0] = GST_ROUND_UP_4 (width * 2);
784       info->offset[0] = 0;
785       info->size = info->stride[0] * height;
786       break;
787     case GST_VIDEO_FORMAT_AYUV:
788     case GST_VIDEO_FORMAT_RGBx:
789     case GST_VIDEO_FORMAT_RGBA:
790     case GST_VIDEO_FORMAT_BGRx:
791     case GST_VIDEO_FORMAT_BGRA:
792     case GST_VIDEO_FORMAT_xRGB:
793     case GST_VIDEO_FORMAT_ARGB:
794     case GST_VIDEO_FORMAT_xBGR:
795     case GST_VIDEO_FORMAT_ABGR:
796     case GST_VIDEO_FORMAT_r210:
797     case GST_VIDEO_FORMAT_Y410:
798     case GST_VIDEO_FORMAT_VUYA:
799     case GST_VIDEO_FORMAT_BGR10A2_LE:
800     case GST_VIDEO_FORMAT_RGB10A2_LE:
801       info->stride[0] = width * 4;
802       info->offset[0] = 0;
803       info->size = info->stride[0] * height;
804       break;
805     case GST_VIDEO_FORMAT_RGB16:
806     case GST_VIDEO_FORMAT_BGR16:
807     case GST_VIDEO_FORMAT_RGB15:
808     case GST_VIDEO_FORMAT_BGR15:
809       info->stride[0] = GST_ROUND_UP_4 (width * 2);
810       info->offset[0] = 0;
811       info->size = info->stride[0] * height;
812       break;
813     case GST_VIDEO_FORMAT_RGB:
814     case GST_VIDEO_FORMAT_BGR:
815     case GST_VIDEO_FORMAT_v308:
816     case GST_VIDEO_FORMAT_IYU2:
817       info->stride[0] = GST_ROUND_UP_4 (width * 3);
818       info->offset[0] = 0;
819       info->size = info->stride[0] * height;
820       break;
821     case GST_VIDEO_FORMAT_v210:
822       info->stride[0] = ((width + 47) / 48) * 128;
823       info->offset[0] = 0;
824       info->size = info->stride[0] * height;
825       break;
826     case GST_VIDEO_FORMAT_v216:
827     case GST_VIDEO_FORMAT_Y210:
828       info->stride[0] = GST_ROUND_UP_8 (width * 4);
829       info->offset[0] = 0;
830       info->size = info->stride[0] * height;
831       break;
832     case GST_VIDEO_FORMAT_GRAY8:
833       info->stride[0] = GST_ROUND_UP_4 (width);
834       info->offset[0] = 0;
835       info->size = info->stride[0] * height;
836       break;
837     case GST_VIDEO_FORMAT_GRAY16_BE:
838     case GST_VIDEO_FORMAT_GRAY16_LE:
839       info->stride[0] = GST_ROUND_UP_4 (width * 2);
840       info->offset[0] = 0;
841       info->size = info->stride[0] * height;
842       break;
843     case GST_VIDEO_FORMAT_UYVP:
844       info->stride[0] = GST_ROUND_UP_4 ((width * 2 * 5 + 3) / 4);
845       info->offset[0] = 0;
846       info->size = info->stride[0] * height;
847       break;
848     case GST_VIDEO_FORMAT_RGB8P:
849       info->stride[0] = GST_ROUND_UP_4 (width);
850       info->stride[1] = 4;
851       info->offset[0] = 0;
852       info->offset[1] = info->stride[0] * height;
853       info->size = info->offset[1] + (4 * 256);
854       break;
855     case GST_VIDEO_FORMAT_IYU1:
856       info->stride[0] = GST_ROUND_UP_4 (GST_ROUND_UP_4 (width) +
857           GST_ROUND_UP_4 (width) / 2);
858       info->offset[0] = 0;
859       info->size = info->stride[0] * height;
860       break;
861     case GST_VIDEO_FORMAT_ARGB64:
862     case GST_VIDEO_FORMAT_AYUV64:
863       info->stride[0] = width * 8;
864       info->offset[0] = 0;
865       info->size = info->stride[0] * height;
866       break;
867     case GST_VIDEO_FORMAT_I420:
868     case GST_VIDEO_FORMAT_YV12:        /* same as I420, but plane 1+2 swapped */
869       info->stride[0] = GST_ROUND_UP_4 (width);
870       info->stride[1] = GST_ROUND_UP_4 (GST_ROUND_UP_2 (width) / 2);
871       info->stride[2] = info->stride[1];
872       info->offset[0] = 0;
873       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
874       cr_h = GST_ROUND_UP_2 (height) / 2;
875       if (GST_VIDEO_INFO_IS_INTERLACED (info))
876         cr_h = GST_ROUND_UP_2 (cr_h);
877       info->offset[2] = info->offset[1] + info->stride[1] * cr_h;
878       info->size = info->offset[2] + info->stride[2] * cr_h;
879       break;
880     case GST_VIDEO_FORMAT_Y41B:
881       info->stride[0] = GST_ROUND_UP_4 (width);
882       info->stride[1] = GST_ROUND_UP_16 (width) / 4;
883       info->stride[2] = info->stride[1];
884       info->offset[0] = 0;
885       info->offset[1] = info->stride[0] * height;
886       info->offset[2] = info->offset[1] + info->stride[1] * height;
887       /* simplification of ROUNDUP4(w)*h + 2*((ROUNDUP16(w)/4)*h */
888       info->size = (info->stride[0] + (GST_ROUND_UP_16 (width) / 2)) * height;
889       break;
890     case GST_VIDEO_FORMAT_Y42B:
891       info->stride[0] = GST_ROUND_UP_4 (width);
892       info->stride[1] = GST_ROUND_UP_8 (width) / 2;
893       info->stride[2] = info->stride[1];
894       info->offset[0] = 0;
895       info->offset[1] = info->stride[0] * height;
896       info->offset[2] = info->offset[1] + info->stride[1] * height;
897       /* simplification of ROUNDUP4(w)*h + 2*(ROUNDUP8(w)/2)*h */
898       info->size = (info->stride[0] + GST_ROUND_UP_8 (width)) * height;
899       break;
900     case GST_VIDEO_FORMAT_Y444:
901     case GST_VIDEO_FORMAT_GBR:
902       info->stride[0] = GST_ROUND_UP_4 (width);
903       info->stride[1] = info->stride[0];
904       info->stride[2] = info->stride[0];
905       info->offset[0] = 0;
906       info->offset[1] = info->stride[0] * height;
907       info->offset[2] = info->offset[1] * 2;
908       info->size = info->stride[0] * height * 3;
909       break;
910     case GST_VIDEO_FORMAT_GBRA:
911       info->stride[0] = GST_ROUND_UP_4 (width);
912       info->stride[1] = info->stride[0];
913       info->stride[2] = info->stride[0];
914       info->stride[3] = info->stride[0];
915       info->offset[0] = 0;
916       info->offset[1] = info->stride[0] * height;
917       info->offset[2] = info->offset[1] * 2;
918       info->offset[3] = info->offset[1] * 3;
919       info->size = info->stride[0] * height * 4;
920       break;
921     case GST_VIDEO_FORMAT_NV12:
922     case GST_VIDEO_FORMAT_NV21:
923       info->stride[0] = GST_ROUND_UP_4 (width);
924       info->stride[1] = info->stride[0];
925       info->offset[0] = 0;
926       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
927       cr_h = GST_ROUND_UP_2 (height) / 2;
928       if (GST_VIDEO_INFO_IS_INTERLACED (info))
929         cr_h = GST_ROUND_UP_2 (cr_h);
930       info->size = info->offset[1] + info->stride[0] * cr_h;
931       break;
932     case GST_VIDEO_FORMAT_NV16:
933     case GST_VIDEO_FORMAT_NV61:
934       info->stride[0] = GST_ROUND_UP_4 (width);
935       info->stride[1] = info->stride[0];
936       info->offset[0] = 0;
937       info->offset[1] = info->stride[0] * height;
938       info->size = info->stride[0] * height * 2;
939       break;
940     case GST_VIDEO_FORMAT_NV24:
941       info->stride[0] = GST_ROUND_UP_4 (width);
942       info->stride[1] = GST_ROUND_UP_4 (width * 2);
943       info->offset[0] = 0;
944       info->offset[1] = info->stride[0] * height;
945       info->size = info->stride[0] * height + info->stride[1] * height;
946       break;
947     case GST_VIDEO_FORMAT_A420:
948       info->stride[0] = GST_ROUND_UP_4 (width);
949       info->stride[1] = GST_ROUND_UP_4 (GST_ROUND_UP_2 (width) / 2);
950       info->stride[2] = info->stride[1];
951       info->stride[3] = info->stride[0];
952       info->offset[0] = 0;
953       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
954       cr_h = GST_ROUND_UP_2 (height) / 2;
955       if (GST_VIDEO_INFO_IS_INTERLACED (info))
956         cr_h = GST_ROUND_UP_2 (cr_h);
957       info->offset[2] = info->offset[1] + info->stride[1] * cr_h;
958       info->offset[3] = info->offset[2] + info->stride[2] * cr_h;
959       info->size = info->offset[3] + info->stride[0] * GST_ROUND_UP_2 (height);
960       break;
961     case GST_VIDEO_FORMAT_YUV9:
962     case GST_VIDEO_FORMAT_YVU9:
963       info->stride[0] = GST_ROUND_UP_4 (width);
964       info->stride[1] = GST_ROUND_UP_4 (GST_ROUND_UP_4 (width) / 4);
965       info->stride[2] = info->stride[1];
966       info->offset[0] = 0;
967       info->offset[1] = info->stride[0] * height;
968       cr_h = GST_ROUND_UP_4 (height) / 4;
969       if (GST_VIDEO_INFO_IS_INTERLACED (info))
970         cr_h = GST_ROUND_UP_2 (cr_h);
971       info->offset[2] = info->offset[1] + info->stride[1] * cr_h;
972       info->size = info->offset[2] + info->stride[2] * cr_h;
973       break;
974     case GST_VIDEO_FORMAT_I420_10LE:
975     case GST_VIDEO_FORMAT_I420_10BE:
976     case GST_VIDEO_FORMAT_I420_12LE:
977     case GST_VIDEO_FORMAT_I420_12BE:
978       info->stride[0] = GST_ROUND_UP_4 (width * 2);
979       info->stride[1] = GST_ROUND_UP_4 (width);
980       info->stride[2] = info->stride[1];
981       info->offset[0] = 0;
982       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
983       cr_h = GST_ROUND_UP_2 (height) / 2;
984       if (GST_VIDEO_INFO_IS_INTERLACED (info))
985         cr_h = GST_ROUND_UP_2 (cr_h);
986       info->offset[2] = info->offset[1] + info->stride[1] * cr_h;
987       info->size = info->offset[2] + info->stride[2] * cr_h;
988       break;
989     case GST_VIDEO_FORMAT_I422_10LE:
990     case GST_VIDEO_FORMAT_I422_10BE:
991     case GST_VIDEO_FORMAT_I422_12LE:
992     case GST_VIDEO_FORMAT_I422_12BE:
993       info->stride[0] = GST_ROUND_UP_4 (width * 2);
994       info->stride[1] = GST_ROUND_UP_4 (width);
995       info->stride[2] = info->stride[1];
996       info->offset[0] = 0;
997       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
998       info->offset[2] = info->offset[1] +
999           info->stride[1] * GST_ROUND_UP_2 (height);
1000       info->size = info->offset[2] + info->stride[2] * GST_ROUND_UP_2 (height);
1001       break;
1002     case GST_VIDEO_FORMAT_Y444_10LE:
1003     case GST_VIDEO_FORMAT_Y444_10BE:
1004     case GST_VIDEO_FORMAT_Y444_12LE:
1005     case GST_VIDEO_FORMAT_Y444_12BE:
1006     case GST_VIDEO_FORMAT_GBR_10LE:
1007     case GST_VIDEO_FORMAT_GBR_10BE:
1008     case GST_VIDEO_FORMAT_GBR_12LE:
1009     case GST_VIDEO_FORMAT_GBR_12BE:
1010     case GST_VIDEO_FORMAT_Y444_16LE:
1011     case GST_VIDEO_FORMAT_Y444_16BE:
1012       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1013       info->stride[1] = info->stride[0];
1014       info->stride[2] = info->stride[0];
1015       info->offset[0] = 0;
1016       info->offset[1] = info->stride[0] * height;
1017       info->offset[2] = info->offset[1] * 2;
1018       info->size = info->stride[0] * height * 3;
1019       break;
1020     case GST_VIDEO_FORMAT_GBRA_10LE:
1021     case GST_VIDEO_FORMAT_GBRA_10BE:
1022     case GST_VIDEO_FORMAT_GBRA_12LE:
1023     case GST_VIDEO_FORMAT_GBRA_12BE:
1024       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1025       info->stride[1] = info->stride[0];
1026       info->stride[2] = info->stride[0];
1027       info->stride[3] = info->stride[0];
1028       info->offset[0] = 0;
1029       info->offset[1] = info->stride[0] * height;
1030       info->offset[2] = info->offset[1] * 2;
1031       info->offset[3] = info->offset[1] * 3;
1032       info->size = info->stride[0] * height * 4;
1033       break;
1034     case GST_VIDEO_FORMAT_NV12_64Z32:
1035       info->stride[0] =
1036           GST_VIDEO_TILE_MAKE_STRIDE (GST_ROUND_UP_128 (width) / 64,
1037           GST_ROUND_UP_32 (height) / 32);
1038       info->stride[1] =
1039           GST_VIDEO_TILE_MAKE_STRIDE (GST_ROUND_UP_128 (width) / 64,
1040           GST_ROUND_UP_64 (height) / 64);
1041       info->offset[0] = 0;
1042       info->offset[1] = GST_ROUND_UP_128 (width) * GST_ROUND_UP_32 (height);
1043       info->size = info->offset[1] +
1044           GST_ROUND_UP_128 (width) * GST_ROUND_UP_64 (height) / 2;
1045       break;
1046     case GST_VIDEO_FORMAT_A420_10LE:
1047     case GST_VIDEO_FORMAT_A420_10BE:
1048       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1049       info->stride[1] = GST_ROUND_UP_4 (width);
1050       info->stride[2] = info->stride[1];
1051       info->stride[3] = info->stride[0];
1052       info->offset[0] = 0;
1053       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
1054       cr_h = GST_ROUND_UP_2 (height) / 2;
1055       if (GST_VIDEO_INFO_IS_INTERLACED (info))
1056         cr_h = GST_ROUND_UP_2 (cr_h);
1057       info->offset[2] = info->offset[1] + info->stride[1] * cr_h;
1058       info->offset[3] = info->offset[2] + info->stride[2] * cr_h;
1059       info->size = info->offset[3] + info->stride[0] * GST_ROUND_UP_2 (height);
1060       break;
1061     case GST_VIDEO_FORMAT_A422_10LE:
1062     case GST_VIDEO_FORMAT_A422_10BE:
1063       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1064       info->stride[1] = GST_ROUND_UP_4 (width);
1065       info->stride[2] = info->stride[1];
1066       info->stride[3] = info->stride[0];
1067       info->offset[0] = 0;
1068       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
1069       info->offset[2] = info->offset[1] +
1070           info->stride[1] * GST_ROUND_UP_2 (height);
1071       info->offset[3] =
1072           info->offset[2] + info->stride[2] * GST_ROUND_UP_2 (height);
1073       info->size = info->offset[3] + info->stride[0] * GST_ROUND_UP_2 (height);
1074       break;
1075     case GST_VIDEO_FORMAT_A444_10LE:
1076     case GST_VIDEO_FORMAT_A444_10BE:
1077       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1078       info->stride[1] = info->stride[0];
1079       info->stride[2] = info->stride[0];
1080       info->stride[3] = info->stride[0];
1081       info->offset[0] = 0;
1082       info->offset[1] = info->stride[0] * height;
1083       info->offset[2] = info->offset[1] * 2;
1084       info->offset[3] = info->offset[1] * 3;
1085       info->size = info->stride[0] * height * 4;
1086       break;
1087     case GST_VIDEO_FORMAT_P010_10LE:
1088     case GST_VIDEO_FORMAT_P010_10BE:
1089     case GST_VIDEO_FORMAT_P016_LE:
1090     case GST_VIDEO_FORMAT_P016_BE:
1091       info->stride[0] = GST_ROUND_UP_4 (width * 2);
1092       info->stride[1] = info->stride[0];
1093       info->offset[0] = 0;
1094       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
1095       cr_h = GST_ROUND_UP_2 (height) / 2;
1096       info->size = info->offset[1] + info->stride[0] * cr_h;
1097       break;
1098     case GST_VIDEO_FORMAT_GRAY10_LE32:
1099       info->stride[0] = (width + 2) / 3 * 4;
1100       info->offset[0] = 0;
1101       info->size = info->stride[0] * GST_ROUND_UP_2 (height);
1102       break;
1103     case GST_VIDEO_FORMAT_NV12_10LE32:
1104       info->stride[0] = (width + 2) / 3 * 4;
1105       info->stride[1] = info->stride[0];
1106       info->offset[0] = 0;
1107       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
1108       cr_h = GST_ROUND_UP_2 (height) / 2;
1109       if (GST_VIDEO_INFO_IS_INTERLACED (info))
1110         cr_h = GST_ROUND_UP_2 (cr_h);
1111       info->size = info->offset[1] + info->stride[0] * cr_h;
1112       break;
1113     case GST_VIDEO_FORMAT_NV16_10LE32:
1114       info->stride[0] = (width + 2) / 3 * 4;
1115       info->stride[1] = info->stride[0];
1116       info->offset[0] = 0;
1117       info->offset[1] = info->stride[0] * height;
1118       info->size = info->stride[0] * height * 2;
1119       break;
1120     case GST_VIDEO_FORMAT_NV12_10LE40:
1121       info->stride[0] = ((width * 5 >> 2) + 4) / 5 * 5;
1122       info->stride[1] = info->stride[0];
1123       info->offset[0] = 0;
1124       info->offset[1] = info->stride[0] * GST_ROUND_UP_2 (height);
1125       cr_h = GST_ROUND_UP_2 (height) / 2;
1126       if (GST_VIDEO_INFO_IS_INTERLACED (info))
1127         cr_h = GST_ROUND_UP_2 (cr_h);
1128       info->size = info->offset[1] + info->stride[0] * cr_h;
1129       break;
1130
1131     case GST_VIDEO_FORMAT_ENCODED:
1132       break;
1133     case GST_VIDEO_FORMAT_UNKNOWN:
1134       GST_ERROR ("invalid format");
1135       g_warning ("invalid format");
1136       return FALSE;
1137       break;
1138   }
1139
1140   if (plane_size) {
1141     for (i = 0; i < GST_VIDEO_MAX_PLANES; i++) {
1142       if (i < GST_VIDEO_INFO_N_PLANES (info)) {
1143         gint comps[GST_VIDEO_MAX_COMPONENTS];
1144         guint plane_height;
1145
1146         /* Convert plane index to component index */
1147         gst_video_format_info_component (info->finfo, i, comps);
1148         plane_height =
1149             GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (info->finfo, comps[0],
1150             GST_VIDEO_INFO_FIELD_HEIGHT (info));
1151         plane_size[i] = plane_height * GST_VIDEO_INFO_PLANE_STRIDE (info, i);
1152       } else {
1153         plane_size[i] = 0;
1154       }
1155     }
1156   }
1157
1158   return TRUE;
1159 }
1160
1161 /**
1162  * gst_video_info_convert:
1163  * @info: a #GstVideoInfo
1164  * @src_format: #GstFormat of the @src_value
1165  * @src_value: value to convert
1166  * @dest_format: #GstFormat of the @dest_value
1167  * @dest_value: (out): pointer to destination value
1168  *
1169  * Converts among various #GstFormat types.  This function handles
1170  * GST_FORMAT_BYTES, GST_FORMAT_TIME, and GST_FORMAT_DEFAULT.  For
1171  * raw video, GST_FORMAT_DEFAULT corresponds to video frames.  This
1172  * function can be used to handle pad queries of the type GST_QUERY_CONVERT.
1173  *
1174  * Returns: TRUE if the conversion was successful.
1175  */
1176 gboolean
1177 gst_video_info_convert (GstVideoInfo * info,
1178     GstFormat src_format, gint64 src_value,
1179     GstFormat dest_format, gint64 * dest_value)
1180 {
1181   gboolean ret = FALSE;
1182   int fps_n, fps_d;
1183   gsize size;
1184
1185   g_return_val_if_fail (info != NULL, 0);
1186   g_return_val_if_fail (info->finfo != NULL, 0);
1187   g_return_val_if_fail (info->finfo->format != GST_VIDEO_FORMAT_UNKNOWN, 0);
1188   g_return_val_if_fail (info->size > 0, 0);
1189
1190   size = info->size;
1191   fps_n = info->fps_n;
1192   fps_d = info->fps_d;
1193
1194   GST_DEBUG ("converting value %" G_GINT64_FORMAT " from %s to %s",
1195       src_value, gst_format_get_name (src_format),
1196       gst_format_get_name (dest_format));
1197
1198   if (src_format == dest_format) {
1199     *dest_value = src_value;
1200     ret = TRUE;
1201     goto done;
1202   }
1203
1204   if (src_value == -1) {
1205     *dest_value = -1;
1206     ret = TRUE;
1207     goto done;
1208   }
1209
1210   /* bytes to frames */
1211   if (src_format == GST_FORMAT_BYTES && dest_format == GST_FORMAT_DEFAULT) {
1212     if (size != 0) {
1213       *dest_value = gst_util_uint64_scale (src_value, 1, size);
1214     } else {
1215       GST_ERROR ("blocksize is 0");
1216       *dest_value = 0;
1217     }
1218     ret = TRUE;
1219     goto done;
1220   }
1221
1222   /* frames to bytes */
1223   if (src_format == GST_FORMAT_DEFAULT && dest_format == GST_FORMAT_BYTES) {
1224     *dest_value = gst_util_uint64_scale (src_value, size, 1);
1225     ret = TRUE;
1226     goto done;
1227   }
1228
1229   /* time to frames */
1230   if (src_format == GST_FORMAT_TIME && dest_format == GST_FORMAT_DEFAULT) {
1231     if (fps_d != 0) {
1232       *dest_value = gst_util_uint64_scale (src_value,
1233           fps_n, GST_SECOND * fps_d);
1234     } else {
1235       GST_ERROR ("framerate denominator is 0");
1236       *dest_value = 0;
1237     }
1238     ret = TRUE;
1239     goto done;
1240   }
1241
1242   /* frames to time */
1243   if (src_format == GST_FORMAT_DEFAULT && dest_format == GST_FORMAT_TIME) {
1244     if (fps_n != 0) {
1245       *dest_value = gst_util_uint64_scale (src_value,
1246           GST_SECOND * fps_d, fps_n);
1247     } else {
1248       GST_ERROR ("framerate numerator is 0");
1249       *dest_value = 0;
1250     }
1251     ret = TRUE;
1252     goto done;
1253   }
1254
1255   /* time to bytes */
1256   if (src_format == GST_FORMAT_TIME && dest_format == GST_FORMAT_BYTES) {
1257     if (fps_d != 0) {
1258       *dest_value = gst_util_uint64_scale (src_value,
1259           fps_n * size, GST_SECOND * fps_d);
1260     } else {
1261       GST_ERROR ("framerate denominator is 0");
1262       *dest_value = 0;
1263     }
1264     ret = TRUE;
1265     goto done;
1266   }
1267
1268   /* bytes to time */
1269   if (src_format == GST_FORMAT_BYTES && dest_format == GST_FORMAT_TIME) {
1270     if (fps_n != 0 && size != 0) {
1271       *dest_value = gst_util_uint64_scale (src_value,
1272           GST_SECOND * fps_d, fps_n * size);
1273     } else {
1274       GST_ERROR ("framerate denominator and/or blocksize is 0");
1275       *dest_value = 0;
1276     }
1277     ret = TRUE;
1278   }
1279
1280 done:
1281
1282   GST_DEBUG ("ret=%d result %" G_GINT64_FORMAT, ret, *dest_value);
1283
1284   return ret;
1285 }
1286
1287 /**
1288  * gst_video_info_align_full:
1289  * @info: a #GstVideoInfo
1290  * @align: alignment parameters
1291  * @plane_size: (out) (allow-none): array used to store the plane sizes
1292  *
1293  * This variant of gst_video_info_align() provides the updated size, in bytes,
1294  * of each video plane after the alignment, including all horizontal and vertical
1295  * paddings.
1296  *
1297  * In case of GST_VIDEO_INTERLACE_MODE_ALTERNATE info, the returned sizes are the
1298  * ones used to hold a single field, not the full frame.
1299  *
1300  * Returns: %FALSE if alignment could not be applied, e.g. because the
1301  *   size of a frame can't be represented as a 32 bit integer
1302  *
1303  * Since: 1.18
1304  */
1305 gboolean
1306 gst_video_info_align_full (GstVideoInfo * info, GstVideoAlignment * align,
1307     gsize plane_size[GST_VIDEO_MAX_PLANES])
1308 {
1309   const GstVideoFormatInfo *vinfo = info->finfo;
1310   gint width, height;
1311   gint padded_width, padded_height;
1312   gint i, n_planes;
1313   gboolean aligned;
1314
1315   width = GST_VIDEO_INFO_WIDTH (info);
1316   height = GST_VIDEO_INFO_HEIGHT (info);
1317
1318   GST_LOG ("padding %u-%ux%u-%u", align->padding_top,
1319       align->padding_left, align->padding_right, align->padding_bottom);
1320
1321   n_planes = GST_VIDEO_INFO_N_PLANES (info);
1322
1323   if (GST_VIDEO_FORMAT_INFO_HAS_PALETTE (vinfo))
1324     n_planes--;
1325
1326   /* first make sure the left padding does not cause alignment problems later */
1327   do {
1328     GST_LOG ("left padding %u", align->padding_left);
1329     aligned = TRUE;
1330     for (i = 0; i < n_planes; i++) {
1331       gint hedge;
1332
1333       /* this is the amount of pixels to add as left padding */
1334       hedge = GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (vinfo, i, align->padding_left);
1335       hedge *= GST_VIDEO_FORMAT_INFO_PSTRIDE (vinfo, i);
1336
1337       GST_LOG ("plane %d, padding %d, alignment %u", i, hedge,
1338           align->stride_align[i]);
1339       aligned &= (hedge & align->stride_align[i]) == 0;
1340     }
1341     if (aligned)
1342       break;
1343
1344     GST_LOG ("unaligned padding, increasing padding");
1345     /* increase padded_width */
1346     align->padding_left += align->padding_left & ~(align->padding_left - 1);
1347   } while (!aligned);
1348
1349   /* add the padding */
1350   padded_width = width + align->padding_left + align->padding_right;
1351   padded_height = height + align->padding_top + align->padding_bottom;
1352
1353   do {
1354     GST_LOG ("padded dimension %u-%u", padded_width, padded_height);
1355
1356     info->width = padded_width;
1357     info->height = padded_height;
1358
1359     if (!fill_planes (info, plane_size))
1360       return FALSE;
1361
1362     /* check alignment */
1363     aligned = TRUE;
1364     for (i = 0; i < n_planes; i++) {
1365       GST_LOG ("plane %d, stride %d, alignment %u", i, info->stride[i],
1366           align->stride_align[i]);
1367       aligned &= (info->stride[i] & align->stride_align[i]) == 0;
1368     }
1369     if (aligned)
1370       break;
1371
1372     GST_LOG ("unaligned strides, increasing dimension");
1373     /* increase padded_width */
1374     padded_width += padded_width & ~(padded_width - 1);
1375   } while (!aligned);
1376
1377   align->padding_right = padded_width - width - align->padding_left;
1378
1379   info->width = width;
1380   info->height = height;
1381
1382   for (i = 0; i < n_planes; i++) {
1383     gint vedge, hedge, comp;
1384
1385     /* Find the component for this plane, FIXME, we assume the plane number and
1386      * component number is the same for now, for scaling the dimensions this is
1387      * currently true for all formats but it might not be when adding new
1388      * formats. We might need to add a plane subsamling in the format info to
1389      * make this more generic or maybe use a plane -> component mapping. */
1390     comp = i;
1391
1392     hedge =
1393         GST_VIDEO_FORMAT_INFO_SCALE_WIDTH (vinfo, comp, align->padding_left);
1394     vedge =
1395         GST_VIDEO_FORMAT_INFO_SCALE_HEIGHT (vinfo, comp, align->padding_top);
1396
1397     GST_DEBUG ("plane %d: comp: %d, hedge %d vedge %d align %d stride %d", i,
1398         comp, hedge, vedge, align->stride_align[i], info->stride[i]);
1399
1400     info->offset[i] += (vedge * info->stride[i]) +
1401         (hedge * GST_VIDEO_FORMAT_INFO_PSTRIDE (vinfo, comp));
1402   }
1403
1404   return TRUE;
1405 }
1406
1407 /**
1408  * gst_video_info_align:
1409  * @info: a #GstVideoInfo
1410  * @align: alignment parameters
1411  *
1412  * Adjust the offset and stride fields in @info so that the padding and
1413  * stride alignment in @align is respected.
1414  *
1415  * Extra padding will be added to the right side when stride alignment padding
1416  * is required and @align will be updated with the new padding values.
1417  *
1418  * Returns: %FALSE if alignment could not be applied, e.g. because the
1419  *   size of a frame can't be represented as a 32 bit integer (Since: 1.12)
1420  */
1421 gboolean
1422 gst_video_info_align (GstVideoInfo * info, GstVideoAlignment * align)
1423 {
1424   return gst_video_info_align_full (info, align, NULL);
1425 }