2 * Copyright (C) <2003> David A. Schleef <ds@schleef.org>
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.
22 * @short_description: GValue implementations specific
25 * GValue implementations specific to GStreamer.
27 * Note that operations on the same #GValue from multiple threads may lead to
28 * undefined behaviour.
30 * Last reviewed on 2008-03-11 (0.10.18)
42 #include "gst_private.h"
43 #include "glib-compat-private.h"
45 #include <gobject/gvaluecollector.h>
49 * @dest: a #GValue for the result
50 * @value1: a #GValue operand
51 * @value2: a #GValue operand
53 * Used by gst_value_union() to perform unification for a specific #GValue
54 * type. Register a new implementation with gst_value_register_union_func().
56 * Returns: %TRUE if a union was successful
58 typedef gboolean (*GstValueUnionFunc) (GValue * dest,
59 const GValue * value1, const GValue * value2);
61 /* GstValueIntersectFunc:
62 * @dest: (out caller-allocates): a #GValue for the result
63 * @value1: a #GValue operand
64 * @value2: a #GValue operand
66 * Used by gst_value_intersect() to perform intersection for a specific #GValue
67 * type. If the intersection is non-empty, the result is
68 * placed in @dest and TRUE is returned. If the intersection is
69 * empty, @dest is unmodified and FALSE is returned.
70 * Register a new implementation with gst_value_register_intersect_func().
72 * Returns: %TRUE if the values can intersect
74 typedef gboolean (*GstValueIntersectFunc) (GValue * dest,
75 const GValue * value1, const GValue * value2);
77 /* GstValueSubtractFunc:
78 * @dest: (out caller-allocates): a #GValue for the result
79 * @minuend: a #GValue operand
80 * @subtrahend: a #GValue operand
82 * Used by gst_value_subtract() to perform subtraction for a specific #GValue
83 * type. Register a new implementation with gst_value_register_subtract_func().
85 * Returns: %TRUE if the subtraction is not empty
87 typedef gboolean (*GstValueSubtractFunc) (GValue * dest,
88 const GValue * minuend, const GValue * subtrahend);
90 static void gst_value_register_union_func (GType type1,
91 GType type2, GstValueUnionFunc func);
92 static void gst_value_register_intersect_func (GType type1,
93 GType type2, GstValueIntersectFunc func);
94 static void gst_value_register_subtract_func (GType minuend_type,
95 GType subtrahend_type, GstValueSubtractFunc func);
97 typedef struct _GstValueUnionInfo GstValueUnionInfo;
98 struct _GstValueUnionInfo
102 GstValueUnionFunc func;
105 typedef struct _GstValueIntersectInfo GstValueIntersectInfo;
106 struct _GstValueIntersectInfo
110 GstValueIntersectFunc func;
113 typedef struct _GstValueSubtractInfo GstValueSubtractInfo;
114 struct _GstValueSubtractInfo
118 GstValueSubtractFunc func;
121 #define FUNDAMENTAL_TYPE_ID_MAX \
122 (G_TYPE_FUNDAMENTAL_MAX >> G_TYPE_FUNDAMENTAL_SHIFT)
123 #define FUNDAMENTAL_TYPE_ID(type) \
124 ((type) >> G_TYPE_FUNDAMENTAL_SHIFT)
126 #define VALUE_LIST_SIZE(v) (((GArray *) (v)->data[0].v_pointer)->len)
127 #define VALUE_LIST_GET_VALUE(v, index) ((const GValue *) &g_array_index ((GArray *) (v)->data[0].v_pointer, GValue, (index)))
129 static GArray *gst_value_table;
130 static GHashTable *gst_value_hash;
131 static GstValueTable *gst_value_tables_fundamental[FUNDAMENTAL_TYPE_ID_MAX + 1];
132 static GArray *gst_value_union_funcs;
133 static GArray *gst_value_intersect_funcs;
134 static GArray *gst_value_subtract_funcs;
136 /* Forward declarations */
137 static gchar *gst_value_serialize_fraction (const GValue * value);
139 static GstValueCompareFunc gst_value_get_compare_func (const GValue * value1);
140 static gint gst_value_compare_with_func (const GValue * value1,
141 const GValue * value2, GstValueCompareFunc compare);
143 static gchar *gst_string_wrap (const gchar * s);
144 static gchar *gst_string_take_and_wrap (gchar * s);
145 static gchar *gst_string_unwrap (const gchar * s);
147 static inline GstValueTable *
148 gst_value_hash_lookup_type (GType type)
150 if (G_LIKELY (G_TYPE_IS_FUNDAMENTAL (type)))
151 return gst_value_tables_fundamental[FUNDAMENTAL_TYPE_ID (type)];
153 return g_hash_table_lookup (gst_value_hash, (gpointer) type);
157 gst_value_hash_add_type (GType type, const GstValueTable * table)
159 if (G_TYPE_IS_FUNDAMENTAL (type))
160 gst_value_tables_fundamental[FUNDAMENTAL_TYPE_ID (type)] = (gpointer) table;
162 g_hash_table_insert (gst_value_hash, (gpointer) type, (gpointer) table);
169 /* two helper functions to serialize/stringify any type of list
170 * regular lists are done with { }, arrays with < >
173 gst_value_serialize_any_list (const GValue * value, const gchar * begin,
177 GArray *array = value->data[0].v_pointer;
181 guint alen = array->len;
183 /* estimate minimum string length to minimise re-allocs in GString */
184 s = g_string_sized_new (2 + (6 * alen) + 2);
185 g_string_append (s, begin);
186 for (i = 0; i < alen; i++) {
187 v = &g_array_index (array, GValue, i);
188 s_val = gst_value_serialize (v);
189 g_string_append (s, s_val);
192 g_string_append_len (s, ", ", 2);
195 g_string_append (s, end);
196 return g_string_free (s, FALSE);
200 gst_value_transform_any_list_string (const GValue * src_value,
201 GValue * dest_value, const gchar * begin, const gchar * end)
210 array = src_value->data[0].v_pointer;
213 /* estimate minimum string length to minimise re-allocs in GString */
214 s = g_string_sized_new (2 + (10 * alen) + 2);
215 g_string_append (s, begin);
216 for (i = 0; i < alen; i++) {
217 list_value = &g_array_index (array, GValue, i);
220 g_string_append_len (s, ", ", 2);
222 list_s = g_strdup_value_contents (list_value);
223 g_string_append (s, list_s);
226 g_string_append (s, end);
228 dest_value->data[0].v_pointer = g_string_free (s, FALSE);
232 * helper function to see if a type is fixed. Is used internally here and
233 * there. Do not export, since it doesn't work for types where the content
234 * decides the fixedness (e.g. GST_TYPE_ARRAY).
237 gst_type_is_fixed (GType type)
239 /* the basic int, string, double types */
240 if (type <= G_TYPE_MAKE_FUNDAMENTAL (G_TYPE_RESERVED_GLIB_LAST)) {
243 /* our fundamental types that are certainly not fixed */
244 if (type == GST_TYPE_INT_RANGE || type == GST_TYPE_DOUBLE_RANGE ||
245 type == GST_TYPE_INT64_RANGE ||
246 type == GST_TYPE_LIST || type == GST_TYPE_FRACTION_RANGE) {
249 /* other (boxed) types that are fixed */
250 if (type == GST_TYPE_BUFFER) {
254 if (G_TYPE_IS_FUNDAMENTAL (type) || G_TYPE_FUNDAMENTAL (type) <=
255 G_TYPE_MAKE_FUNDAMENTAL (G_TYPE_RESERVED_GLIB_LAST)) {
262 /* GValue functions usable for both regular lists and arrays */
264 gst_value_init_list_or_array (GValue * value)
266 value->data[0].v_pointer = g_array_new (FALSE, TRUE, sizeof (GValue));
270 copy_garray_of_gstvalue (const GArray * src)
276 dest = g_array_sized_new (FALSE, TRUE, sizeof (GValue), len);
277 g_array_set_size (dest, len);
278 for (i = 0; i < len; i++) {
279 gst_value_init_and_copy (&g_array_index (dest, GValue, i),
280 &g_array_index (src, GValue, i));
287 gst_value_copy_list_or_array (const GValue * src_value, GValue * dest_value)
289 dest_value->data[0].v_pointer =
290 copy_garray_of_gstvalue ((GArray *) src_value->data[0].v_pointer);
294 gst_value_free_list_or_array (GValue * value)
297 GArray *src = (GArray *) value->data[0].v_pointer;
300 if ((value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS) == 0) {
301 for (i = 0; i < len; i++) {
302 g_value_unset (&g_array_index (src, GValue, i));
304 g_array_free (src, TRUE);
309 gst_value_list_or_array_peek_pointer (const GValue * value)
311 return value->data[0].v_pointer;
315 gst_value_collect_list_or_array (GValue * value, guint n_collect_values,
316 GTypeCValue * collect_values, guint collect_flags)
318 if (collect_flags & G_VALUE_NOCOPY_CONTENTS) {
319 value->data[0].v_pointer = collect_values[0].v_pointer;
320 value->data[1].v_uint = G_VALUE_NOCOPY_CONTENTS;
322 value->data[0].v_pointer =
323 copy_garray_of_gstvalue ((GArray *) collect_values[0].v_pointer);
329 gst_value_lcopy_list_or_array (const GValue * value, guint n_collect_values,
330 GTypeCValue * collect_values, guint collect_flags)
332 GArray **dest = collect_values[0].v_pointer;
335 return g_strdup_printf ("value location for `%s' passed as NULL",
336 G_VALUE_TYPE_NAME (value));
337 if (!value->data[0].v_pointer)
338 return g_strdup_printf ("invalid value given for `%s'",
339 G_VALUE_TYPE_NAME (value));
340 if (collect_flags & G_VALUE_NOCOPY_CONTENTS) {
341 *dest = (GArray *) value->data[0].v_pointer;
343 *dest = copy_garray_of_gstvalue ((GArray *) value->data[0].v_pointer);
349 gst_value_list_or_array_get_basic_type (const GValue * value, GType * type)
351 if (G_UNLIKELY (value == NULL))
354 if (GST_VALUE_HOLDS_LIST (value)) {
355 if (VALUE_LIST_SIZE (value) == 0)
357 return gst_value_list_or_array_get_basic_type (VALUE_LIST_GET_VALUE (value,
360 if (GST_VALUE_HOLDS_ARRAY (value)) {
361 const GArray *array = (const GArray *) value->data[0].v_pointer;
364 return gst_value_list_or_array_get_basic_type (&g_array_index (array,
368 *type = G_VALUE_TYPE (value);
373 #define IS_RANGE_COMPAT(type1,type2,t1,t2) \
374 (((t1) == (type1) && (t2) == (type2)) || ((t2) == (type1) && (t1) == (type2)))
377 gst_value_list_or_array_are_compatible (const GValue * value1,
378 const GValue * value2)
380 GType basic_type1, basic_type2;
382 /* empty or same type is OK */
383 if (!gst_value_list_or_array_get_basic_type (value1, &basic_type1) ||
384 !gst_value_list_or_array_get_basic_type (value2, &basic_type2) ||
385 basic_type1 == basic_type2)
388 /* ranges are distinct types for each bound type... */
389 if (IS_RANGE_COMPAT (G_TYPE_INT, GST_TYPE_INT_RANGE, basic_type1,
392 if (IS_RANGE_COMPAT (G_TYPE_INT64, GST_TYPE_INT64_RANGE, basic_type1,
395 if (IS_RANGE_COMPAT (G_TYPE_DOUBLE, GST_TYPE_DOUBLE_RANGE, basic_type1,
398 if (IS_RANGE_COMPAT (GST_TYPE_FRACTION, GST_TYPE_FRACTION_RANGE, basic_type1,
406 * gst_value_list_append_value:
407 * @value: a #GValue of type #GST_TYPE_LIST
408 * @append_value: the value to append
410 * Appends @append_value to the GstValueList in @value.
413 gst_value_list_append_value (GValue * value, const GValue * append_value)
417 g_return_if_fail (GST_VALUE_HOLDS_LIST (value));
418 g_return_if_fail (G_IS_VALUE (append_value));
419 g_return_if_fail (gst_value_list_or_array_are_compatible (value,
422 gst_value_init_and_copy (&val, append_value);
423 g_array_append_vals ((GArray *) value->data[0].v_pointer, &val, 1);
427 * gst_value_list_prepend_value:
428 * @value: a #GValue of type #GST_TYPE_LIST
429 * @prepend_value: the value to prepend
431 * Prepends @prepend_value to the GstValueList in @value.
434 gst_value_list_prepend_value (GValue * value, const GValue * prepend_value)
438 g_return_if_fail (GST_VALUE_HOLDS_LIST (value));
439 g_return_if_fail (G_IS_VALUE (prepend_value));
440 g_return_if_fail (gst_value_list_or_array_are_compatible (value,
443 gst_value_init_and_copy (&val, prepend_value);
444 g_array_prepend_vals ((GArray *) value->data[0].v_pointer, &val, 1);
448 * gst_value_list_concat:
449 * @dest: (out caller-allocates): an uninitialized #GValue to take the result
453 * Concatenates copies of @value1 and @value2 into a list. Values that are not
454 * of type #GST_TYPE_LIST are treated as if they were lists of length 1.
455 * @dest will be initialized to the type #GST_TYPE_LIST.
458 gst_value_list_concat (GValue * dest, const GValue * value1,
459 const GValue * value2)
461 guint i, value1_length, value2_length;
464 g_return_if_fail (dest != NULL);
465 g_return_if_fail (G_VALUE_TYPE (dest) == 0);
466 g_return_if_fail (G_IS_VALUE (value1));
467 g_return_if_fail (G_IS_VALUE (value2));
468 g_return_if_fail (gst_value_list_or_array_are_compatible (value1, value2));
471 (GST_VALUE_HOLDS_LIST (value1) ? VALUE_LIST_SIZE (value1) : 1);
473 (GST_VALUE_HOLDS_LIST (value2) ? VALUE_LIST_SIZE (value2) : 1);
474 g_value_init (dest, GST_TYPE_LIST);
475 array = (GArray *) dest->data[0].v_pointer;
476 g_array_set_size (array, value1_length + value2_length);
478 if (GST_VALUE_HOLDS_LIST (value1)) {
479 for (i = 0; i < value1_length; i++) {
480 gst_value_init_and_copy (&g_array_index (array, GValue, i),
481 VALUE_LIST_GET_VALUE (value1, i));
484 gst_value_init_and_copy (&g_array_index (array, GValue, 0), value1);
487 if (GST_VALUE_HOLDS_LIST (value2)) {
488 for (i = 0; i < value2_length; i++) {
489 gst_value_init_and_copy (&g_array_index (array, GValue,
490 i + value1_length), VALUE_LIST_GET_VALUE (value2, i));
493 gst_value_init_and_copy (&g_array_index (array, GValue, value1_length),
499 * gst_value_list_merge:
500 * @dest: (out caller-allocates): an uninitialized #GValue to take the result
504 * Merges copies of @value1 and @value2. Values that are not
505 * of type #GST_TYPE_LIST are treated as if they were lists of length 1.
507 * The result will be put into @dest and will either be a list that will not
508 * contain any duplicates, or a non-list type (if @value1 and @value2
514 gst_value_list_merge (GValue * dest, const GValue * value1,
515 const GValue * value2)
517 guint i, j, k, value1_length, value2_length, skipped;
522 g_return_if_fail (dest != NULL);
523 g_return_if_fail (G_VALUE_TYPE (dest) == 0);
524 g_return_if_fail (G_IS_VALUE (value1));
525 g_return_if_fail (G_IS_VALUE (value2));
526 g_return_if_fail (gst_value_list_or_array_are_compatible (value1, value2));
529 (GST_VALUE_HOLDS_LIST (value1) ? VALUE_LIST_SIZE (value1) : 1);
531 (GST_VALUE_HOLDS_LIST (value2) ? VALUE_LIST_SIZE (value2) : 1);
532 g_value_init (dest, GST_TYPE_LIST);
533 array = (GArray *) dest->data[0].v_pointer;
534 g_array_set_size (array, value1_length + value2_length);
536 if (GST_VALUE_HOLDS_LIST (value1)) {
537 for (i = 0; i < value1_length; i++) {
538 gst_value_init_and_copy (&g_array_index (array, GValue, i),
539 VALUE_LIST_GET_VALUE (value1, i));
542 gst_value_init_and_copy (&g_array_index (array, GValue, 0), value1);
547 if (GST_VALUE_HOLDS_LIST (value2)) {
548 for (i = 0; i < value2_length; i++) {
550 src = VALUE_LIST_GET_VALUE (value2, i);
551 for (k = 0; k < value1_length; k++) {
552 if (gst_value_compare (&g_array_index (array, GValue, k),
553 src) == GST_VALUE_EQUAL) {
560 gst_value_init_and_copy (&g_array_index (array, GValue, j), src);
566 for (k = 0; k < value1_length; k++) {
567 if (gst_value_compare (&g_array_index (array, GValue, k),
568 value2) == GST_VALUE_EQUAL) {
575 gst_value_init_and_copy (&g_array_index (array, GValue, j), value2);
579 guint new_size = value1_length + (value2_length - skipped);
583 g_array_set_size (array, new_size);
587 /* size is 1, take single value in list and make it new dest */
588 single_dest = g_array_index (array, GValue, 0);
590 /* clean up old value allocations: must set array size to 0, because
591 * allocated values are not inited meaning g_value_unset() will not
593 g_array_set_size (array, 0);
594 g_value_unset (dest);
596 /* the single value is our new result */
603 * gst_value_list_get_size:
604 * @value: a #GValue of type #GST_TYPE_LIST
606 * Gets the number of values contained in @value.
608 * Returns: the number of values
611 gst_value_list_get_size (const GValue * value)
613 g_return_val_if_fail (GST_VALUE_HOLDS_LIST (value), 0);
615 return ((GArray *) value->data[0].v_pointer)->len;
619 * gst_value_list_get_value:
620 * @value: a #GValue of type #GST_TYPE_LIST
621 * @index: index of value to get from the list
623 * Gets the value that is a member of the list contained in @value and
624 * has the index @index.
626 * Returns: (transfer none): the value at the given index
629 gst_value_list_get_value (const GValue * value, guint index)
631 g_return_val_if_fail (GST_VALUE_HOLDS_LIST (value), NULL);
632 g_return_val_if_fail (index < VALUE_LIST_SIZE (value), NULL);
634 return (const GValue *) &g_array_index ((GArray *) value->data[0].v_pointer,
639 * gst_value_array_append_value:
640 * @value: a #GValue of type #GST_TYPE_ARRAY
641 * @append_value: the value to append
643 * Appends @append_value to the GstValueArray in @value.
646 gst_value_array_append_value (GValue * value, const GValue * append_value)
650 g_return_if_fail (GST_VALUE_HOLDS_ARRAY (value));
651 g_return_if_fail (G_IS_VALUE (append_value));
652 g_return_if_fail (gst_value_list_or_array_are_compatible (value,
655 gst_value_init_and_copy (&val, append_value);
656 g_array_append_vals ((GArray *) value->data[0].v_pointer, &val, 1);
660 * gst_value_array_prepend_value:
661 * @value: a #GValue of type #GST_TYPE_ARRAY
662 * @prepend_value: the value to prepend
664 * Prepends @prepend_value to the GstValueArray in @value.
667 gst_value_array_prepend_value (GValue * value, const GValue * prepend_value)
671 g_return_if_fail (GST_VALUE_HOLDS_ARRAY (value));
672 g_return_if_fail (G_IS_VALUE (prepend_value));
673 g_return_if_fail (gst_value_list_or_array_are_compatible (value,
676 gst_value_init_and_copy (&val, prepend_value);
677 g_array_prepend_vals ((GArray *) value->data[0].v_pointer, &val, 1);
681 * gst_value_array_get_size:
682 * @value: a #GValue of type #GST_TYPE_ARRAY
684 * Gets the number of values contained in @value.
686 * Returns: the number of values
689 gst_value_array_get_size (const GValue * value)
691 g_return_val_if_fail (GST_VALUE_HOLDS_ARRAY (value), 0);
693 return ((GArray *) value->data[0].v_pointer)->len;
697 * gst_value_array_get_value:
698 * @value: a #GValue of type #GST_TYPE_ARRAY
699 * @index: index of value to get from the array
701 * Gets the value that is a member of the array contained in @value and
702 * has the index @index.
704 * Returns: (transfer none): the value at the given index
707 gst_value_array_get_value (const GValue * value, guint index)
709 g_return_val_if_fail (GST_VALUE_HOLDS_ARRAY (value), NULL);
710 g_return_val_if_fail (index < gst_value_array_get_size (value), NULL);
712 return (const GValue *) &g_array_index ((GArray *) value->data[0].v_pointer,
717 gst_value_transform_list_string (const GValue * src_value, GValue * dest_value)
719 gst_value_transform_any_list_string (src_value, dest_value, "{ ", " }");
723 gst_value_transform_array_string (const GValue * src_value, GValue * dest_value)
725 gst_value_transform_any_list_string (src_value, dest_value, "< ", " >");
728 /* Do an unordered compare of the contents of a list */
730 gst_value_compare_list (const GValue * value1, const GValue * value2)
733 GArray *array1 = value1->data[0].v_pointer;
734 GArray *array2 = value2->data[0].v_pointer;
739 GstValueCompareFunc compare;
741 /* get length and do initial length check. */
743 if (len != array2->len)
744 return GST_VALUE_UNORDERED;
746 /* place to mark removed value indices of array2 */
747 removed = g_newa (guint8, len);
748 memset (removed, 0, len);
751 /* loop over array1, all items should be in array2. When we find an
752 * item in array2, remove it from array2 by marking it as removed */
753 for (i = 0; i < len; i++) {
754 v1 = &g_array_index (array1, GValue, i);
755 if ((compare = gst_value_get_compare_func (v1))) {
756 for (j = 0; j < len; j++) {
757 /* item is removed, we can skip it */
760 v2 = &g_array_index (array2, GValue, j);
761 if (gst_value_compare_with_func (v1, v2, compare) == GST_VALUE_EQUAL) {
762 /* mark item as removed now that we found it in array2 and
763 * decrement the number of remaining items in array2. */
769 /* item in array1 and not in array2, UNORDERED */
771 return GST_VALUE_UNORDERED;
773 return GST_VALUE_UNORDERED;
775 /* if not all items were removed, array2 contained something not in array1 */
777 return GST_VALUE_UNORDERED;
779 /* arrays are equal */
780 return GST_VALUE_EQUAL;
783 /* Perform an ordered comparison of the contents of an array */
785 gst_value_compare_array (const GValue * value1, const GValue * value2)
788 GArray *array1 = value1->data[0].v_pointer;
789 GArray *array2 = value2->data[0].v_pointer;
790 guint len = array1->len;
794 if (len != array2->len)
795 return GST_VALUE_UNORDERED;
797 for (i = 0; i < len; i++) {
798 v1 = &g_array_index (array1, GValue, i);
799 v2 = &g_array_index (array2, GValue, i);
800 if (gst_value_compare (v1, v2) != GST_VALUE_EQUAL)
801 return GST_VALUE_UNORDERED;
804 return GST_VALUE_EQUAL;
808 gst_value_serialize_list (const GValue * value)
810 return gst_value_serialize_any_list (value, "{ ", " }");
814 gst_value_deserialize_list (GValue * dest, const gchar * s)
816 g_warning ("gst_value_deserialize_list: unimplemented");
821 gst_value_serialize_array (const GValue * value)
823 return gst_value_serialize_any_list (value, "< ", " >");
827 gst_value_deserialize_array (GValue * dest, const gchar * s)
829 g_warning ("gst_value_deserialize_array: unimplemented");
836 * Values in the range are defined as any value greater or equal
837 * to min*step, AND lesser or equal to max*step.
838 * For step == 1, this falls back to the traditional range semantics.
841 #define INT_RANGE_MIN(v) (((gint *)((v)->data[0].v_pointer))[0])
842 #define INT_RANGE_MAX(v) (((gint *)((v)->data[0].v_pointer))[1])
843 #define INT_RANGE_STEP(v) (((gint *)((v)->data[0].v_pointer))[2])
846 gst_value_init_int_range (GValue * value)
848 gint *vals = g_slice_alloc0 (3 * sizeof (gint));
849 value->data[0].v_pointer = vals;
850 INT_RANGE_MIN (value) = 0;
851 INT_RANGE_MAX (value) = 0;
852 INT_RANGE_STEP (value) = 1;
856 gst_value_free_int_range (GValue * value)
858 g_return_if_fail (GST_VALUE_HOLDS_INT_RANGE (value));
859 g_slice_free1 (3 * sizeof (gint), value->data[0].v_pointer);
860 value->data[0].v_pointer = NULL;
864 gst_value_copy_int_range (const GValue * src_value, GValue * dest_value)
866 gint *vals = (gint *) dest_value->data[0].v_pointer;
867 gint *src_vals = (gint *) src_value->data[0].v_pointer;
870 gst_value_init_int_range (dest_value);
872 if (src_vals != NULL) {
873 INT_RANGE_MIN (dest_value) = INT_RANGE_MIN (src_value);
874 INT_RANGE_MAX (dest_value) = INT_RANGE_MAX (src_value);
875 INT_RANGE_STEP (dest_value) = INT_RANGE_STEP (src_value);
880 gst_value_collect_int_range (GValue * value, guint n_collect_values,
881 GTypeCValue * collect_values, guint collect_flags)
883 gint *vals = value->data[0].v_pointer;
885 if (n_collect_values != 2)
886 return g_strdup_printf ("not enough value locations for `%s' passed",
887 G_VALUE_TYPE_NAME (value));
888 if (collect_values[0].v_int >= collect_values[1].v_int)
889 return g_strdup_printf ("range start is not smaller than end for `%s'",
890 G_VALUE_TYPE_NAME (value));
893 gst_value_init_int_range (value);
896 gst_value_set_int_range_step (value, collect_values[0].v_int,
897 collect_values[1].v_int, 1);
903 gst_value_lcopy_int_range (const GValue * value, guint n_collect_values,
904 GTypeCValue * collect_values, guint collect_flags)
906 guint32 *int_range_start = collect_values[0].v_pointer;
907 guint32 *int_range_end = collect_values[1].v_pointer;
908 guint32 *int_range_step = collect_values[2].v_pointer;
909 gint *vals = (gint *) value->data[0].v_pointer;
911 if (!int_range_start)
912 return g_strdup_printf ("start value location for `%s' passed as NULL",
913 G_VALUE_TYPE_NAME (value));
915 return g_strdup_printf ("end value location for `%s' passed as NULL",
916 G_VALUE_TYPE_NAME (value));
918 return g_strdup_printf ("step value location for `%s' passed as NULL",
919 G_VALUE_TYPE_NAME (value));
921 if (G_UNLIKELY (vals == NULL)) {
922 return g_strdup_printf ("Uninitialised `%s' passed",
923 G_VALUE_TYPE_NAME (value));
926 *int_range_start = INT_RANGE_MIN (value);
927 *int_range_end = INT_RANGE_MAX (value);
928 *int_range_step = INT_RANGE_STEP (value);
934 * gst_value_set_int_range_step:
935 * @value: a GValue initialized to GST_TYPE_INT_RANGE
936 * @start: the start of the range
937 * @end: the end of the range
938 * @step: the step of the range
940 * Sets @value to the range specified by @start, @end and @step.
943 gst_value_set_int_range_step (GValue * value, gint start, gint end, gint step)
945 g_return_if_fail (GST_VALUE_HOLDS_INT_RANGE (value));
946 g_return_if_fail (start < end);
947 g_return_if_fail (step > 0);
948 g_return_if_fail (start % step == 0);
949 g_return_if_fail (end % step == 0);
951 INT_RANGE_MIN (value) = start / step;
952 INT_RANGE_MAX (value) = end / step;
953 INT_RANGE_STEP (value) = step;
957 * gst_value_set_int_range:
958 * @value: a GValue initialized to GST_TYPE_INT_RANGE
959 * @start: the start of the range
960 * @end: the end of the range
962 * Sets @value to the range specified by @start and @end.
965 gst_value_set_int_range (GValue * value, gint start, gint end)
967 gst_value_set_int_range_step (value, start, end, 1);
971 * gst_value_get_int_range_min:
972 * @value: a GValue initialized to GST_TYPE_INT_RANGE
974 * Gets the minimum of the range specified by @value.
976 * Returns: the minimum of the range
979 gst_value_get_int_range_min (const GValue * value)
981 g_return_val_if_fail (GST_VALUE_HOLDS_INT_RANGE (value), 0);
983 return INT_RANGE_MIN (value) * INT_RANGE_STEP (value);
987 * gst_value_get_int_range_max:
988 * @value: a GValue initialized to GST_TYPE_INT_RANGE
990 * Gets the maximum of the range specified by @value.
992 * Returns: the maxumum of the range
995 gst_value_get_int_range_max (const GValue * value)
997 g_return_val_if_fail (GST_VALUE_HOLDS_INT_RANGE (value), 0);
999 return INT_RANGE_MAX (value) * INT_RANGE_STEP (value);
1003 * gst_value_get_int_range_step:
1004 * @value: a GValue initialized to GST_TYPE_INT_RANGE
1006 * Gets the step of the range specified by @value.
1008 * Returns: the step of the range
1011 gst_value_get_int_range_step (const GValue * value)
1013 g_return_val_if_fail (GST_VALUE_HOLDS_INT_RANGE (value), 0);
1015 return INT_RANGE_STEP (value);
1019 gst_value_transform_int_range_string (const GValue * src_value,
1020 GValue * dest_value)
1022 if (INT_RANGE_STEP (src_value) == 1)
1023 dest_value->data[0].v_pointer = g_strdup_printf ("[%d,%d]",
1024 INT_RANGE_MIN (src_value), INT_RANGE_MAX (src_value));
1026 dest_value->data[0].v_pointer = g_strdup_printf ("[%d,%d,%d]",
1027 INT_RANGE_MIN (src_value) * INT_RANGE_STEP (src_value),
1028 INT_RANGE_MAX (src_value) * INT_RANGE_STEP (src_value),
1029 INT_RANGE_STEP (src_value));
1033 gst_value_compare_int_range (const GValue * value1, const GValue * value2)
1035 /* calculate the number of values in each range */
1036 gint n1 = INT_RANGE_MAX (value1) - INT_RANGE_MIN (value1) + 1;
1037 gint n2 = INT_RANGE_MAX (value2) - INT_RANGE_MIN (value2) + 1;
1039 /* they must be equal */
1041 return GST_VALUE_UNORDERED;
1043 /* if empty, equal */
1045 return GST_VALUE_EQUAL;
1047 /* if more than one value, then it is only equal if the step is equal
1048 and bounds lie on the same value */
1050 if (INT_RANGE_STEP (value1) == INT_RANGE_STEP (value2) &&
1051 INT_RANGE_STEP (value1) == INT_RANGE_STEP (value2) &&
1052 INT_RANGE_STEP (value1) == INT_RANGE_STEP (value2)) {
1053 return GST_VALUE_EQUAL;
1055 return GST_VALUE_UNORDERED;
1057 /* if just one, only if the value is equal */
1058 if (INT_RANGE_MIN (value1) == INT_RANGE_MIN (value2))
1059 return GST_VALUE_EQUAL;
1060 return GST_VALUE_UNORDERED;
1065 gst_value_serialize_int_range (const GValue * value)
1067 if (INT_RANGE_STEP (value) == 1)
1068 return g_strdup_printf ("[ %d, %d ]", INT_RANGE_MIN (value),
1069 INT_RANGE_MAX (value));
1071 return g_strdup_printf ("[ %d, %d, %d ]",
1072 INT_RANGE_MIN (value) * INT_RANGE_STEP (value),
1073 INT_RANGE_MAX (value) * INT_RANGE_STEP (value), INT_RANGE_STEP (value));
1077 gst_value_deserialize_int_range (GValue * dest, const gchar * s)
1079 g_warning ("unimplemented");
1086 * Values in the range are defined as any value greater or equal
1087 * to min*step, AND lesser or equal to max*step.
1088 * For step == 1, this falls back to the traditional range semantics.
1091 #define INT64_RANGE_MIN(v) (((gint64 *)((v)->data[0].v_pointer))[0])
1092 #define INT64_RANGE_MAX(v) (((gint64 *)((v)->data[0].v_pointer))[1])
1093 #define INT64_RANGE_STEP(v) (((gint64 *)((v)->data[0].v_pointer))[2])
1096 gst_value_init_int64_range (GValue * value)
1098 gint64 *vals = g_slice_alloc0 (3 * sizeof (gint64));
1099 value->data[0].v_pointer = vals;
1100 INT64_RANGE_MIN (value) = 0;
1101 INT64_RANGE_MAX (value) = 0;
1102 INT64_RANGE_STEP (value) = 1;
1106 gst_value_free_int64_range (GValue * value)
1108 g_return_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value));
1109 g_slice_free1 (3 * sizeof (gint64), value->data[0].v_pointer);
1110 value->data[0].v_pointer = NULL;
1114 gst_value_copy_int64_range (const GValue * src_value, GValue * dest_value)
1116 gint64 *vals = (gint64 *) dest_value->data[0].v_pointer;
1117 gint64 *src_vals = (gint64 *) src_value->data[0].v_pointer;
1120 gst_value_init_int64_range (dest_value);
1123 if (src_vals != NULL) {
1124 INT64_RANGE_MIN (dest_value) = INT64_RANGE_MIN (src_value);
1125 INT64_RANGE_MAX (dest_value) = INT64_RANGE_MAX (src_value);
1126 INT64_RANGE_STEP (dest_value) = INT64_RANGE_STEP (src_value);
1131 gst_value_collect_int64_range (GValue * value, guint n_collect_values,
1132 GTypeCValue * collect_values, guint collect_flags)
1134 gint64 *vals = value->data[0].v_pointer;
1136 if (n_collect_values != 2)
1137 return g_strdup_printf ("not enough value locations for `%s' passed",
1138 G_VALUE_TYPE_NAME (value));
1139 if (collect_values[0].v_int64 >= collect_values[1].v_int64)
1140 return g_strdup_printf ("range start is not smaller than end for `%s'",
1141 G_VALUE_TYPE_NAME (value));
1144 gst_value_init_int64_range (value);
1147 gst_value_set_int64_range_step (value, collect_values[0].v_int64,
1148 collect_values[1].v_int64, 1);
1154 gst_value_lcopy_int64_range (const GValue * value, guint n_collect_values,
1155 GTypeCValue * collect_values, guint collect_flags)
1157 guint64 *int_range_start = collect_values[0].v_pointer;
1158 guint64 *int_range_end = collect_values[1].v_pointer;
1159 guint64 *int_range_step = collect_values[2].v_pointer;
1160 gint64 *vals = (gint64 *) value->data[0].v_pointer;
1162 if (!int_range_start)
1163 return g_strdup_printf ("start value location for `%s' passed as NULL",
1164 G_VALUE_TYPE_NAME (value));
1166 return g_strdup_printf ("end value location for `%s' passed as NULL",
1167 G_VALUE_TYPE_NAME (value));
1168 if (!int_range_step)
1169 return g_strdup_printf ("step value location for `%s' passed as NULL",
1170 G_VALUE_TYPE_NAME (value));
1172 if (G_UNLIKELY (vals == NULL)) {
1173 return g_strdup_printf ("Uninitialised `%s' passed",
1174 G_VALUE_TYPE_NAME (value));
1177 *int_range_start = INT64_RANGE_MIN (value);
1178 *int_range_end = INT64_RANGE_MAX (value);
1179 *int_range_step = INT64_RANGE_STEP (value);
1185 * gst_value_set_int64_range_step:
1186 * @value: a GValue initialized to GST_TYPE_INT64_RANGE
1187 * @start: the start of the range
1188 * @end: the end of the range
1189 * @step: the step of the range
1191 * Sets @value to the range specified by @start, @end and @step.
1196 gst_value_set_int64_range_step (GValue * value, gint64 start, gint64 end,
1199 g_return_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value));
1200 g_return_if_fail (start < end);
1201 g_return_if_fail (step > 0);
1202 g_return_if_fail (start % step == 0);
1203 g_return_if_fail (end % step == 0);
1205 INT64_RANGE_MIN (value) = start / step;
1206 INT64_RANGE_MAX (value) = end / step;
1207 INT64_RANGE_STEP (value) = step;
1211 * gst_value_set_int64_range:
1212 * @value: a GValue initialized to GST_TYPE_INT64_RANGE
1213 * @start: the start of the range
1214 * @end: the end of the range
1216 * Sets @value to the range specified by @start and @end.
1221 gst_value_set_int64_range (GValue * value, gint64 start, gint64 end)
1223 gst_value_set_int64_range_step (value, start, end, 1);
1227 * gst_value_get_int64_range_min:
1228 * @value: a GValue initialized to GST_TYPE_INT64_RANGE
1230 * Gets the minimum of the range specified by @value.
1232 * Returns: the minimum of the range
1237 gst_value_get_int64_range_min (const GValue * value)
1239 g_return_val_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value), 0);
1241 return INT64_RANGE_MIN (value) * INT64_RANGE_STEP (value);
1245 * gst_value_get_int64_range_max:
1246 * @value: a GValue initialized to GST_TYPE_INT64_RANGE
1248 * Gets the maximum of the range specified by @value.
1250 * Returns: the maxumum of the range
1255 gst_value_get_int64_range_max (const GValue * value)
1257 g_return_val_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value), 0);
1259 return INT64_RANGE_MAX (value) * INT64_RANGE_STEP (value);
1263 * gst_value_get_int64_range_step:
1264 * @value: a GValue initialized to GST_TYPE_INT64_RANGE
1266 * Gets the step of the range specified by @value.
1268 * Returns: the step of the range
1273 gst_value_get_int64_range_step (const GValue * value)
1275 g_return_val_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value), 0);
1277 return INT64_RANGE_STEP (value);
1281 gst_value_transform_int64_range_string (const GValue * src_value,
1282 GValue * dest_value)
1284 if (INT64_RANGE_STEP (src_value) == 1)
1285 dest_value->data[0].v_pointer =
1286 g_strdup_printf ("(gint64)[%" G_GINT64_FORMAT ",%" G_GINT64_FORMAT "]",
1287 INT64_RANGE_MIN (src_value), INT64_RANGE_MAX (src_value));
1289 dest_value->data[0].v_pointer =
1290 g_strdup_printf ("(gint64)[%" G_GINT64_FORMAT ",%" G_GINT64_FORMAT
1291 ",%" G_GINT64_FORMAT "]",
1292 INT64_RANGE_MIN (src_value) * INT64_RANGE_STEP (src_value),
1293 INT64_RANGE_MAX (src_value) * INT64_RANGE_STEP (src_value),
1294 INT64_RANGE_STEP (src_value));
1298 gst_value_compare_int64_range (const GValue * value1, const GValue * value2)
1300 /* calculate the number of values in each range */
1301 gint64 n1 = INT64_RANGE_MAX (value1) - INT64_RANGE_MIN (value1) + 1;
1302 gint64 n2 = INT64_RANGE_MAX (value2) - INT64_RANGE_MIN (value2) + 1;
1304 /* they must be equal */
1306 return GST_VALUE_UNORDERED;
1308 /* if empty, equal */
1310 return GST_VALUE_EQUAL;
1312 /* if more than one value, then it is only equal if the step is equal
1313 and bounds lie on the same value */
1315 if (INT64_RANGE_STEP (value1) == INT64_RANGE_STEP (value2) &&
1316 INT64_RANGE_STEP (value1) == INT64_RANGE_STEP (value2) &&
1317 INT64_RANGE_STEP (value1) == INT64_RANGE_STEP (value2)) {
1318 return GST_VALUE_EQUAL;
1320 return GST_VALUE_UNORDERED;
1322 /* if just one, only if the value is equal */
1323 if (INT64_RANGE_MIN (value1) == INT64_RANGE_MIN (value2))
1324 return GST_VALUE_EQUAL;
1325 return GST_VALUE_UNORDERED;
1330 gst_value_serialize_int64_range (const GValue * value)
1332 if (INT64_RANGE_STEP (value) == 1)
1333 return g_strdup_printf ("[ %" G_GINT64_FORMAT ", %" G_GINT64_FORMAT " ]",
1334 INT64_RANGE_MIN (value), INT64_RANGE_MAX (value));
1336 return g_strdup_printf ("[ %" G_GINT64_FORMAT ", %" G_GINT64_FORMAT ", %"
1337 G_GINT64_FORMAT " ]",
1338 INT64_RANGE_MIN (value) * INT64_RANGE_STEP (value),
1339 INT64_RANGE_MAX (value) * INT64_RANGE_STEP (value),
1340 INT64_RANGE_STEP (value));
1344 gst_value_deserialize_int64_range (GValue * dest, const gchar * s)
1346 g_warning ("unimplemented");
1355 gst_value_init_double_range (GValue * value)
1357 value->data[0].v_double = 0;
1358 value->data[1].v_double = 0;
1362 gst_value_copy_double_range (const GValue * src_value, GValue * dest_value)
1364 dest_value->data[0].v_double = src_value->data[0].v_double;
1365 dest_value->data[1].v_double = src_value->data[1].v_double;
1369 gst_value_collect_double_range (GValue * value, guint n_collect_values,
1370 GTypeCValue * collect_values, guint collect_flags)
1372 if (n_collect_values != 2)
1373 return g_strdup_printf ("not enough value locations for `%s' passed",
1374 G_VALUE_TYPE_NAME (value));
1375 if (collect_values[0].v_double >= collect_values[1].v_double)
1376 return g_strdup_printf ("range start is not smaller than end for `%s'",
1377 G_VALUE_TYPE_NAME (value));
1379 value->data[0].v_double = collect_values[0].v_double;
1380 value->data[1].v_double = collect_values[1].v_double;
1386 gst_value_lcopy_double_range (const GValue * value, guint n_collect_values,
1387 GTypeCValue * collect_values, guint collect_flags)
1389 gdouble *double_range_start = collect_values[0].v_pointer;
1390 gdouble *double_range_end = collect_values[1].v_pointer;
1392 if (!double_range_start)
1393 return g_strdup_printf ("start value location for `%s' passed as NULL",
1394 G_VALUE_TYPE_NAME (value));
1395 if (!double_range_end)
1396 return g_strdup_printf ("end value location for `%s' passed as NULL",
1397 G_VALUE_TYPE_NAME (value));
1399 *double_range_start = value->data[0].v_double;
1400 *double_range_end = value->data[1].v_double;
1406 * gst_value_set_double_range:
1407 * @value: a GValue initialized to GST_TYPE_DOUBLE_RANGE
1408 * @start: the start of the range
1409 * @end: the end of the range
1411 * Sets @value to the range specified by @start and @end.
1414 gst_value_set_double_range (GValue * value, gdouble start, gdouble end)
1416 g_return_if_fail (GST_VALUE_HOLDS_DOUBLE_RANGE (value));
1417 g_return_if_fail (start < end);
1419 value->data[0].v_double = start;
1420 value->data[1].v_double = end;
1424 * gst_value_get_double_range_min:
1425 * @value: a GValue initialized to GST_TYPE_DOUBLE_RANGE
1427 * Gets the minimum of the range specified by @value.
1429 * Returns: the minimum of the range
1432 gst_value_get_double_range_min (const GValue * value)
1434 g_return_val_if_fail (GST_VALUE_HOLDS_DOUBLE_RANGE (value), 0);
1436 return value->data[0].v_double;
1440 * gst_value_get_double_range_max:
1441 * @value: a GValue initialized to GST_TYPE_DOUBLE_RANGE
1443 * Gets the maximum of the range specified by @value.
1445 * Returns: the maxumum of the range
1448 gst_value_get_double_range_max (const GValue * value)
1450 g_return_val_if_fail (GST_VALUE_HOLDS_DOUBLE_RANGE (value), 0);
1452 return value->data[1].v_double;
1456 gst_value_transform_double_range_string (const GValue * src_value,
1457 GValue * dest_value)
1459 gchar s1[G_ASCII_DTOSTR_BUF_SIZE], s2[G_ASCII_DTOSTR_BUF_SIZE];
1461 dest_value->data[0].v_pointer = g_strdup_printf ("[%s,%s]",
1462 g_ascii_dtostr (s1, G_ASCII_DTOSTR_BUF_SIZE,
1463 src_value->data[0].v_double),
1464 g_ascii_dtostr (s2, G_ASCII_DTOSTR_BUF_SIZE,
1465 src_value->data[1].v_double));
1469 gst_value_compare_double_range (const GValue * value1, const GValue * value2)
1471 if (value2->data[0].v_double == value1->data[0].v_double &&
1472 value2->data[0].v_double == value1->data[0].v_double)
1473 return GST_VALUE_EQUAL;
1474 return GST_VALUE_UNORDERED;
1478 gst_value_serialize_double_range (const GValue * value)
1480 gchar d1[G_ASCII_DTOSTR_BUF_SIZE];
1481 gchar d2[G_ASCII_DTOSTR_BUF_SIZE];
1483 g_ascii_dtostr (d1, G_ASCII_DTOSTR_BUF_SIZE, value->data[0].v_double);
1484 g_ascii_dtostr (d2, G_ASCII_DTOSTR_BUF_SIZE, value->data[1].v_double);
1485 return g_strdup_printf ("[ %s, %s ]", d1, d2);
1489 gst_value_deserialize_double_range (GValue * dest, const gchar * s)
1491 g_warning ("unimplemented");
1500 gst_value_init_fraction_range (GValue * value)
1505 ftype = GST_TYPE_FRACTION;
1507 value->data[0].v_pointer = vals = g_slice_alloc0 (2 * sizeof (GValue));
1508 g_value_init (&vals[0], ftype);
1509 g_value_init (&vals[1], ftype);
1513 gst_value_free_fraction_range (GValue * value)
1515 GValue *vals = (GValue *) value->data[0].v_pointer;
1518 /* we know the two values contain fractions without internal allocs */
1519 /* g_value_unset (&vals[0]); */
1520 /* g_value_unset (&vals[1]); */
1521 g_slice_free1 (2 * sizeof (GValue), vals);
1522 value->data[0].v_pointer = NULL;
1527 gst_value_copy_fraction_range (const GValue * src_value, GValue * dest_value)
1529 GValue *vals = (GValue *) dest_value->data[0].v_pointer;
1530 GValue *src_vals = (GValue *) src_value->data[0].v_pointer;
1533 gst_value_init_fraction_range (dest_value);
1534 vals = dest_value->data[0].v_pointer;
1536 if (src_vals != NULL) {
1537 g_value_copy (&src_vals[0], &vals[0]);
1538 g_value_copy (&src_vals[1], &vals[1]);
1543 gst_value_collect_fraction_range (GValue * value, guint n_collect_values,
1544 GTypeCValue * collect_values, guint collect_flags)
1546 GValue *vals = (GValue *) value->data[0].v_pointer;
1548 if (n_collect_values != 4)
1549 return g_strdup_printf ("not enough value locations for `%s' passed",
1550 G_VALUE_TYPE_NAME (value));
1551 if (collect_values[1].v_int == 0)
1552 return g_strdup_printf ("passed '0' as first denominator for `%s'",
1553 G_VALUE_TYPE_NAME (value));
1554 if (collect_values[3].v_int == 0)
1555 return g_strdup_printf ("passed '0' as second denominator for `%s'",
1556 G_VALUE_TYPE_NAME (value));
1557 if (gst_util_fraction_compare (collect_values[0].v_int,
1558 collect_values[1].v_int, collect_values[2].v_int,
1559 collect_values[3].v_int) >= 0)
1560 return g_strdup_printf ("range start is not smaller than end for `%s'",
1561 G_VALUE_TYPE_NAME (value));
1564 gst_value_init_fraction_range (value);
1565 vals = value->data[0].v_pointer;
1568 gst_value_set_fraction (&vals[0], collect_values[0].v_int,
1569 collect_values[1].v_int);
1570 gst_value_set_fraction (&vals[1], collect_values[2].v_int,
1571 collect_values[3].v_int);
1577 gst_value_lcopy_fraction_range (const GValue * value, guint n_collect_values,
1578 GTypeCValue * collect_values, guint collect_flags)
1581 gint *dest_values[4];
1582 GValue *vals = (GValue *) value->data[0].v_pointer;
1584 if (G_UNLIKELY (n_collect_values != 4))
1585 return g_strdup_printf ("not enough value locations for `%s' passed",
1586 G_VALUE_TYPE_NAME (value));
1588 for (i = 0; i < 4; i++) {
1589 if (G_UNLIKELY (collect_values[i].v_pointer == NULL)) {
1590 return g_strdup_printf ("value location for `%s' passed as NULL",
1591 G_VALUE_TYPE_NAME (value));
1593 dest_values[i] = collect_values[i].v_pointer;
1596 if (G_UNLIKELY (vals == NULL)) {
1597 return g_strdup_printf ("Uninitialised `%s' passed",
1598 G_VALUE_TYPE_NAME (value));
1601 dest_values[0][0] = gst_value_get_fraction_numerator (&vals[0]);
1602 dest_values[1][0] = gst_value_get_fraction_denominator (&vals[0]);
1603 dest_values[2][0] = gst_value_get_fraction_numerator (&vals[1]);
1604 dest_values[3][0] = gst_value_get_fraction_denominator (&vals[1]);
1609 * gst_value_set_fraction_range:
1610 * @value: a GValue initialized to GST_TYPE_FRACTION_RANGE
1611 * @start: the start of the range (a GST_TYPE_FRACTION GValue)
1612 * @end: the end of the range (a GST_TYPE_FRACTION GValue)
1614 * Sets @value to the range specified by @start and @end.
1617 gst_value_set_fraction_range (GValue * value, const GValue * start,
1622 g_return_if_fail (GST_VALUE_HOLDS_FRACTION_RANGE (value));
1623 g_return_if_fail (GST_VALUE_HOLDS_FRACTION (start));
1624 g_return_if_fail (GST_VALUE_HOLDS_FRACTION (end));
1625 g_return_if_fail (gst_util_fraction_compare (start->data[0].v_int,
1626 start->data[1].v_int, end->data[0].v_int, end->data[1].v_int) < 0);
1628 vals = (GValue *) value->data[0].v_pointer;
1630 gst_value_init_fraction_range (value);
1631 vals = value->data[0].v_pointer;
1633 g_value_copy (start, &vals[0]);
1634 g_value_copy (end, &vals[1]);
1638 * gst_value_set_fraction_range_full:
1639 * @value: a GValue initialized to GST_TYPE_FRACTION_RANGE
1640 * @numerator_start: the numerator start of the range
1641 * @denominator_start: the denominator start of the range
1642 * @numerator_end: the numerator end of the range
1643 * @denominator_end: the denominator end of the range
1645 * Sets @value to the range specified by @numerator_start/@denominator_start
1646 * and @numerator_end/@denominator_end.
1649 gst_value_set_fraction_range_full (GValue * value,
1650 gint numerator_start, gint denominator_start,
1651 gint numerator_end, gint denominator_end)
1653 GValue start = { 0 };
1656 g_return_if_fail (value != NULL);
1657 g_return_if_fail (denominator_start != 0);
1658 g_return_if_fail (denominator_end != 0);
1659 g_return_if_fail (gst_util_fraction_compare (numerator_start,
1660 denominator_start, numerator_end, denominator_end) < 0);
1662 g_value_init (&start, GST_TYPE_FRACTION);
1663 g_value_init (&end, GST_TYPE_FRACTION);
1665 gst_value_set_fraction (&start, numerator_start, denominator_start);
1666 gst_value_set_fraction (&end, numerator_end, denominator_end);
1667 gst_value_set_fraction_range (value, &start, &end);
1669 /* we know the two values contain fractions without internal allocs */
1670 /* g_value_unset (&start); */
1671 /* g_value_unset (&end); */
1675 * gst_value_get_fraction_range_min:
1676 * @value: a GValue initialized to GST_TYPE_FRACTION_RANGE
1678 * Gets the minimum of the range specified by @value.
1680 * Returns: the minimum of the range
1683 gst_value_get_fraction_range_min (const GValue * value)
1687 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION_RANGE (value), NULL);
1689 vals = (GValue *) value->data[0].v_pointer;
1698 * gst_value_get_fraction_range_max:
1699 * @value: a GValue initialized to GST_TYPE_FRACTION_RANGE
1701 * Gets the maximum of the range specified by @value.
1703 * Returns: the maximum of the range
1706 gst_value_get_fraction_range_max (const GValue * value)
1710 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION_RANGE (value), NULL);
1712 vals = (GValue *) value->data[0].v_pointer;
1721 gst_value_serialize_fraction_range (const GValue * value)
1723 GValue *vals = (GValue *) value->data[0].v_pointer;
1727 retval = g_strdup ("[ 0/1, 0/1 ]");
1731 start = gst_value_serialize_fraction (&vals[0]);
1732 end = gst_value_serialize_fraction (&vals[1]);
1734 retval = g_strdup_printf ("[ %s, %s ]", start, end);
1743 gst_value_transform_fraction_range_string (const GValue * src_value,
1744 GValue * dest_value)
1746 dest_value->data[0].v_pointer =
1747 gst_value_serialize_fraction_range (src_value);
1751 gst_value_compare_fraction_range (const GValue * value1, const GValue * value2)
1753 GValue *vals1, *vals2;
1754 GstValueCompareFunc compare;
1756 if (value2->data[0].v_pointer == value1->data[0].v_pointer)
1757 return GST_VALUE_EQUAL; /* Only possible if both are NULL */
1759 if (value2->data[0].v_pointer == NULL || value1->data[0].v_pointer == NULL)
1760 return GST_VALUE_UNORDERED;
1762 vals1 = (GValue *) value1->data[0].v_pointer;
1763 vals2 = (GValue *) value2->data[0].v_pointer;
1764 if ((compare = gst_value_get_compare_func (&vals1[0]))) {
1765 if (gst_value_compare_with_func (&vals1[0], &vals2[0], compare) ==
1767 gst_value_compare_with_func (&vals1[1], &vals2[1], compare) ==
1769 return GST_VALUE_EQUAL;
1771 return GST_VALUE_UNORDERED;
1775 gst_value_deserialize_fraction_range (GValue * dest, const gchar * s)
1777 g_warning ("unimplemented");
1786 * gst_value_set_caps:
1787 * @value: a GValue initialized to GST_TYPE_CAPS
1788 * @caps: (transfer none): the caps to set the value to
1790 * Sets the contents of @value to @caps. A reference to the
1791 * provided @caps will be taken by the @value.
1794 gst_value_set_caps (GValue * value, const GstCaps * caps)
1796 g_return_if_fail (G_IS_VALUE (value));
1797 g_return_if_fail (G_VALUE_TYPE (value) == GST_TYPE_CAPS);
1798 g_return_if_fail (caps == NULL || GST_IS_CAPS (caps));
1800 g_value_set_boxed (value, caps);
1804 * gst_value_get_caps:
1805 * @value: a GValue initialized to GST_TYPE_CAPS
1807 * Gets the contents of @value. The reference count of the returned
1808 * #GstCaps will not be modified, therefore the caller must take one
1809 * before getting rid of the @value.
1811 * Returns: (transfer none): the contents of @value
1814 gst_value_get_caps (const GValue * value)
1816 g_return_val_if_fail (G_IS_VALUE (value), NULL);
1817 g_return_val_if_fail (G_VALUE_TYPE (value) == GST_TYPE_CAPS, NULL);
1819 return (GstCaps *) g_value_get_boxed (value);
1823 gst_value_serialize_caps (const GValue * value)
1825 GstCaps *caps = g_value_get_boxed (value);
1827 return gst_caps_to_string (caps);
1831 gst_value_deserialize_caps (GValue * dest, const gchar * s)
1835 caps = gst_caps_from_string (s);
1838 g_value_take_boxed (dest, caps);
1848 gst_value_serialize_segment (const GValue * value)
1850 GstSegment *seg = g_value_get_boxed (value);
1854 s = gst_structure_new ("GstSegment",
1855 "flags", GST_TYPE_SEGMENT_FLAGS, seg->flags,
1856 "rate", G_TYPE_DOUBLE, seg->rate,
1857 "applied-rate", G_TYPE_DOUBLE, seg->applied_rate,
1858 "format", GST_TYPE_FORMAT, seg->format,
1859 "base", G_TYPE_UINT64, seg->base,
1860 "start", G_TYPE_UINT64, seg->start,
1861 "stop", G_TYPE_UINT64, seg->stop,
1862 "time", G_TYPE_UINT64, seg->time,
1863 "position", G_TYPE_UINT64, seg->position,
1864 "duration", G_TYPE_UINT64, seg->duration, NULL);
1865 t = gst_structure_to_string (s);
1866 res = g_strdup_printf ("\"%s\"", t);
1868 gst_structure_free (s);
1874 gst_value_deserialize_segment (GValue * dest, const gchar * s)
1880 str = gst_structure_from_string (s, NULL);
1884 res = gst_structure_get (str,
1885 "flags", GST_TYPE_SEGMENT_FLAGS, &seg.flags,
1886 "rate", G_TYPE_DOUBLE, &seg.rate,
1887 "applied-rate", G_TYPE_DOUBLE, &seg.applied_rate,
1888 "format", GST_TYPE_FORMAT, &seg.format,
1889 "base", G_TYPE_UINT64, &seg.base,
1890 "start", G_TYPE_UINT64, &seg.start,
1891 "stop", G_TYPE_UINT64, &seg.stop,
1892 "time", G_TYPE_UINT64, &seg.time,
1893 "position", G_TYPE_UINT64, &seg.position,
1894 "duration", G_TYPE_UINT64, &seg.duration, NULL);
1895 gst_structure_free (str);
1898 g_value_set_boxed (dest, &seg);
1908 * gst_value_set_structure:
1909 * @value: a GValue initialized to GST_TYPE_STRUCTURE
1910 * @structure: the structure to set the value to
1912 * Sets the contents of @value to @structure. The actual
1917 gst_value_set_structure (GValue * value, const GstStructure * structure)
1919 g_return_if_fail (G_IS_VALUE (value));
1920 g_return_if_fail (G_VALUE_TYPE (value) == GST_TYPE_STRUCTURE);
1921 g_return_if_fail (structure == NULL || GST_IS_STRUCTURE (structure));
1923 g_value_set_boxed (value, structure);
1927 * gst_value_get_structure:
1928 * @value: a GValue initialized to GST_TYPE_STRUCTURE
1930 * Gets the contents of @value.
1932 * Returns: (transfer none): the contents of @value
1936 const GstStructure *
1937 gst_value_get_structure (const GValue * value)
1939 g_return_val_if_fail (G_IS_VALUE (value), NULL);
1940 g_return_val_if_fail (G_VALUE_TYPE (value) == GST_TYPE_STRUCTURE, NULL);
1942 return (GstStructure *) g_value_get_boxed (value);
1946 gst_value_serialize_structure (const GValue * value)
1948 GstStructure *structure = g_value_get_boxed (value);
1950 return gst_string_take_and_wrap (gst_structure_to_string (structure));
1954 gst_value_deserialize_structure (GValue * dest, const gchar * s)
1956 GstStructure *structure;
1959 structure = gst_structure_from_string (s, NULL);
1961 gchar *str = gst_string_unwrap (s);
1963 if (G_UNLIKELY (!str))
1966 structure = gst_structure_from_string (str, NULL);
1970 if (G_LIKELY (structure)) {
1971 g_value_take_boxed (dest, structure);
1982 compare_buffer (GstBuffer * buf1, GstBuffer * buf2)
1985 GstMapInfo info1, info2;
1989 return GST_VALUE_EQUAL;
1991 size1 = gst_buffer_get_size (buf1);
1992 size2 = gst_buffer_get_size (buf2);
1995 return GST_VALUE_UNORDERED;
1998 return GST_VALUE_EQUAL;
2000 if (!gst_buffer_map (buf1, &info1, GST_MAP_READ))
2001 return GST_VALUE_UNORDERED;
2003 if (!gst_buffer_map (buf2, &info2, GST_MAP_READ)) {
2004 gst_buffer_unmap (buf1, &info1);
2005 return GST_VALUE_UNORDERED;
2008 mret = memcmp (info1.data, info2.data, info1.size);
2010 result = GST_VALUE_EQUAL;
2012 result = GST_VALUE_LESS_THAN;
2014 result = GST_VALUE_GREATER_THAN;
2016 gst_buffer_unmap (buf1, &info1);
2017 gst_buffer_unmap (buf2, &info2);
2023 gst_value_compare_buffer (const GValue * value1, const GValue * value2)
2025 GstBuffer *buf1 = gst_value_get_buffer (value1);
2026 GstBuffer *buf2 = gst_value_get_buffer (value2);
2028 return compare_buffer (buf1, buf2);
2032 gst_value_serialize_buffer (const GValue * value)
2040 buffer = gst_value_get_buffer (value);
2044 if (!gst_buffer_map (buffer, &info, GST_MAP_READ))
2049 string = g_malloc (info.size * 2 + 1);
2050 for (i = 0; i < info.size; i++) {
2051 sprintf (string + i * 2, "%02x", data[i]);
2053 string[info.size * 2] = 0;
2055 gst_buffer_unmap (buffer, &info);
2061 gst_value_deserialize_buffer (GValue * dest, const gchar * s)
2074 buffer = gst_buffer_new_allocate (NULL, len / 2, NULL);
2075 if (!gst_buffer_map (buffer, &info, GST_MAP_WRITE))
2079 for (i = 0; i < len / 2; i++) {
2080 if (!isxdigit ((int) s[i * 2]) || !isxdigit ((int) s[i * 2 + 1]))
2083 ts[0] = s[i * 2 + 0];
2084 ts[1] = s[i * 2 + 1];
2087 data[i] = (guint8) strtoul (ts, NULL, 16);
2089 gst_buffer_unmap (buffer, &info);
2091 gst_value_take_buffer (dest, buffer);
2106 gst_buffer_unref (buffer);
2107 gst_buffer_unmap (buffer, &info);
2116 /* This function is mostly used for comparing image/buffer tags in taglists */
2118 gst_value_compare_sample (const GValue * value1, const GValue * value2)
2120 GstBuffer *buf1 = gst_sample_get_buffer (gst_value_get_sample (value1));
2121 GstBuffer *buf2 = gst_sample_get_buffer (gst_value_get_sample (value2));
2123 /* FIXME: should we take into account anything else such as caps? */
2124 return compare_buffer (buf1, buf2);
2132 gst_value_compare_boolean (const GValue * value1, const GValue * value2)
2134 if ((value1->data[0].v_int != 0) == (value2->data[0].v_int != 0))
2135 return GST_VALUE_EQUAL;
2136 return GST_VALUE_UNORDERED;
2140 gst_value_serialize_boolean (const GValue * value)
2142 if (value->data[0].v_int) {
2143 return g_strdup ("true");
2145 return g_strdup ("false");
2149 gst_value_deserialize_boolean (GValue * dest, const gchar * s)
2151 gboolean ret = FALSE;
2153 if (g_ascii_strcasecmp (s, "true") == 0 ||
2154 g_ascii_strcasecmp (s, "yes") == 0 ||
2155 g_ascii_strcasecmp (s, "t") == 0 || strcmp (s, "1") == 0) {
2156 g_value_set_boolean (dest, TRUE);
2158 } else if (g_ascii_strcasecmp (s, "false") == 0 ||
2159 g_ascii_strcasecmp (s, "no") == 0 ||
2160 g_ascii_strcasecmp (s, "f") == 0 || strcmp (s, "0") == 0) {
2161 g_value_set_boolean (dest, FALSE);
2168 #define CREATE_SERIALIZATION_START(_type,_macro) \
2170 gst_value_compare_ ## _type \
2171 (const GValue * value1, const GValue * value2) \
2173 g ## _type val1 = g_value_get_ ## _type (value1); \
2174 g ## _type val2 = g_value_get_ ## _type (value2); \
2176 return GST_VALUE_GREATER_THAN; \
2178 return GST_VALUE_LESS_THAN; \
2179 return GST_VALUE_EQUAL; \
2183 gst_value_serialize_ ## _type (const GValue * value) \
2185 GValue val = { 0, }; \
2186 g_value_init (&val, G_TYPE_STRING); \
2187 if (!g_value_transform (value, &val)) \
2188 g_assert_not_reached (); \
2189 /* NO_COPY_MADNESS!!! */ \
2190 return (char *) g_value_get_string (&val); \
2193 /* deserialize the given s into to as a gint64.
2194 * check if the result is actually storeable in the given size number of
2198 gst_value_deserialize_int_helper (gint64 * to, const gchar * s,
2199 gint64 min, gint64 max, gint size)
2201 gboolean ret = FALSE;
2206 *to = g_ascii_strtoull (s, &end, 0);
2207 /* a range error is a definitive no-no */
2208 if (errno == ERANGE) {
2215 if (g_ascii_strcasecmp (s, "little_endian") == 0) {
2216 *to = G_LITTLE_ENDIAN;
2218 } else if (g_ascii_strcasecmp (s, "big_endian") == 0) {
2221 } else if (g_ascii_strcasecmp (s, "byte_order") == 0) {
2224 } else if (g_ascii_strcasecmp (s, "min") == 0) {
2227 } else if (g_ascii_strcasecmp (s, "max") == 0) {
2233 /* by definition, a gint64 fits into a gint64; so ignore those */
2234 if (size != sizeof (mask)) {
2236 /* for positive numbers, we create a mask of 1's outside of the range
2237 * and 0's inside the range. An and will thus keep only 1 bits
2238 * outside of the range */
2239 mask <<= (size * 8);
2240 if ((mask & *to) != 0) {
2244 /* for negative numbers, we do a 2's complement version */
2245 mask <<= ((size * 8) - 1);
2246 if ((mask & *to) != mask) {
2255 #define CREATE_SERIALIZATION(_type,_macro) \
2256 CREATE_SERIALIZATION_START(_type,_macro) \
2259 gst_value_deserialize_ ## _type (GValue * dest, const gchar *s) \
2263 if (gst_value_deserialize_int_helper (&x, s, G_MIN ## _macro, \
2264 G_MAX ## _macro, sizeof (g ## _type))) { \
2265 g_value_set_ ## _type (dest, /*(g ## _type)*/ x); \
2272 #define CREATE_USERIALIZATION(_type,_macro) \
2273 CREATE_SERIALIZATION_START(_type,_macro) \
2276 gst_value_deserialize_ ## _type (GValue * dest, const gchar *s) \
2280 gboolean ret = FALSE; \
2283 x = g_ascii_strtoull (s, &end, 0); \
2284 /* a range error is a definitive no-no */ \
2285 if (errno == ERANGE) { \
2288 /* the cast ensures the range check later on makes sense */ \
2289 x = (g ## _type) x; \
2293 if (g_ascii_strcasecmp (s, "little_endian") == 0) { \
2294 x = G_LITTLE_ENDIAN; \
2296 } else if (g_ascii_strcasecmp (s, "big_endian") == 0) { \
2299 } else if (g_ascii_strcasecmp (s, "byte_order") == 0) { \
2302 } else if (g_ascii_strcasecmp (s, "min") == 0) { \
2305 } else if (g_ascii_strcasecmp (s, "max") == 0) { \
2306 x = G_MAX ## _macro; \
2311 if (x > G_MAX ## _macro) { \
2314 g_value_set_ ## _type (dest, x); \
2320 #define REGISTER_SERIALIZATION(_gtype, _type) \
2322 static const GstValueTable gst_value = { \
2324 gst_value_compare_ ## _type, \
2325 gst_value_serialize_ ## _type, \
2326 gst_value_deserialize_ ## _type, \
2329 gst_value_register (&gst_value); \
2332 CREATE_SERIALIZATION (int, INT);
2333 CREATE_SERIALIZATION (int64, INT64);
2334 CREATE_SERIALIZATION (long, LONG);
2336 CREATE_USERIALIZATION (uint, UINT);
2337 CREATE_USERIALIZATION (uint64, UINT64);
2338 CREATE_USERIALIZATION (ulong, ULONG);
2340 /* FIXME 0.11: remove this again, plugins shouldn't have uchar properties */
2342 #define G_MAXUCHAR 255
2344 CREATE_USERIALIZATION (uchar, UCHAR);
2350 gst_value_compare_double (const GValue * value1, const GValue * value2)
2352 if (value1->data[0].v_double > value2->data[0].v_double)
2353 return GST_VALUE_GREATER_THAN;
2354 if (value1->data[0].v_double < value2->data[0].v_double)
2355 return GST_VALUE_LESS_THAN;
2356 if (value1->data[0].v_double == value2->data[0].v_double)
2357 return GST_VALUE_EQUAL;
2358 return GST_VALUE_UNORDERED;
2362 gst_value_serialize_double (const GValue * value)
2364 gchar d[G_ASCII_DTOSTR_BUF_SIZE];
2366 g_ascii_dtostr (d, G_ASCII_DTOSTR_BUF_SIZE, value->data[0].v_double);
2367 return g_strdup (d);
2371 gst_value_deserialize_double (GValue * dest, const gchar * s)
2374 gboolean ret = FALSE;
2377 x = g_ascii_strtod (s, &end);
2381 if (g_ascii_strcasecmp (s, "min") == 0) {
2384 } else if (g_ascii_strcasecmp (s, "max") == 0) {
2390 g_value_set_double (dest, x);
2400 gst_value_compare_float (const GValue * value1, const GValue * value2)
2402 if (value1->data[0].v_float > value2->data[0].v_float)
2403 return GST_VALUE_GREATER_THAN;
2404 if (value1->data[0].v_float < value2->data[0].v_float)
2405 return GST_VALUE_LESS_THAN;
2406 if (value1->data[0].v_float == value2->data[0].v_float)
2407 return GST_VALUE_EQUAL;
2408 return GST_VALUE_UNORDERED;
2412 gst_value_serialize_float (const GValue * value)
2414 gchar d[G_ASCII_DTOSTR_BUF_SIZE];
2416 g_ascii_dtostr (d, G_ASCII_DTOSTR_BUF_SIZE, value->data[0].v_float);
2417 return g_strdup (d);
2421 gst_value_deserialize_float (GValue * dest, const gchar * s)
2424 gboolean ret = FALSE;
2427 x = g_ascii_strtod (s, &end);
2431 if (g_ascii_strcasecmp (s, "min") == 0) {
2434 } else if (g_ascii_strcasecmp (s, "max") == 0) {
2439 if (x > G_MAXFLOAT || x < -G_MAXFLOAT)
2442 g_value_set_float (dest, (float) x);
2452 gst_value_compare_string (const GValue * value1, const GValue * value2)
2454 if (G_UNLIKELY (!value1->data[0].v_pointer || !value2->data[0].v_pointer)) {
2455 /* if only one is NULL, no match - otherwise both NULL == EQUAL */
2456 if (value1->data[0].v_pointer != value2->data[0].v_pointer)
2457 return GST_VALUE_UNORDERED;
2459 gint x = strcmp (value1->data[0].v_pointer, value2->data[0].v_pointer);
2462 return GST_VALUE_LESS_THAN;
2464 return GST_VALUE_GREATER_THAN;
2467 return GST_VALUE_EQUAL;
2471 gst_string_measure_wrapping (const gchar * s)
2474 gboolean wrap = FALSE;
2476 if (G_UNLIKELY (s == NULL))
2479 /* Special case: the actual string NULL needs wrapping */
2480 if (G_UNLIKELY (strcmp (s, "NULL") == 0))
2485 if (GST_ASCII_IS_STRING (*s)) {
2487 } else if (*s < 0x20 || *s >= 0x7f) {
2497 /* Wrap the string if we found something that needs
2498 * wrapping, or the empty string (len == 0) */
2499 return (wrap || len == 0) ? len : -1;
2503 gst_string_wrap_inner (const gchar * s, gint len)
2507 e = d = g_malloc (len + 3);
2511 if (GST_ASCII_IS_STRING (*s)) {
2513 } else if (*s < 0x20 || *s >= 0x7f) {
2515 *e++ = '0' + ((*(guchar *) s) >> 6);
2516 *e++ = '0' + (((*s) >> 3) & 0x7);
2517 *e++ = '0' + ((*s++) & 0x7);
2526 g_assert (e - d <= len + 3);
2530 /* Do string wrapping/escaping */
2532 gst_string_wrap (const gchar * s)
2534 gint len = gst_string_measure_wrapping (s);
2536 if (G_LIKELY (len < 0))
2537 return g_strdup (s);
2539 return gst_string_wrap_inner (s, len);
2542 /* Same as above, but take ownership of the string */
2544 gst_string_take_and_wrap (gchar * s)
2547 gint len = gst_string_measure_wrapping (s);
2549 if (G_LIKELY (len < 0))
2552 out = gst_string_wrap_inner (s, len);
2559 * This function takes a string delimited with double quotes (")
2560 * and unescapes any \xxx octal numbers.
2562 * If sequences of \y are found where y is not in the range of
2563 * 0->3, y is copied unescaped.
2565 * If \xyy is found where x is an octal number but y is not, an
2566 * error is encountered and NULL is returned.
2568 * the input string must be \0 terminated.
2571 gst_string_unwrap (const gchar * s)
2574 gchar *read, *write;
2576 /* NULL string returns NULL */
2580 /* strings not starting with " are invalid */
2584 /* make copy of original string to hold the result. This
2585 * string will always be smaller than the original */
2590 /* need to move to the next position as we parsed the " */
2594 if (GST_ASCII_IS_STRING (*read)) {
2595 /* normal chars are just copied */
2597 } else if (*read == '"') {
2598 /* quote marks end of string */
2600 } else if (*read == '\\') {
2601 /* got an escape char, move to next position to read a tripplet
2602 * of octal numbers */
2604 /* is the next char a possible first octal number? */
2605 if (*read >= '0' && *read <= '3') {
2606 /* parse other 2 numbers, if one of them is not in the range of
2607 * an octal number, we error. We also catch the case where a zero
2608 * byte is found here. */
2609 if (read[1] < '0' || read[1] > '7' || read[2] < '0' || read[2] > '7')
2612 /* now convert the octal number to a byte again. */
2613 *write++ = ((read[0] - '0') << 6) +
2614 ((read[1] - '0') << 3) + (read[2] - '0');
2618 /* if we run into a \0 here, we definitely won't get a quote later */
2622 /* else copy \X sequence */
2626 /* weird character, error */
2630 /* if the string is not ending in " and zero terminated, we error */
2631 if (*read != '"' || read[1] != '\0')
2634 /* null terminate result string and return */
2644 gst_value_serialize_string (const GValue * value)
2646 return gst_string_wrap (value->data[0].v_pointer);
2650 gst_value_deserialize_string (GValue * dest, const gchar * s)
2652 if (G_UNLIKELY (strcmp (s, "NULL") == 0)) {
2653 g_value_set_string (dest, NULL);
2655 } else if (G_LIKELY (*s != '"')) {
2656 if (!g_utf8_validate (s, -1, NULL))
2658 g_value_set_string (dest, s);
2661 gchar *str = gst_string_unwrap (s);
2662 if (G_UNLIKELY (!str))
2664 g_value_take_string (dest, str);
2675 gst_value_compare_enum (const GValue * value1, const GValue * value2)
2677 GEnumValue *en1, *en2;
2678 GEnumClass *klass1 = (GEnumClass *) g_type_class_ref (G_VALUE_TYPE (value1));
2679 GEnumClass *klass2 = (GEnumClass *) g_type_class_ref (G_VALUE_TYPE (value2));
2681 g_return_val_if_fail (klass1, GST_VALUE_UNORDERED);
2682 g_return_val_if_fail (klass2, GST_VALUE_UNORDERED);
2683 en1 = g_enum_get_value (klass1, g_value_get_enum (value1));
2684 en2 = g_enum_get_value (klass2, g_value_get_enum (value2));
2685 g_type_class_unref (klass1);
2686 g_type_class_unref (klass2);
2687 g_return_val_if_fail (en1, GST_VALUE_UNORDERED);
2688 g_return_val_if_fail (en2, GST_VALUE_UNORDERED);
2689 if (en1->value < en2->value)
2690 return GST_VALUE_LESS_THAN;
2691 if (en1->value > en2->value)
2692 return GST_VALUE_GREATER_THAN;
2694 return GST_VALUE_EQUAL;
2698 gst_value_serialize_enum (const GValue * value)
2701 GEnumClass *klass = (GEnumClass *) g_type_class_ref (G_VALUE_TYPE (value));
2703 g_return_val_if_fail (klass, NULL);
2704 en = g_enum_get_value (klass, g_value_get_enum (value));
2705 g_type_class_unref (klass);
2707 /* might be one of the custom formats registered later */
2708 if (G_UNLIKELY (en == NULL && G_VALUE_TYPE (value) == GST_TYPE_FORMAT)) {
2709 const GstFormatDefinition *format_def;
2711 format_def = gst_format_get_details ((GstFormat) g_value_get_enum (value));
2712 g_return_val_if_fail (format_def != NULL, NULL);
2713 return g_strdup (format_def->description);
2716 g_return_val_if_fail (en, NULL);
2717 return g_strdup (en->value_name);
2721 gst_value_deserialize_enum_iter_cmp (const GValue * format_def_value,
2724 const GstFormatDefinition *format_def =
2725 g_value_get_pointer (format_def_value);
2727 if (g_ascii_strcasecmp (s, format_def->nick) == 0)
2730 return g_ascii_strcasecmp (s, format_def->description);
2734 gst_value_deserialize_enum (GValue * dest, const gchar * s)
2737 gchar *endptr = NULL;
2738 GEnumClass *klass = (GEnumClass *) g_type_class_ref (G_VALUE_TYPE (dest));
2740 g_return_val_if_fail (klass, FALSE);
2741 if (!(en = g_enum_get_value_by_name (klass, s))) {
2742 if (!(en = g_enum_get_value_by_nick (klass, s))) {
2743 gint i = strtol (s, &endptr, 0);
2745 if (endptr && *endptr == '\0') {
2746 en = g_enum_get_value (klass, i);
2750 g_type_class_unref (klass);
2752 /* might be one of the custom formats registered later */
2753 if (G_UNLIKELY (en == NULL && G_VALUE_TYPE (dest) == GST_TYPE_FORMAT)) {
2754 GValue res = { 0, };
2755 const GstFormatDefinition *format_def;
2759 iter = gst_format_iterate_definitions ();
2761 found = gst_iterator_find_custom (iter,
2762 (GCompareFunc) gst_value_deserialize_enum_iter_cmp, &res, (gpointer) s);
2764 g_return_val_if_fail (found, FALSE);
2765 format_def = g_value_get_pointer (&res);
2766 g_return_val_if_fail (format_def != NULL, FALSE);
2767 g_value_set_enum (dest, (gint) format_def->value);
2768 g_value_unset (&res);
2769 gst_iterator_free (iter);
2773 g_return_val_if_fail (en, FALSE);
2774 g_value_set_enum (dest, en->value);
2782 /* we just compare the value here */
2784 gst_value_compare_flags (const GValue * value1, const GValue * value2)
2787 GFlagsClass *klass1 =
2788 (GFlagsClass *) g_type_class_ref (G_VALUE_TYPE (value1));
2789 GFlagsClass *klass2 =
2790 (GFlagsClass *) g_type_class_ref (G_VALUE_TYPE (value2));
2792 g_return_val_if_fail (klass1, GST_VALUE_UNORDERED);
2793 g_return_val_if_fail (klass2, GST_VALUE_UNORDERED);
2794 fl1 = g_value_get_flags (value1);
2795 fl2 = g_value_get_flags (value2);
2796 g_type_class_unref (klass1);
2797 g_type_class_unref (klass2);
2799 return GST_VALUE_LESS_THAN;
2801 return GST_VALUE_GREATER_THAN;
2803 return GST_VALUE_EQUAL;
2806 /* the different flags are serialized separated with a + */
2808 gst_value_serialize_flags (const GValue * value)
2812 GFlagsClass *klass = (GFlagsClass *) g_type_class_ref (G_VALUE_TYPE (value));
2813 gchar *result, *tmp;
2814 gboolean first = TRUE;
2816 g_return_val_if_fail (klass, NULL);
2818 flags = g_value_get_flags (value);
2820 /* if no flags are set, try to serialize to the _NONE string */
2822 fl = g_flags_get_first_value (klass, flags);
2823 return g_strdup (fl->value_name);
2826 /* some flags are set, so serialize one by one */
2827 result = g_strdup ("");
2829 fl = g_flags_get_first_value (klass, flags);
2831 tmp = g_strconcat (result, (first ? "" : "+"), fl->value_name, NULL);
2837 flags &= ~fl->value;
2840 g_type_class_unref (klass);
2846 gst_value_deserialize_flags (GValue * dest, const gchar * s)
2849 gchar *endptr = NULL;
2850 GFlagsClass *klass = (GFlagsClass *) g_type_class_ref (G_VALUE_TYPE (dest));
2855 g_return_val_if_fail (klass, FALSE);
2857 /* split into parts delimited with + */
2858 split = g_strsplit (s, "+", 0);
2862 /* loop over each part */
2864 if (!(fl = g_flags_get_value_by_name (klass, split[i]))) {
2865 if (!(fl = g_flags_get_value_by_nick (klass, split[i]))) {
2866 gint val = strtol (split[i], &endptr, 0);
2868 /* just or numeric value */
2869 if (endptr && *endptr == '\0') {
2880 g_type_class_unref (klass);
2881 g_value_set_flags (dest, flags);
2891 gst_value_is_subset_int_range_int_range (const GValue * value1,
2892 const GValue * value2)
2896 g_return_val_if_fail (GST_VALUE_HOLDS_INT_RANGE (value1), FALSE);
2897 g_return_val_if_fail (GST_VALUE_HOLDS_INT_RANGE (value2), FALSE);
2899 if (INT_RANGE_MIN (value1) * INT_RANGE_STEP (value1) <
2900 INT_RANGE_MIN (value2) * INT_RANGE_STEP (value2))
2902 if (INT_RANGE_MAX (value1) * INT_RANGE_STEP (value1) >
2903 INT_RANGE_MAX (value2) * INT_RANGE_STEP (value2))
2906 if (INT_RANGE_MIN (value2) == INT_RANGE_MAX (value2)) {
2907 if ((INT_RANGE_MIN (value2) * INT_RANGE_STEP (value2)) %
2908 INT_RANGE_STEP (value1))
2914 gst_util_greatest_common_divisor (INT_RANGE_STEP (value1),
2915 INT_RANGE_STEP (value2));
2916 if (gcd != MIN (INT_RANGE_STEP (value1), INT_RANGE_STEP (value2)))
2923 gst_value_is_subset_int64_range_int64_range (const GValue * value1,
2924 const GValue * value2)
2928 g_return_val_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value1), FALSE);
2929 g_return_val_if_fail (GST_VALUE_HOLDS_INT64_RANGE (value2), FALSE);
2931 if (INT64_RANGE_MIN (value1) < INT64_RANGE_MIN (value2))
2933 if (INT64_RANGE_MAX (value1) > INT64_RANGE_MAX (value2))
2936 if (INT64_RANGE_MIN (value2) == INT64_RANGE_MAX (value2)) {
2937 if ((INT64_RANGE_MIN (value2) * INT64_RANGE_STEP (value2)) %
2938 INT64_RANGE_STEP (value1))
2944 gst_util_greatest_common_divisor_int64 (INT64_RANGE_STEP (value1),
2945 INT64_RANGE_STEP (value2));
2946 if (gcd != MIN (INT64_RANGE_STEP (value1), INT64_RANGE_STEP (value2)))
2953 * gst_value_is_subset:
2954 * @value1: a #GValue
2955 * @value2: a #GValue
2957 * Check that @value1 is a subset of @value2.
2959 * Return: %TRUE is @value1 is a subset of @value2
2962 gst_value_is_subset (const GValue * value1, const GValue * value2)
2964 /* special case for int/int64 ranges, since we cannot compute
2965 the difference for those when they have different steps,
2966 and it's actually a lot simpler to compute whether a range
2967 is a subset of another. */
2968 if (GST_VALUE_HOLDS_INT_RANGE (value1) && GST_VALUE_HOLDS_INT_RANGE (value2)) {
2969 return gst_value_is_subset_int_range_int_range (value1, value2);
2970 } else if (GST_VALUE_HOLDS_INT64_RANGE (value1)
2971 && GST_VALUE_HOLDS_INT64_RANGE (value2)) {
2972 return gst_value_is_subset_int64_range_int64_range (value1, value2);
2980 * -> 1 - [1,2] = empty
2984 * -> [1,2] - [1,3] = empty
2988 * -> {1,3} - {1,2} = 3
2991 * First caps subtraction needs to return a non-empty set, second
2992 * subtractions needs to give en empty set.
2993 * Both substractions are switched below, as it's faster that way.
2995 if (!gst_value_subtract (NULL, value1, value2)) {
2996 if (gst_value_subtract (NULL, value2, value1)) {
3008 gst_value_union_int_int_range (GValue * dest, const GValue * src1,
3009 const GValue * src2)
3011 gint v = src1->data[0].v_int;
3013 /* check if it's already in the range */
3014 if (INT_RANGE_MIN (src2) * INT_RANGE_STEP (src2) <= v &&
3015 INT_RANGE_MAX (src2) * INT_RANGE_STEP (src2) >= v &&
3016 v % INT_RANGE_STEP (src2) == 0) {
3018 gst_value_init_and_copy (dest, src2);
3022 /* check if it extends the range */
3023 if (v == (INT_RANGE_MIN (src2) - 1) * INT_RANGE_STEP (src2)) {
3025 gst_value_init_and_copy (dest, src2);
3026 --INT_RANGE_MIN (src2);
3030 if (v == (INT_RANGE_MAX (src2) + 1) * INT_RANGE_STEP (src2)) {
3032 gst_value_init_and_copy (dest, src2);
3033 ++INT_RANGE_MAX (src2);
3042 gst_value_union_int_range_int_range (GValue * dest, const GValue * src1,
3043 const GValue * src2)
3045 /* We can union in several special cases:
3046 1 - one is a subset of another
3047 2 - same step and not disjoint
3048 3 - different step, at least one with one value which matches a 'next' or 'previous'
3053 if (gst_value_is_subset_int_range_int_range (src1, src2)) {
3055 gst_value_init_and_copy (dest, src2);
3058 if (gst_value_is_subset_int_range_int_range (src2, src1)) {
3060 gst_value_init_and_copy (dest, src1);
3064 /* 2 - same step and not disjoint */
3065 if (INT_RANGE_STEP (src1) == INT_RANGE_STEP (src2)) {
3066 if ((INT_RANGE_MIN (src1) <= INT_RANGE_MAX (src2) + 1 &&
3067 INT_RANGE_MAX (src1) >= INT_RANGE_MIN (src2) - 1) ||
3068 (INT_RANGE_MIN (src2) <= INT_RANGE_MAX (src1) + 1 &&
3069 INT_RANGE_MAX (src2) >= INT_RANGE_MIN (src1) - 1)) {
3071 gint step = INT_RANGE_STEP (src1);
3072 gint min = step * MIN (INT_RANGE_MIN (src1), INT_RANGE_MIN (src2));
3073 gint max = step * MAX (INT_RANGE_MAX (src1), INT_RANGE_MAX (src2));
3074 g_value_init (dest, GST_TYPE_INT_RANGE);
3075 gst_value_set_int_range_step (dest, min, max, step);
3081 /* 3 - single value matches next or previous */
3082 if (INT_RANGE_STEP (src1) != INT_RANGE_STEP (src2)) {
3083 gint n1 = INT_RANGE_MAX (src1) - INT_RANGE_MIN (src1) + 1;
3084 gint n2 = INT_RANGE_MAX (src2) - INT_RANGE_MIN (src2) + 1;
3085 if (n1 == 1 || n2 == 1) {
3086 const GValue *range_value = NULL;
3090 scalar = INT_RANGE_MIN (src1) * INT_RANGE_STEP (src1);
3091 } else if (n2 == 1) {
3093 scalar = INT_RANGE_MIN (src2) * INT_RANGE_STEP (src2);
3097 (INT_RANGE_MIN (range_value) - 1) * INT_RANGE_STEP (range_value)) {
3099 gst_value_init_and_copy (dest, range_value);
3100 --INT_RANGE_MIN (range_value);
3103 } else if (scalar ==
3104 (INT_RANGE_MAX (range_value) + 1) * INT_RANGE_STEP (range_value)) {
3106 gst_value_init_and_copy (dest, range_value);
3107 ++INT_RANGE_MIN (range_value);
3114 /* If we get there, we did not find a way to make a union that can be
3115 represented with our simplistic model. */
3124 gst_value_intersect_int_int_range (GValue * dest, const GValue * src1,
3125 const GValue * src2)
3127 if (INT_RANGE_MIN (src2) * INT_RANGE_STEP (src2) <= src1->data[0].v_int &&
3128 INT_RANGE_MAX (src2) * INT_RANGE_STEP (src2) >= src1->data[0].v_int &&
3129 src1->data[0].v_int % INT_RANGE_STEP (src2) == 0) {
3131 gst_value_init_and_copy (dest, src1);
3139 gst_value_intersect_int_range_int_range (GValue * dest, const GValue * src1,
3140 const GValue * src2)
3147 INT_RANGE_STEP (src1) /
3148 gst_util_greatest_common_divisor (INT_RANGE_STEP (src1),
3149 INT_RANGE_STEP (src2));
3150 if (G_MAXINT32 / INT_RANGE_STEP (src2) < step)
3152 step *= INT_RANGE_STEP (src2);
3155 MAX (INT_RANGE_MIN (src1) * INT_RANGE_STEP (src1),
3156 INT_RANGE_MIN (src2) * INT_RANGE_STEP (src2));
3157 min = (min + step - 1) / step * step;
3159 MIN (INT_RANGE_MAX (src1) * INT_RANGE_STEP (src1),
3160 INT_RANGE_MAX (src2) * INT_RANGE_STEP (src2));
3161 max = max / step * step;
3165 g_value_init (dest, GST_TYPE_INT_RANGE);
3166 gst_value_set_int_range_step (dest, min, max, step);
3172 g_value_init (dest, G_TYPE_INT);
3173 g_value_set_int (dest, min);
3181 #define INT64_RANGE_MIN_VAL(v) (INT64_RANGE_MIN (v) * INT64_RANGE_STEP (v))
3182 #define INT64_RANGE_MAX_VAL(v) (INT64_RANGE_MAX (v) * INT64_RANGE_STEP (v))
3185 gst_value_intersect_int64_int64_range (GValue * dest, const GValue * src1,
3186 const GValue * src2)
3188 if (INT64_RANGE_MIN_VAL (src2) <= src1->data[0].v_int64 &&
3189 INT64_RANGE_MAX_VAL (src2) >= src1->data[0].v_int64 &&
3190 src1->data[0].v_int64 % INT64_RANGE_STEP (src2) == 0) {
3192 gst_value_init_and_copy (dest, src1);
3200 gst_value_intersect_int64_range_int64_range (GValue * dest, const GValue * src1,
3201 const GValue * src2)
3208 INT64_RANGE_STEP (src1) /
3209 gst_util_greatest_common_divisor_int64 (INT64_RANGE_STEP (src1),
3210 INT64_RANGE_STEP (src2));
3211 if (G_MAXINT64 / INT64_RANGE_STEP (src2) < step)
3213 step *= INT64_RANGE_STEP (src2);
3216 MAX (INT64_RANGE_MIN (src1) * INT64_RANGE_STEP (src1),
3217 INT64_RANGE_MIN (src2) * INT64_RANGE_STEP (src2));
3218 min = (min + step - 1) / step * step;
3220 MIN (INT64_RANGE_MAX (src1) * INT64_RANGE_STEP (src1),
3221 INT64_RANGE_MAX (src2) * INT64_RANGE_STEP (src2));
3222 max = max / step * step;
3226 g_value_init (dest, GST_TYPE_INT64_RANGE);
3227 gst_value_set_int64_range_step (dest, min, max, step);
3233 g_value_init (dest, G_TYPE_INT64);
3234 g_value_set_int64 (dest, min);
3243 gst_value_intersect_double_double_range (GValue * dest, const GValue * src1,
3244 const GValue * src2)
3246 if (src2->data[0].v_double <= src1->data[0].v_double &&
3247 src2->data[1].v_double >= src1->data[0].v_double) {
3249 gst_value_init_and_copy (dest, src1);
3257 gst_value_intersect_double_range_double_range (GValue * dest,
3258 const GValue * src1, const GValue * src2)
3263 min = MAX (src1->data[0].v_double, src2->data[0].v_double);
3264 max = MIN (src1->data[1].v_double, src2->data[1].v_double);
3268 g_value_init (dest, GST_TYPE_DOUBLE_RANGE);
3269 gst_value_set_double_range (dest, min, max);
3275 g_value_init (dest, G_TYPE_DOUBLE);
3276 g_value_set_int (dest, (int) min);
3285 gst_value_intersect_list (GValue * dest, const GValue * value1,
3286 const GValue * value2)
3289 GValue intersection = { 0, };
3290 gboolean ret = FALSE;
3292 size = VALUE_LIST_SIZE (value1);
3293 for (i = 0; i < size; i++) {
3294 const GValue *cur = VALUE_LIST_GET_VALUE (value1, i);
3296 /* quicker version when we don't need the resulting set */
3298 if (gst_value_intersect (NULL, cur, value2)) {
3305 if (gst_value_intersect (&intersection, cur, value2)) {
3308 gst_value_init_and_copy (dest, &intersection);
3310 } else if (GST_VALUE_HOLDS_LIST (dest)) {
3311 gst_value_list_append_value (dest, &intersection);
3313 GValue temp = { 0, };
3315 gst_value_init_and_copy (&temp, dest);
3316 g_value_unset (dest);
3317 gst_value_list_concat (dest, &temp, &intersection);
3318 g_value_unset (&temp);
3320 g_value_unset (&intersection);
3328 gst_value_intersect_array (GValue * dest, const GValue * src1,
3329 const GValue * src2)
3335 /* only works on similar-sized arrays */
3336 size = gst_value_array_get_size (src1);
3337 if (size != gst_value_array_get_size (src2))
3340 /* quicker value when we don't need the resulting set */
3342 for (n = 0; n < size; n++) {
3343 if (!gst_value_intersect (NULL, gst_value_array_get_value (src1, n),
3344 gst_value_array_get_value (src2, n))) {
3351 g_value_init (dest, GST_TYPE_ARRAY);
3353 for (n = 0; n < size; n++) {
3354 if (!gst_value_intersect (&val, gst_value_array_get_value (src1, n),
3355 gst_value_array_get_value (src2, n))) {
3356 g_value_unset (dest);
3359 gst_value_array_append_value (dest, &val);
3360 g_value_unset (&val);
3367 gst_value_intersect_fraction_fraction_range (GValue * dest, const GValue * src1,
3368 const GValue * src2)
3372 GstValueCompareFunc compare;
3374 vals = src2->data[0].v_pointer;
3379 if ((compare = gst_value_get_compare_func (src1))) {
3380 res1 = gst_value_compare_with_func (&vals[0], src1, compare);
3381 res2 = gst_value_compare_with_func (&vals[1], src1, compare);
3383 if ((res1 == GST_VALUE_EQUAL || res1 == GST_VALUE_LESS_THAN) &&
3384 (res2 == GST_VALUE_EQUAL || res2 == GST_VALUE_GREATER_THAN)) {
3386 gst_value_init_and_copy (dest, src1);
3395 gst_value_intersect_fraction_range_fraction_range (GValue * dest,
3396 const GValue * src1, const GValue * src2)
3401 GValue *vals1, *vals2;
3402 GstValueCompareFunc compare;
3404 vals1 = src1->data[0].v_pointer;
3405 vals2 = src2->data[0].v_pointer;
3406 g_return_val_if_fail (vals1 != NULL && vals2 != NULL, FALSE);
3408 if ((compare = gst_value_get_compare_func (&vals1[0]))) {
3409 /* min = MAX (src1.start, src2.start) */
3410 res = gst_value_compare_with_func (&vals1[0], &vals2[0], compare);
3411 g_return_val_if_fail (res != GST_VALUE_UNORDERED, FALSE);
3412 if (res == GST_VALUE_LESS_THAN)
3413 min = &vals2[0]; /* Take the max of the 2 */
3417 /* max = MIN (src1.end, src2.end) */
3418 res = gst_value_compare_with_func (&vals1[1], &vals2[1], compare);
3419 g_return_val_if_fail (res != GST_VALUE_UNORDERED, FALSE);
3420 if (res == GST_VALUE_GREATER_THAN)
3421 max = &vals2[1]; /* Take the min of the 2 */
3425 res = gst_value_compare_with_func (min, max, compare);
3426 g_return_val_if_fail (res != GST_VALUE_UNORDERED, FALSE);
3427 if (res == GST_VALUE_LESS_THAN) {
3429 g_value_init (dest, GST_TYPE_FRACTION_RANGE);
3430 vals1 = dest->data[0].v_pointer;
3431 g_value_copy (min, &vals1[0]);
3432 g_value_copy (max, &vals1[1]);
3436 if (res == GST_VALUE_EQUAL) {
3438 gst_value_init_and_copy (dest, min);
3451 gst_value_subtract_int_int_range (GValue * dest, const GValue * minuend,
3452 const GValue * subtrahend)
3454 gint min = gst_value_get_int_range_min (subtrahend);
3455 gint max = gst_value_get_int_range_max (subtrahend);
3456 gint step = gst_value_get_int_range_step (subtrahend);
3457 gint val = g_value_get_int (minuend);
3459 /* subtracting a range from an int only works if the int is not in the
3461 if (val < min || val > max || val % step) {
3462 /* and the result is the int */
3464 gst_value_init_and_copy (dest, minuend);
3470 /* creates a new int range based on input values.
3473 gst_value_create_new_range (GValue * dest, gint min1, gint max1, gint min2,
3474 gint max2, gint step)
3478 GValue *pv1, *pv2; /* yeah, hungarian! */
3480 g_return_val_if_fail (step > 0, FALSE);
3481 g_return_val_if_fail (min1 % step == 0, FALSE);
3482 g_return_val_if_fail (max1 % step == 0, FALSE);
3483 g_return_val_if_fail (min2 % step == 0, FALSE);
3484 g_return_val_if_fail (max2 % step == 0, FALSE);
3486 if (min1 <= max1 && min2 <= max2) {
3489 } else if (min1 <= max1) {
3492 } else if (min2 <= max2) {
3503 g_value_init (pv1, GST_TYPE_INT_RANGE);
3504 gst_value_set_int_range_step (pv1, min1, max1, step);
3505 } else if (min1 == max1) {
3506 g_value_init (pv1, G_TYPE_INT);
3507 g_value_set_int (pv1, min1);
3510 g_value_init (pv2, GST_TYPE_INT_RANGE);
3511 gst_value_set_int_range_step (pv2, min2, max2, step);
3512 } else if (min2 == max2) {
3513 g_value_init (pv2, G_TYPE_INT);
3514 g_value_set_int (pv2, min2);
3517 if (min1 <= max1 && min2 <= max2) {
3518 gst_value_list_concat (dest, pv1, pv2);
3519 g_value_unset (pv1);
3520 g_value_unset (pv2);
3526 gst_value_subtract_int_range_int (GValue * dest, const GValue * minuend,
3527 const GValue * subtrahend)
3529 gint min = gst_value_get_int_range_min (minuend);
3530 gint max = gst_value_get_int_range_max (minuend);
3531 gint step = gst_value_get_int_range_step (minuend);
3532 gint val = g_value_get_int (subtrahend);
3534 g_return_val_if_fail (min < max, FALSE);
3536 /* value is outside of the range, return range unchanged */
3537 if (val < min || val > max || val % step) {
3539 gst_value_init_and_copy (dest, minuend);
3542 /* max must be MAXINT too as val <= max */
3543 if (val >= G_MAXINT - step + 1) {
3547 /* min must be MININT too as val >= max */
3548 if (val <= G_MININT + step - 1) {
3553 gst_value_create_new_range (dest, min, val - step, val + step, max, step);
3559 gst_value_subtract_int_range_int_range (GValue * dest, const GValue * minuend,
3560 const GValue * subtrahend)
3562 gint min1 = gst_value_get_int_range_min (minuend);
3563 gint max1 = gst_value_get_int_range_max (minuend);
3564 gint step1 = gst_value_get_int_range_step (minuend);
3565 gint min2 = gst_value_get_int_range_min (subtrahend);
3566 gint max2 = gst_value_get_int_range_max (subtrahend);
3567 gint step2 = gst_value_get_int_range_step (subtrahend);
3570 if (step1 != step2) {
3577 if (max2 >= max1 && min2 <= min1) {
3579 } else if (max2 >= max1) {
3580 return gst_value_create_new_range (dest, min1, MIN (min2 - step, max1),
3582 } else if (min2 <= min1) {
3583 return gst_value_create_new_range (dest, MAX (max2 + step, min1), max1,
3586 return gst_value_create_new_range (dest, min1, MIN (min2 - step, max1),
3587 MAX (max2 + step, min1), max1, step);
3592 gst_value_subtract_int64_int64_range (GValue * dest, const GValue * minuend,
3593 const GValue * subtrahend)
3595 gint64 min = gst_value_get_int64_range_min (subtrahend);
3596 gint64 max = gst_value_get_int64_range_max (subtrahend);
3597 gint64 step = gst_value_get_int64_range_step (subtrahend);
3598 gint64 val = g_value_get_int64 (minuend);
3600 /* subtracting a range from an int64 only works if the int64 is not in the
3602 if (val < min || val > max || val % step) {
3603 /* and the result is the int64 */
3605 gst_value_init_and_copy (dest, minuend);
3611 /* creates a new int64 range based on input values.
3614 gst_value_create_new_int64_range (GValue * dest, gint64 min1, gint64 max1,
3615 gint64 min2, gint64 max2, gint64 step)
3619 GValue *pv1, *pv2; /* yeah, hungarian! */
3621 g_return_val_if_fail (step > 0, FALSE);
3622 g_return_val_if_fail (min1 % step == 0, FALSE);
3623 g_return_val_if_fail (max1 % step == 0, FALSE);
3624 g_return_val_if_fail (min2 % step == 0, FALSE);
3625 g_return_val_if_fail (max2 % step == 0, FALSE);
3627 if (min1 <= max1 && min2 <= max2) {
3630 } else if (min1 <= max1) {
3633 } else if (min2 <= max2) {
3644 g_value_init (pv1, GST_TYPE_INT64_RANGE);
3645 gst_value_set_int64_range_step (pv1, min1, max1, step);
3646 } else if (min1 == max1) {
3647 g_value_init (pv1, G_TYPE_INT64);
3648 g_value_set_int64 (pv1, min1);
3651 g_value_init (pv2, GST_TYPE_INT64_RANGE);
3652 gst_value_set_int64_range_step (pv2, min2, max2, step);
3653 } else if (min2 == max2) {
3654 g_value_init (pv2, G_TYPE_INT64);
3655 g_value_set_int64 (pv2, min2);
3658 if (min1 <= max1 && min2 <= max2) {
3659 gst_value_list_concat (dest, pv1, pv2);
3660 g_value_unset (pv1);
3661 g_value_unset (pv2);
3667 gst_value_subtract_int64_range_int64 (GValue * dest, const GValue * minuend,
3668 const GValue * subtrahend)
3670 gint64 min = gst_value_get_int64_range_min (minuend);
3671 gint64 max = gst_value_get_int64_range_max (minuend);
3672 gint64 step = gst_value_get_int64_range_step (minuend);
3673 gint64 val = g_value_get_int64 (subtrahend);
3675 g_return_val_if_fail (min < max, FALSE);
3677 /* value is outside of the range, return range unchanged */
3678 if (val < min || val > max || val % step) {
3680 gst_value_init_and_copy (dest, minuend);
3683 /* max must be MAXINT64 too as val <= max */
3684 if (val >= G_MAXINT64 - step + 1) {
3688 /* min must be MININT64 too as val >= max */
3689 if (val <= G_MININT64 + step - 1) {
3694 gst_value_create_new_int64_range (dest, min, val - step, val + step, max,
3701 gst_value_subtract_int64_range_int64_range (GValue * dest,
3702 const GValue * minuend, const GValue * subtrahend)
3704 gint64 min1 = gst_value_get_int64_range_min (minuend);
3705 gint64 max1 = gst_value_get_int64_range_max (minuend);
3706 gint64 step1 = gst_value_get_int64_range_step (minuend);
3707 gint64 min2 = gst_value_get_int64_range_min (subtrahend);
3708 gint64 max2 = gst_value_get_int64_range_max (subtrahend);
3709 gint64 step2 = gst_value_get_int64_range_step (subtrahend);
3712 if (step1 != step2) {
3719 if (max2 >= max1 && min2 <= min1) {
3721 } else if (max2 >= max1) {
3722 return gst_value_create_new_int64_range (dest, min1, MIN (min2 - step,
3723 max1), step, 0, step);
3724 } else if (min2 <= min1) {
3725 return gst_value_create_new_int64_range (dest, MAX (max2 + step, min1),
3726 max1, step, 0, step);
3728 return gst_value_create_new_int64_range (dest, min1, MIN (min2 - step,
3729 max1), MAX (max2 + step, min1), max1, step);
3734 gst_value_subtract_double_double_range (GValue * dest, const GValue * minuend,
3735 const GValue * subtrahend)
3737 gdouble min = gst_value_get_double_range_min (subtrahend);
3738 gdouble max = gst_value_get_double_range_max (subtrahend);
3739 gdouble val = g_value_get_double (minuend);
3741 if (val < min || val > max) {
3743 gst_value_init_and_copy (dest, minuend);
3750 gst_value_subtract_double_range_double (GValue * dest, const GValue * minuend,
3751 const GValue * subtrahend)
3753 /* since we don't have open ranges, we cannot create a hole in
3754 * a double range. We return the original range */
3756 gst_value_init_and_copy (dest, minuend);
3761 gst_value_subtract_double_range_double_range (GValue * dest,
3762 const GValue * minuend, const GValue * subtrahend)
3764 /* since we don't have open ranges, we have to approximate */
3765 /* done like with ints */
3766 gdouble min1 = gst_value_get_double_range_min (minuend);
3767 gdouble max2 = gst_value_get_double_range_max (minuend);
3768 gdouble max1 = MIN (gst_value_get_double_range_min (subtrahend), max2);
3769 gdouble min2 = MAX (gst_value_get_double_range_max (subtrahend), min1);
3772 GValue *pv1, *pv2; /* yeah, hungarian! */
3774 if (min1 < max1 && min2 < max2) {
3777 } else if (min1 < max1) {
3780 } else if (min2 < max2) {
3791 g_value_init (pv1, GST_TYPE_DOUBLE_RANGE);
3792 gst_value_set_double_range (pv1, min1, max1);
3795 g_value_init (pv2, GST_TYPE_DOUBLE_RANGE);
3796 gst_value_set_double_range (pv2, min2, max2);
3799 if (min1 < max1 && min2 < max2) {
3800 gst_value_list_concat (dest, pv1, pv2);
3801 g_value_unset (pv1);
3802 g_value_unset (pv2);
3808 gst_value_subtract_from_list (GValue * dest, const GValue * minuend,
3809 const GValue * subtrahend)
3812 GValue subtraction = { 0, };
3813 gboolean ret = FALSE;
3816 ltype = gst_value_list_get_type ();
3818 size = VALUE_LIST_SIZE (minuend);
3819 for (i = 0; i < size; i++) {
3820 const GValue *cur = VALUE_LIST_GET_VALUE (minuend, i);
3822 /* quicker version when we can discard the result */
3824 if (gst_value_subtract (NULL, cur, subtrahend)) {
3831 if (gst_value_subtract (&subtraction, cur, subtrahend)) {
3833 gst_value_init_and_copy (dest, &subtraction);
3835 } else if (G_VALUE_HOLDS (dest, ltype)
3836 && !G_VALUE_HOLDS (&subtraction, ltype)) {
3837 gst_value_list_append_value (dest, &subtraction);
3839 GValue temp = { 0, };
3841 gst_value_init_and_copy (&temp, dest);
3842 g_value_unset (dest);
3843 gst_value_list_concat (dest, &temp, &subtraction);
3844 g_value_unset (&temp);
3846 g_value_unset (&subtraction);
3853 gst_value_subtract_list (GValue * dest, const GValue * minuend,
3854 const GValue * subtrahend)
3857 GValue data[2] = { {0,}, {0,} };
3858 GValue *subtraction = &data[0], *result = &data[1];
3860 gst_value_init_and_copy (result, minuend);
3861 size = VALUE_LIST_SIZE (subtrahend);
3862 for (i = 0; i < size; i++) {
3863 const GValue *cur = VALUE_LIST_GET_VALUE (subtrahend, i);
3865 if (gst_value_subtract (subtraction, result, cur)) {
3866 GValue *temp = result;
3868 result = subtraction;
3870 g_value_unset (subtraction);
3872 g_value_unset (result);
3877 gst_value_init_and_copy (dest, result);
3878 g_value_unset (result);
3883 gst_value_subtract_fraction_fraction_range (GValue * dest,
3884 const GValue * minuend, const GValue * subtrahend)
3886 const GValue *min = gst_value_get_fraction_range_min (subtrahend);
3887 const GValue *max = gst_value_get_fraction_range_max (subtrahend);
3888 GstValueCompareFunc compare;
3890 if ((compare = gst_value_get_compare_func (minuend))) {
3891 /* subtracting a range from an fraction only works if the fraction
3892 * is not in the range */
3893 if (gst_value_compare_with_func (minuend, min, compare) ==
3894 GST_VALUE_LESS_THAN ||
3895 gst_value_compare_with_func (minuend, max, compare) ==
3896 GST_VALUE_GREATER_THAN) {
3897 /* and the result is the value */
3899 gst_value_init_and_copy (dest, minuend);
3907 gst_value_subtract_fraction_range_fraction (GValue * dest,
3908 const GValue * minuend, const GValue * subtrahend)
3910 /* since we don't have open ranges, we cannot create a hole in
3911 * a range. We return the original range */
3913 gst_value_init_and_copy (dest, minuend);
3918 gst_value_subtract_fraction_range_fraction_range (GValue * dest,
3919 const GValue * minuend, const GValue * subtrahend)
3921 /* since we don't have open ranges, we have to approximate */
3922 /* done like with ints and doubles. Creates a list of 2 fraction ranges */
3923 const GValue *min1 = gst_value_get_fraction_range_min (minuend);
3924 const GValue *max2 = gst_value_get_fraction_range_max (minuend);
3925 const GValue *max1 = gst_value_get_fraction_range_min (subtrahend);
3926 const GValue *min2 = gst_value_get_fraction_range_max (subtrahend);
3930 GValue *pv1, *pv2; /* yeah, hungarian! */
3931 GstValueCompareFunc compare;
3933 g_return_val_if_fail (min1 != NULL && max1 != NULL, FALSE);
3934 g_return_val_if_fail (min2 != NULL && max2 != NULL, FALSE);
3936 compare = gst_value_get_compare_func (min1);
3937 g_return_val_if_fail (compare, FALSE);
3939 cmp1 = gst_value_compare_with_func (max2, max1, compare);
3940 g_return_val_if_fail (cmp1 != GST_VALUE_UNORDERED, FALSE);
3941 if (cmp1 == GST_VALUE_LESS_THAN)
3943 cmp1 = gst_value_compare_with_func (min1, min2, compare);
3944 g_return_val_if_fail (cmp1 != GST_VALUE_UNORDERED, FALSE);
3945 if (cmp1 == GST_VALUE_GREATER_THAN)
3948 cmp1 = gst_value_compare_with_func (min1, max1, compare);
3949 cmp2 = gst_value_compare_with_func (min2, max2, compare);
3951 if (cmp1 == GST_VALUE_LESS_THAN && cmp2 == GST_VALUE_LESS_THAN) {
3954 } else if (cmp1 == GST_VALUE_LESS_THAN) {
3957 } else if (cmp2 == GST_VALUE_LESS_THAN) {
3967 if (cmp1 == GST_VALUE_LESS_THAN) {
3968 g_value_init (pv1, GST_TYPE_FRACTION_RANGE);
3969 gst_value_set_fraction_range (pv1, min1, max1);
3971 if (cmp2 == GST_VALUE_LESS_THAN) {
3972 g_value_init (pv2, GST_TYPE_FRACTION_RANGE);
3973 gst_value_set_fraction_range (pv2, min2, max2);
3976 if (cmp1 == GST_VALUE_LESS_THAN && cmp2 == GST_VALUE_LESS_THAN) {
3977 gst_value_list_concat (dest, pv1, pv2);
3978 g_value_unset (pv1);
3979 g_value_unset (pv2);
3990 * gst_value_get_compare_func:
3991 * @value1: a value to get the compare function for
3993 * Determines the compare function to be used with values of the same type as
3994 * @value1. The function can be given to gst_value_compare_with_func().
3996 * Returns: A #GstValueCompareFunc value
3998 static GstValueCompareFunc
3999 gst_value_get_compare_func (const GValue * value1)
4001 GstValueTable *table, *best = NULL;
4005 type1 = G_VALUE_TYPE (value1);
4007 /* this is a fast check */
4008 best = gst_value_hash_lookup_type (type1);
4011 if (G_UNLIKELY (!best || !best->compare)) {
4012 guint len = gst_value_table->len;
4015 for (i = 0; i < len; i++) {
4016 table = &g_array_index (gst_value_table, GstValueTable, i);
4017 if (table->compare && g_type_is_a (type1, table->type)) {
4018 if (!best || g_type_is_a (table->type, best->type))
4023 if (G_LIKELY (best))
4024 return best->compare;
4030 * gst_value_can_compare:
4031 * @value1: a value to compare
4032 * @value2: another value to compare
4034 * Determines if @value1 and @value2 can be compared.
4036 * Returns: TRUE if the values can be compared
4039 gst_value_can_compare (const GValue * value1, const GValue * value2)
4041 g_return_val_if_fail (G_IS_VALUE (value1), FALSE);
4042 g_return_val_if_fail (G_IS_VALUE (value2), FALSE);
4044 if (G_VALUE_TYPE (value1) != G_VALUE_TYPE (value2))
4047 return gst_value_get_compare_func (value1) != NULL;
4051 gst_value_list_equals_range (const GValue * list, const GValue * value)
4053 const GValue *first;
4056 g_return_val_if_fail (G_IS_VALUE (list), FALSE);
4057 g_return_val_if_fail (G_IS_VALUE (value), FALSE);
4058 g_return_val_if_fail (GST_VALUE_HOLDS_LIST (list), FALSE);
4060 /* TODO: compare against an empty list ? No type though... */
4061 list_size = VALUE_LIST_SIZE (list);
4065 /* compare the basic types - they have to match */
4066 first = VALUE_LIST_GET_VALUE (list, 0);
4067 #define CHECK_TYPES(type,prefix) \
4068 (prefix##_VALUE_HOLDS_##type(first) && GST_VALUE_HOLDS_##type##_RANGE (value))
4069 if (CHECK_TYPES (INT, G)) {
4070 const gint rmin = gst_value_get_int_range_min (value);
4071 const gint rmax = gst_value_get_int_range_max (value);
4072 const gint rstep = gst_value_get_int_range_step (value);
4073 /* note: this will overflow for min 0 and max INT_MAX, but this
4074 would only be equal to a list of INT_MAX elements, which seems
4076 if (list_size != rmax / rstep - rmin / rstep + 1)
4078 for (n = 0; n < list_size; ++n) {
4079 gint v = g_value_get_int (VALUE_LIST_GET_VALUE (list, n));
4080 if (v < rmin || v > rmax || v % rstep) {
4085 } else if (CHECK_TYPES (INT64, G)) {
4086 const gint64 rmin = gst_value_get_int64_range_min (value);
4087 const gint64 rmax = gst_value_get_int64_range_max (value);
4088 const gint64 rstep = gst_value_get_int64_range_step (value);
4089 GST_DEBUG ("List/range of int64s");
4090 if (list_size != rmax / rstep - rmin / rstep + 1)
4092 for (n = 0; n < list_size; ++n) {
4093 gint64 v = g_value_get_int64 (VALUE_LIST_GET_VALUE (list, n));
4094 if (v < rmin || v > rmax || v % rstep)
4101 /* other combinations don't make sense for equality */
4106 * gst_value_compare:
4107 * @value1: a value to compare
4108 * @value2: another value to compare
4110 * Compares @value1 and @value2. If @value1 and @value2 cannot be
4111 * compared, the function returns GST_VALUE_UNORDERED. Otherwise,
4112 * if @value1 is greater than @value2, GST_VALUE_GREATER_THAN is returned.
4113 * If @value1 is less than @value2, GST_VALUE_LESS_THAN is returned.
4114 * If the values are equal, GST_VALUE_EQUAL is returned.
4116 * Returns: comparison result
4119 gst_value_compare (const GValue * value1, const GValue * value2)
4121 GstValueCompareFunc compare;
4124 g_return_val_if_fail (G_IS_VALUE (value1), GST_VALUE_LESS_THAN);
4125 g_return_val_if_fail (G_IS_VALUE (value2), GST_VALUE_GREATER_THAN);
4127 /* Special cases: lists and scalar values ("{ 1 }" and "1" are equal),
4128 as well as lists and ranges ("{ 1, 2 }" and "[ 1, 2 ]" are equal) */
4129 ltype = gst_value_list_get_type ();
4130 if (G_VALUE_HOLDS (value1, ltype) && !G_VALUE_HOLDS (value2, ltype)) {
4132 if (gst_value_list_equals_range (value1, value2)) {
4133 return GST_VALUE_EQUAL;
4134 } else if (gst_value_list_get_size (value1) == 1) {
4137 elt = gst_value_list_get_value (value1, 0);
4138 return gst_value_compare (elt, value2);
4140 } else if (G_VALUE_HOLDS (value2, ltype) && !G_VALUE_HOLDS (value1, ltype)) {
4141 if (gst_value_list_equals_range (value2, value1)) {
4142 return GST_VALUE_EQUAL;
4143 } else if (gst_value_list_get_size (value2) == 1) {
4146 elt = gst_value_list_get_value (value2, 0);
4147 return gst_value_compare (elt, value1);
4151 if (G_VALUE_TYPE (value1) != G_VALUE_TYPE (value2))
4152 return GST_VALUE_UNORDERED;
4154 compare = gst_value_get_compare_func (value1);
4156 return compare (value1, value2);
4159 g_critical ("unable to compare values of type %s\n",
4160 g_type_name (G_VALUE_TYPE (value1)));
4161 return GST_VALUE_UNORDERED;
4165 * gst_value_compare_with_func:
4166 * @value1: a value to compare
4167 * @value2: another value to compare
4168 * @compare: compare function
4170 * Compares @value1 and @value2 using the @compare function. Works like
4171 * gst_value_compare() but allows to save time determining the compare function
4174 * Returns: comparison result
4177 gst_value_compare_with_func (const GValue * value1, const GValue * value2,
4178 GstValueCompareFunc compare)
4182 if (G_VALUE_TYPE (value1) != G_VALUE_TYPE (value2))
4183 return GST_VALUE_UNORDERED;
4185 return compare (value1, value2);
4191 * gst_value_can_union:
4192 * @value1: a value to union
4193 * @value2: another value to union
4195 * Determines if @value1 and @value2 can be non-trivially unioned.
4196 * Any two values can be trivially unioned by adding both of them
4197 * to a GstValueList. However, certain types have the possibility
4198 * to be unioned in a simpler way. For example, an integer range
4199 * and an integer can be unioned if the integer is a subset of the
4200 * integer range. If there is the possibility that two values can
4201 * be unioned, this function returns TRUE.
4203 * Returns: TRUE if there is a function allowing the two values to
4207 gst_value_can_union (const GValue * value1, const GValue * value2)
4209 GstValueUnionInfo *union_info;
4212 g_return_val_if_fail (G_IS_VALUE (value1), FALSE);
4213 g_return_val_if_fail (G_IS_VALUE (value2), FALSE);
4215 len = gst_value_union_funcs->len;
4217 for (i = 0; i < len; i++) {
4218 union_info = &g_array_index (gst_value_union_funcs, GstValueUnionInfo, i);
4219 if (union_info->type1 == G_VALUE_TYPE (value1) &&
4220 union_info->type2 == G_VALUE_TYPE (value2))
4222 if (union_info->type1 == G_VALUE_TYPE (value2) &&
4223 union_info->type2 == G_VALUE_TYPE (value1))
4232 * @dest: (out caller-allocates): the destination value
4233 * @value1: a value to union
4234 * @value2: another value to union
4236 * Creates a GValue corresponding to the union of @value1 and @value2.
4238 * Returns: TRUE if the union suceeded.
4241 gst_value_union (GValue * dest, const GValue * value1, const GValue * value2)
4243 const GstValueUnionInfo *union_info;
4247 g_return_val_if_fail (dest != NULL, FALSE);
4248 g_return_val_if_fail (G_IS_VALUE (value1), FALSE);
4249 g_return_val_if_fail (G_IS_VALUE (value2), FALSE);
4250 g_return_val_if_fail (gst_value_list_or_array_are_compatible (value1, value2),
4253 len = gst_value_union_funcs->len;
4254 type1 = G_VALUE_TYPE (value1);
4255 type2 = G_VALUE_TYPE (value2);
4257 for (i = 0; i < len; i++) {
4258 union_info = &g_array_index (gst_value_union_funcs, GstValueUnionInfo, i);
4259 if (union_info->type1 == type1 && union_info->type2 == type2) {
4260 return union_info->func (dest, value1, value2);
4262 if (union_info->type1 == type2 && union_info->type2 == type1) {
4263 return union_info->func (dest, value2, value1);
4267 gst_value_list_concat (dest, value1, value2);
4271 /* gst_value_register_union_func: (skip)
4272 * @type1: a type to union
4273 * @type2: another type to union
4274 * @func: a function that implements creating a union between the two types
4276 * Registers a union function that can create a union between #GValue items
4277 * of the type @type1 and @type2.
4279 * Union functions should be registered at startup before any pipelines are
4280 * started, as gst_value_register_union_func() is not thread-safe and cannot
4281 * be used at the same time as gst_value_union() or gst_value_can_union().
4284 gst_value_register_union_func (GType type1, GType type2, GstValueUnionFunc func)
4286 GstValueUnionInfo union_info;
4288 union_info.type1 = type1;
4289 union_info.type2 = type2;
4290 union_info.func = func;
4292 g_array_append_val (gst_value_union_funcs, union_info);
4298 * gst_value_can_intersect:
4299 * @value1: a value to intersect
4300 * @value2: another value to intersect
4302 * Determines if intersecting two values will produce a valid result.
4303 * Two values will produce a valid intersection if they have the same
4304 * type, or if there is a method (registered by
4305 * gst_value_register_intersect_func()) to calculate the intersection.
4307 * Returns: TRUE if the values can intersect
4310 gst_value_can_intersect (const GValue * value1, const GValue * value2)
4312 GstValueIntersectInfo *intersect_info;
4314 GType ltype, type1, type2;
4316 g_return_val_if_fail (G_IS_VALUE (value1), FALSE);
4317 g_return_val_if_fail (G_IS_VALUE (value2), FALSE);
4319 ltype = gst_value_list_get_type ();
4322 if (G_VALUE_HOLDS (value1, ltype) || G_VALUE_HOLDS (value2, ltype))
4325 type1 = G_VALUE_TYPE (value1);
4326 type2 = G_VALUE_TYPE (value2);
4328 /* practically all GstValue types have a compare function (_can_compare=TRUE)
4329 * GstStructure and GstCaps have npot, but are intersectable */
4333 /* check registered intersect functions */
4334 len = gst_value_intersect_funcs->len;
4335 for (i = 0; i < len; i++) {
4336 intersect_info = &g_array_index (gst_value_intersect_funcs,
4337 GstValueIntersectInfo, i);
4338 if ((intersect_info->type1 == type1 && intersect_info->type2 == type2) ||
4339 (intersect_info->type1 == type2 && intersect_info->type2 == type1))
4343 return gst_value_can_compare (value1, value2);
4347 * gst_value_intersect:
4348 * @dest: (out caller-allocates) (transfer full): a uninitialized #GValue that will hold the calculated
4349 * intersection value. May be NULL if the resulting set if not needed.
4350 * @value1: a value to intersect
4351 * @value2: another value to intersect
4353 * Calculates the intersection of two values. If the values have
4354 * a non-empty intersection, the value representing the intersection
4355 * is placed in @dest, unless NULL. If the intersection is non-empty,
4356 * @dest is not modified.
4358 * Returns: TRUE if the intersection is non-empty
4361 gst_value_intersect (GValue * dest, const GValue * value1,
4362 const GValue * value2)
4364 GstValueIntersectInfo *intersect_info;
4366 GType ltype, type1, type2;
4368 g_return_val_if_fail (G_IS_VALUE (value1), FALSE);
4369 g_return_val_if_fail (G_IS_VALUE (value2), FALSE);
4371 ltype = gst_value_list_get_type ();
4373 /* special cases first */
4374 if (G_VALUE_HOLDS (value1, ltype))
4375 return gst_value_intersect_list (dest, value1, value2);
4376 if (G_VALUE_HOLDS (value2, ltype))
4377 return gst_value_intersect_list (dest, value2, value1);
4379 if (gst_value_compare (value1, value2) == GST_VALUE_EQUAL) {
4381 gst_value_init_and_copy (dest, value1);
4385 type1 = G_VALUE_TYPE (value1);
4386 type2 = G_VALUE_TYPE (value2);
4388 len = gst_value_intersect_funcs->len;
4389 for (i = 0; i < len; i++) {
4390 intersect_info = &g_array_index (gst_value_intersect_funcs,
4391 GstValueIntersectInfo, i);
4392 if (intersect_info->type1 == type1 && intersect_info->type2 == type2) {
4393 return intersect_info->func (dest, value1, value2);
4395 if (intersect_info->type1 == type2 && intersect_info->type2 == type1) {
4396 return intersect_info->func (dest, value2, value1);
4404 /* gst_value_register_intersect_func: (skip)
4405 * @type1: the first type to intersect
4406 * @type2: the second type to intersect
4407 * @func: the intersection function
4409 * Registers a function that is called to calculate the intersection
4410 * of the values having the types @type1 and @type2.
4412 * Intersect functions should be registered at startup before any pipelines are
4413 * started, as gst_value_register_intersect_func() is not thread-safe and
4414 * cannot be used at the same time as gst_value_intersect() or
4415 * gst_value_can_intersect().
4418 gst_value_register_intersect_func (GType type1, GType type2,
4419 GstValueIntersectFunc func)
4421 GstValueIntersectInfo intersect_info;
4423 intersect_info.type1 = type1;
4424 intersect_info.type2 = type2;
4425 intersect_info.func = func;
4427 g_array_append_val (gst_value_intersect_funcs, intersect_info);
4434 * gst_value_subtract:
4435 * @dest: (out caller-allocates): the destination value for the result if the
4436 * subtraction is not empty. May be NULL, in which case the resulting set
4437 * will not be computed, which can give a fair speedup.
4438 * @minuend: the value to subtract from
4439 * @subtrahend: the value to subtract
4441 * Subtracts @subtrahend from @minuend and stores the result in @dest.
4442 * Note that this means subtraction as in sets, not as in mathematics.
4444 * Returns: %TRUE if the subtraction is not empty
4447 gst_value_subtract (GValue * dest, const GValue * minuend,
4448 const GValue * subtrahend)
4450 GstValueSubtractInfo *info;
4452 GType ltype, mtype, stype;
4454 g_return_val_if_fail (G_IS_VALUE (minuend), FALSE);
4455 g_return_val_if_fail (G_IS_VALUE (subtrahend), FALSE);
4457 ltype = gst_value_list_get_type ();
4459 /* special cases first */
4460 if (G_VALUE_HOLDS (minuend, ltype))
4461 return gst_value_subtract_from_list (dest, minuend, subtrahend);
4462 if (G_VALUE_HOLDS (subtrahend, ltype))
4463 return gst_value_subtract_list (dest, minuend, subtrahend);
4465 mtype = G_VALUE_TYPE (minuend);
4466 stype = G_VALUE_TYPE (subtrahend);
4468 len = gst_value_subtract_funcs->len;
4469 for (i = 0; i < len; i++) {
4470 info = &g_array_index (gst_value_subtract_funcs, GstValueSubtractInfo, i);
4471 if (info->minuend == mtype && info->subtrahend == stype) {
4472 return info->func (dest, minuend, subtrahend);
4476 if (gst_value_compare (minuend, subtrahend) != GST_VALUE_EQUAL) {
4478 gst_value_init_and_copy (dest, minuend);
4487 gst_value_subtract (GValue * dest, const GValue * minuend,
4488 const GValue * subtrahend)
4490 gboolean ret = gst_value_subtract2 (dest, minuend, subtrahend);
4492 g_printerr ("\"%s\" - \"%s\" = \"%s\"\n", gst_value_serialize (minuend),
4493 gst_value_serialize (subtrahend),
4494 ret ? gst_value_serialize (dest) : "---");
4500 * gst_value_can_subtract:
4501 * @minuend: the value to subtract from
4502 * @subtrahend: the value to subtract
4504 * Checks if it's possible to subtract @subtrahend from @minuend.
4506 * Returns: TRUE if a subtraction is possible
4509 gst_value_can_subtract (const GValue * minuend, const GValue * subtrahend)
4511 GstValueSubtractInfo *info;
4513 GType ltype, mtype, stype;
4515 g_return_val_if_fail (G_IS_VALUE (minuend), FALSE);
4516 g_return_val_if_fail (G_IS_VALUE (subtrahend), FALSE);
4518 ltype = gst_value_list_get_type ();
4521 if (G_VALUE_HOLDS (minuend, ltype) || G_VALUE_HOLDS (subtrahend, ltype))
4524 mtype = G_VALUE_TYPE (minuend);
4525 stype = G_VALUE_TYPE (subtrahend);
4527 len = gst_value_subtract_funcs->len;
4528 for (i = 0; i < len; i++) {
4529 info = &g_array_index (gst_value_subtract_funcs, GstValueSubtractInfo, i);
4530 if (info->minuend == mtype && info->subtrahend == stype)
4534 return gst_value_can_compare (minuend, subtrahend);
4537 /* gst_value_register_subtract_func: (skip)
4538 * @minuend_type: type of the minuend
4539 * @subtrahend_type: type of the subtrahend
4540 * @func: function to use
4542 * Registers @func as a function capable of subtracting the values of
4543 * @subtrahend_type from values of @minuend_type.
4545 * Subtract functions should be registered at startup before any pipelines are
4546 * started, as gst_value_register_subtract_func() is not thread-safe and
4547 * cannot be used at the same time as gst_value_subtract().
4550 gst_value_register_subtract_func (GType minuend_type, GType subtrahend_type,
4551 GstValueSubtractFunc func)
4553 GstValueSubtractInfo info;
4555 /* one type must be unfixed, other subtractions can be done as comparisons,
4556 * special case: bitmasks */
4557 if (minuend_type != GST_TYPE_BITMASK)
4558 g_return_if_fail (!gst_type_is_fixed (minuend_type)
4559 || !gst_type_is_fixed (subtrahend_type));
4561 info.minuend = minuend_type;
4562 info.subtrahend = subtrahend_type;
4565 g_array_append_val (gst_value_subtract_funcs, info);
4569 * gst_value_register:
4570 * @table: structure containing functions to register
4572 * Registers functions to perform calculations on #GValue items of a given
4573 * type. Each type can only be added once.
4576 gst_value_register (const GstValueTable * table)
4578 GstValueTable *found;
4580 g_return_if_fail (table != NULL);
4582 g_array_append_val (gst_value_table, *table);
4584 found = gst_value_hash_lookup_type (table->type);
4586 g_warning ("adding type %s multiple times", g_type_name (table->type));
4588 /* FIXME: we're not really doing the const justice, we assume the table is
4590 gst_value_hash_add_type (table->type, table);
4594 * gst_value_init_and_copy:
4595 * @dest: (out caller-allocates): the target value
4596 * @src: the source value
4598 * Initialises the target value to be of the same type as source and then copies
4599 * the contents from source to target.
4602 gst_value_init_and_copy (GValue * dest, const GValue * src)
4604 g_return_if_fail (G_IS_VALUE (src));
4605 g_return_if_fail (dest != NULL);
4607 g_value_init (dest, G_VALUE_TYPE (src));
4608 g_value_copy (src, dest);
4612 * gst_value_serialize:
4613 * @value: a #GValue to serialize
4615 * tries to transform the given @value into a string representation that allows
4616 * getting back this string later on using gst_value_deserialize().
4618 * Free-function: g_free
4620 * Returns: (transfer full): the serialization for @value or NULL if none exists
4623 gst_value_serialize (const GValue * value)
4626 GValue s_val = { 0 };
4627 GstValueTable *table, *best;
4631 g_return_val_if_fail (G_IS_VALUE (value), NULL);
4633 type = G_VALUE_TYPE (value);
4635 best = gst_value_hash_lookup_type (type);
4637 if (G_UNLIKELY (!best || !best->serialize)) {
4638 len = gst_value_table->len;
4640 for (i = 0; i < len; i++) {
4641 table = &g_array_index (gst_value_table, GstValueTable, i);
4642 if (table->serialize && g_type_is_a (type, table->type)) {
4643 if (!best || g_type_is_a (table->type, best->type))
4648 if (G_LIKELY (best))
4649 return best->serialize (value);
4651 g_value_init (&s_val, G_TYPE_STRING);
4652 if (g_value_transform (value, &s_val)) {
4653 s = gst_string_wrap (g_value_get_string (&s_val));
4657 g_value_unset (&s_val);
4663 * gst_value_deserialize:
4664 * @dest: (out caller-allocates): #GValue to fill with contents of
4666 * @src: string to deserialize
4668 * Tries to deserialize a string into the type specified by the given GValue.
4669 * If the operation succeeds, TRUE is returned, FALSE otherwise.
4671 * Returns: TRUE on success
4674 gst_value_deserialize (GValue * dest, const gchar * src)
4676 GstValueTable *table, *best;
4680 g_return_val_if_fail (src != NULL, FALSE);
4681 g_return_val_if_fail (G_IS_VALUE (dest), FALSE);
4683 type = G_VALUE_TYPE (dest);
4685 best = gst_value_hash_lookup_type (type);
4686 if (G_UNLIKELY (!best || !best->deserialize)) {
4687 len = gst_value_table->len;
4689 for (i = 0; i < len; i++) {
4690 table = &g_array_index (gst_value_table, GstValueTable, i);
4691 if (table->deserialize && g_type_is_a (type, table->type)) {
4692 if (!best || g_type_is_a (table->type, best->type))
4697 if (G_LIKELY (best))
4698 return best->deserialize (dest, src);
4704 * gst_value_is_fixed:
4705 * @value: the #GValue to check
4707 * Tests if the given GValue, if available in a GstStructure (or any other
4708 * container) contains a "fixed" (which means: one value) or an "unfixed"
4709 * (which means: multiple possible values, such as data lists or data
4712 * Returns: true if the value is "fixed".
4716 gst_value_is_fixed (const GValue * value)
4720 g_return_val_if_fail (G_IS_VALUE (value), FALSE);
4722 type = G_VALUE_TYPE (value);
4724 /* the most common types are just basic plain glib types */
4725 if (type <= G_TYPE_MAKE_FUNDAMENTAL (G_TYPE_RESERVED_GLIB_LAST)) {
4729 if (type == GST_TYPE_ARRAY) {
4733 /* check recursively */
4734 size = gst_value_array_get_size (value);
4735 for (n = 0; n < size; n++) {
4736 kid = gst_value_array_get_value (value, n);
4737 if (!gst_value_is_fixed (kid))
4742 return gst_type_is_fixed (type);
4747 * @dest: the #GValue destination
4748 * @src: the #GValue to fixate
4750 * Fixate @src into a new value @dest.
4751 * For ranges, the first element is taken. For lists and arrays, the
4752 * first item is fixated and returned.
4753 * If @src is already fixed, this function returns FALSE.
4755 * Returns: true if @dest contains a fixated version of @src.
4758 gst_value_fixate (GValue * dest, const GValue * src)
4760 g_return_val_if_fail (G_IS_VALUE (src), FALSE);
4761 g_return_val_if_fail (dest != NULL, FALSE);
4763 if (G_VALUE_TYPE (src) == GST_TYPE_INT_RANGE) {
4764 g_value_init (dest, G_TYPE_INT);
4765 g_value_set_int (dest, gst_value_get_int_range_min (src));
4766 } else if (G_VALUE_TYPE (src) == GST_TYPE_DOUBLE_RANGE) {
4767 g_value_init (dest, G_TYPE_DOUBLE);
4768 g_value_set_double (dest, gst_value_get_double_range_min (src));
4769 } else if (G_VALUE_TYPE (src) == GST_TYPE_FRACTION_RANGE) {
4770 gst_value_init_and_copy (dest, gst_value_get_fraction_range_min (src));
4771 } else if (G_VALUE_TYPE (src) == GST_TYPE_LIST) {
4772 GValue temp = { 0 };
4774 /* list could be empty */
4775 if (gst_value_list_get_size (src) <= 0)
4778 gst_value_init_and_copy (&temp, gst_value_list_get_value (src, 0));
4780 if (!gst_value_fixate (dest, &temp))
4781 gst_value_init_and_copy (dest, &temp);
4782 g_value_unset (&temp);
4783 } else if (G_VALUE_TYPE (src) == GST_TYPE_ARRAY) {
4784 gboolean res = FALSE;
4787 len = gst_value_array_get_size (src);
4788 g_value_init (dest, GST_TYPE_ARRAY);
4789 for (n = 0; n < len; n++) {
4791 const GValue *orig_kid = gst_value_array_get_value (src, n);
4793 if (!gst_value_fixate (&kid, orig_kid))
4794 gst_value_init_and_copy (&kid, orig_kid);
4797 gst_value_array_append_value (dest, &kid);
4798 g_value_unset (&kid);
4802 g_value_unset (dest);
4816 /* helper functions */
4818 gst_value_init_fraction (GValue * value)
4820 value->data[0].v_int = 0;
4821 value->data[1].v_int = 1;
4825 gst_value_copy_fraction (const GValue * src_value, GValue * dest_value)
4827 dest_value->data[0].v_int = src_value->data[0].v_int;
4828 dest_value->data[1].v_int = src_value->data[1].v_int;
4832 gst_value_collect_fraction (GValue * value, guint n_collect_values,
4833 GTypeCValue * collect_values, guint collect_flags)
4835 if (n_collect_values != 2)
4836 return g_strdup_printf ("not enough value locations for `%s' passed",
4837 G_VALUE_TYPE_NAME (value));
4838 if (collect_values[1].v_int == 0)
4839 return g_strdup_printf ("passed '0' as denominator for `%s'",
4840 G_VALUE_TYPE_NAME (value));
4841 if (collect_values[0].v_int < -G_MAXINT)
4844 ("passed value smaller than -G_MAXINT as numerator for `%s'",
4845 G_VALUE_TYPE_NAME (value));
4846 if (collect_values[1].v_int < -G_MAXINT)
4849 ("passed value smaller than -G_MAXINT as denominator for `%s'",
4850 G_VALUE_TYPE_NAME (value));
4852 gst_value_set_fraction (value,
4853 collect_values[0].v_int, collect_values[1].v_int);
4859 gst_value_lcopy_fraction (const GValue * value, guint n_collect_values,
4860 GTypeCValue * collect_values, guint collect_flags)
4862 gint *numerator = collect_values[0].v_pointer;
4863 gint *denominator = collect_values[1].v_pointer;
4866 return g_strdup_printf ("numerator for `%s' passed as NULL",
4867 G_VALUE_TYPE_NAME (value));
4869 return g_strdup_printf ("denominator for `%s' passed as NULL",
4870 G_VALUE_TYPE_NAME (value));
4872 *numerator = value->data[0].v_int;
4873 *denominator = value->data[1].v_int;
4879 * gst_value_set_fraction:
4880 * @value: a GValue initialized to #GST_TYPE_FRACTION
4881 * @numerator: the numerator of the fraction
4882 * @denominator: the denominator of the fraction
4884 * Sets @value to the fraction specified by @numerator over @denominator.
4885 * The fraction gets reduced to the smallest numerator and denominator,
4886 * and if necessary the sign is moved to the numerator.
4889 gst_value_set_fraction (GValue * value, gint numerator, gint denominator)
4893 g_return_if_fail (GST_VALUE_HOLDS_FRACTION (value));
4894 g_return_if_fail (denominator != 0);
4895 g_return_if_fail (denominator >= -G_MAXINT);
4896 g_return_if_fail (numerator >= -G_MAXINT);
4898 /* normalize sign */
4899 if (denominator < 0) {
4900 numerator = -numerator;
4901 denominator = -denominator;
4904 /* check for reduction */
4905 gcd = gst_util_greatest_common_divisor (numerator, denominator);
4911 g_assert (denominator > 0);
4913 value->data[0].v_int = numerator;
4914 value->data[1].v_int = denominator;
4918 * gst_value_get_fraction_numerator:
4919 * @value: a GValue initialized to #GST_TYPE_FRACTION
4921 * Gets the numerator of the fraction specified by @value.
4923 * Returns: the numerator of the fraction.
4926 gst_value_get_fraction_numerator (const GValue * value)
4928 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (value), 0);
4930 return value->data[0].v_int;
4934 * gst_value_get_fraction_denominator:
4935 * @value: a GValue initialized to #GST_TYPE_FRACTION
4937 * Gets the denominator of the fraction specified by @value.
4939 * Returns: the denominator of the fraction.
4942 gst_value_get_fraction_denominator (const GValue * value)
4944 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (value), 1);
4946 return value->data[1].v_int;
4950 * gst_value_fraction_multiply:
4951 * @product: a GValue initialized to #GST_TYPE_FRACTION
4952 * @factor1: a GValue initialized to #GST_TYPE_FRACTION
4953 * @factor2: a GValue initialized to #GST_TYPE_FRACTION
4955 * Multiplies the two #GValue items containing a #GST_TYPE_FRACTION and sets
4956 * @product to the product of the two fractions.
4958 * Returns: FALSE in case of an error (like integer overflow), TRUE otherwise.
4961 gst_value_fraction_multiply (GValue * product, const GValue * factor1,
4962 const GValue * factor2)
4964 gint n1, n2, d1, d2;
4967 g_return_val_if_fail (product != NULL, FALSE);
4968 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (factor1), FALSE);
4969 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (factor2), FALSE);
4971 n1 = factor1->data[0].v_int;
4972 n2 = factor2->data[0].v_int;
4973 d1 = factor1->data[1].v_int;
4974 d2 = factor2->data[1].v_int;
4976 if (!gst_util_fraction_multiply (n1, d1, n2, d2, &res_n, &res_d))
4979 gst_value_set_fraction (product, res_n, res_d);
4985 * gst_value_fraction_subtract:
4986 * @dest: a GValue initialized to #GST_TYPE_FRACTION
4987 * @minuend: a GValue initialized to #GST_TYPE_FRACTION
4988 * @subtrahend: a GValue initialized to #GST_TYPE_FRACTION
4990 * Subtracts the @subtrahend from the @minuend and sets @dest to the result.
4992 * Returns: FALSE in case of an error (like integer overflow), TRUE otherwise.
4995 gst_value_fraction_subtract (GValue * dest,
4996 const GValue * minuend, const GValue * subtrahend)
4998 gint n1, n2, d1, d2;
5001 g_return_val_if_fail (dest != NULL, FALSE);
5002 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (minuend), FALSE);
5003 g_return_val_if_fail (GST_VALUE_HOLDS_FRACTION (subtrahend), FALSE);
5005 n1 = minuend->data[0].v_int;
5006 n2 = subtrahend->data[0].v_int;
5007 d1 = minuend->data[1].v_int;
5008 d2 = subtrahend->data[1].v_int;
5010 if (!gst_util_fraction_add (n1, d1, -n2, d2, &res_n, &res_d))
5012 gst_value_set_fraction (dest, res_n, res_d);
5018 gst_value_serialize_fraction (const GValue * value)
5020 gint32 numerator = value->data[0].v_int;
5021 gint32 denominator = value->data[1].v_int;
5022 gboolean positive = TRUE;
5024 /* get the sign and make components absolute */
5025 if (numerator < 0) {
5026 numerator = -numerator;
5027 positive = !positive;
5029 if (denominator < 0) {
5030 denominator = -denominator;
5031 positive = !positive;
5034 return g_strdup_printf ("%s%d/%d",
5035 positive ? "" : "-", numerator, denominator);
5039 gst_value_deserialize_fraction (GValue * dest, const gchar * s)
5044 if (G_UNLIKELY (s == NULL))
5047 if (G_UNLIKELY (dest == NULL || !GST_VALUE_HOLDS_FRACTION (dest)))
5050 if (sscanf (s, "%d/%d%n", &num, &den, &num_chars) >= 2) {
5051 if (s[num_chars] != 0)
5056 gst_value_set_fraction (dest, num, den);
5058 } else if (g_ascii_strcasecmp (s, "1/max") == 0) {
5059 gst_value_set_fraction (dest, 1, G_MAXINT);
5061 } else if (sscanf (s, "%d%n", &num, &num_chars) >= 1) {
5062 if (s[num_chars] != 0)
5064 gst_value_set_fraction (dest, num, 1);
5066 } else if (g_ascii_strcasecmp (s, "min") == 0) {
5067 gst_value_set_fraction (dest, -G_MAXINT, 1);
5069 } else if (g_ascii_strcasecmp (s, "max") == 0) {
5070 gst_value_set_fraction (dest, G_MAXINT, 1);
5078 gst_value_transform_fraction_string (const GValue * src_value,
5079 GValue * dest_value)
5081 dest_value->data[0].v_pointer = gst_value_serialize_fraction (src_value);
5085 gst_value_transform_string_fraction (const GValue * src_value,
5086 GValue * dest_value)
5088 if (!gst_value_deserialize_fraction (dest_value,
5089 src_value->data[0].v_pointer))
5090 /* If the deserialize fails, ensure we leave the fraction in a
5091 * valid, if incorrect, state */
5092 gst_value_set_fraction (dest_value, 0, 1);
5096 gst_value_transform_double_fraction (const GValue * src_value,
5097 GValue * dest_value)
5099 gdouble src = g_value_get_double (src_value);
5102 gst_util_double_to_fraction (src, &n, &d);
5103 gst_value_set_fraction (dest_value, n, d);
5107 gst_value_transform_float_fraction (const GValue * src_value,
5108 GValue * dest_value)
5110 gfloat src = g_value_get_float (src_value);
5113 gst_util_double_to_fraction (src, &n, &d);
5114 gst_value_set_fraction (dest_value, n, d);
5118 gst_value_transform_fraction_double (const GValue * src_value,
5119 GValue * dest_value)
5121 dest_value->data[0].v_double = ((double) src_value->data[0].v_int) /
5122 ((double) src_value->data[1].v_int);
5126 gst_value_transform_fraction_float (const GValue * src_value,
5127 GValue * dest_value)
5129 dest_value->data[0].v_float = ((float) src_value->data[0].v_int) /
5130 ((float) src_value->data[1].v_int);
5134 gst_value_compare_fraction (const GValue * value1, const GValue * value2)
5140 n1 = value1->data[0].v_int;
5141 n2 = value2->data[0].v_int;
5142 d1 = value1->data[1].v_int;
5143 d2 = value2->data[1].v_int;
5145 /* fractions are reduced when set, so we can quickly see if they're equal */
5146 if (n1 == n2 && d1 == d2)
5147 return GST_VALUE_EQUAL;
5149 if (d1 == 0 && d2 == 0)
5150 return GST_VALUE_UNORDERED;
5152 return GST_VALUE_GREATER_THAN;
5154 return GST_VALUE_LESS_THAN;
5156 ret = gst_util_fraction_compare (n1, d1, n2, d2);
5158 return GST_VALUE_LESS_THAN;
5160 return GST_VALUE_GREATER_THAN;
5162 /* Equality can't happen here because we check for that
5164 g_return_val_if_reached (GST_VALUE_UNORDERED);
5172 gst_value_compare_date (const GValue * value1, const GValue * value2)
5174 const GDate *date1 = (const GDate *) g_value_get_boxed (value1);
5175 const GDate *date2 = (const GDate *) g_value_get_boxed (value2);
5179 return GST_VALUE_EQUAL;
5181 if ((date1 == NULL || !g_date_valid (date1))
5182 && (date2 != NULL && g_date_valid (date2))) {
5183 return GST_VALUE_LESS_THAN;
5186 if ((date2 == NULL || !g_date_valid (date2))
5187 && (date1 != NULL && g_date_valid (date1))) {
5188 return GST_VALUE_GREATER_THAN;
5191 if (date1 == NULL || date2 == NULL || !g_date_valid (date1)
5192 || !g_date_valid (date2)) {
5193 return GST_VALUE_UNORDERED;
5196 j1 = g_date_get_julian (date1);
5197 j2 = g_date_get_julian (date2);
5200 return GST_VALUE_EQUAL;
5202 return GST_VALUE_LESS_THAN;
5204 return GST_VALUE_GREATER_THAN;
5208 gst_value_serialize_date (const GValue * val)
5210 const GDate *date = (const GDate *) g_value_get_boxed (val);
5212 if (date == NULL || !g_date_valid (date))
5213 return g_strdup ("9999-99-99");
5215 return g_strdup_printf ("%04u-%02u-%02u", g_date_get_year (date),
5216 g_date_get_month (date), g_date_get_day (date));
5220 gst_value_deserialize_date (GValue * dest, const gchar * s)
5222 guint year, month, day;
5224 if (!s || sscanf (s, "%04u-%02u-%02u", &year, &month, &day) != 3)
5227 if (!g_date_valid_dmy (day, month, year))
5230 g_value_take_boxed (dest, g_date_new_dmy (day, month, year));
5239 gst_value_compare_date_time (const GValue * value1, const GValue * value2)
5241 const GstDateTime *date1 = (const GstDateTime *) g_value_get_boxed (value1);
5242 const GstDateTime *date2 = (const GstDateTime *) g_value_get_boxed (value2);
5246 return GST_VALUE_EQUAL;
5248 if ((date1 == NULL) && (date2 != NULL)) {
5249 return GST_VALUE_LESS_THAN;
5251 if ((date2 == NULL) && (date1 != NULL)) {
5252 return GST_VALUE_LESS_THAN;
5255 ret = priv_gst_date_time_compare (date1, date2);
5258 return GST_VALUE_EQUAL;
5260 return GST_VALUE_LESS_THAN;
5262 return GST_VALUE_GREATER_THAN;
5266 gst_value_serialize_date_time (const GValue * val)
5268 GstDateTime *date = (GstDateTime *) g_value_get_boxed (val);
5270 gint tzhour, tzminute;
5273 return g_strdup ("null");
5275 offset = gst_date_time_get_time_zone_offset (date);
5277 tzhour = (gint) ABS (offset);
5278 tzminute = (gint) ((ABS (offset) - tzhour) * 60);
5280 return g_strdup_printf ("\"%04d-%02d-%02dT%02d:%02d:%02d.%06d"
5281 "%c%02d%02d\"", gst_date_time_get_year (date),
5282 gst_date_time_get_month (date), gst_date_time_get_day (date),
5283 gst_date_time_get_hour (date), gst_date_time_get_minute (date),
5284 gst_date_time_get_second (date), gst_date_time_get_microsecond (date),
5285 offset >= 0 ? '+' : '-', tzhour, tzminute);
5289 gst_value_deserialize_date_time (GValue * dest, const gchar * s)
5291 gint year, month, day, hour, minute, second, usecond;
5294 gfloat tzoffset = 0;
5297 if (!s || strcmp (s, "null") == 0) {
5301 ret = sscanf (s, "%04d-%02d-%02dT%02d:%02d:%02d.%06d%c%04d",
5302 &year, &month, &day, &hour, &minute, &second, &usecond, &signal, &offset);
5304 tzoffset = (offset / 100) + ((offset % 100) / 60.0);
5306 tzoffset = -tzoffset;
5310 g_value_take_boxed (dest, gst_date_time_new (tzoffset, year, month, day, hour,
5311 minute, second + (usecond / 1000000.0)));
5316 gst_value_transform_date_string (const GValue * src_value, GValue * dest_value)
5318 dest_value->data[0].v_pointer = gst_value_serialize_date (src_value);
5322 gst_value_transform_string_date (const GValue * src_value, GValue * dest_value)
5324 gst_value_deserialize_date (dest_value, src_value->data[0].v_pointer);
5332 /* helper functions */
5334 gst_value_init_bitmask (GValue * value)
5336 value->data[0].v_uint64 = 0;
5340 gst_value_copy_bitmask (const GValue * src_value, GValue * dest_value)
5342 dest_value->data[0].v_uint64 = src_value->data[0].v_uint64;
5346 gst_value_collect_bitmask (GValue * value, guint n_collect_values,
5347 GTypeCValue * collect_values, guint collect_flags)
5349 if (n_collect_values != 1)
5350 return g_strdup_printf ("not enough value locations for `%s' passed",
5351 G_VALUE_TYPE_NAME (value));
5353 gst_value_set_bitmask (value, (guint64) collect_values[0].v_int64);
5359 gst_value_lcopy_bitmask (const GValue * value, guint n_collect_values,
5360 GTypeCValue * collect_values, guint collect_flags)
5362 guint64 *bitmask = collect_values[0].v_pointer;
5365 return g_strdup_printf ("value for `%s' passed as NULL",
5366 G_VALUE_TYPE_NAME (value));
5368 *bitmask = value->data[0].v_uint64;
5374 * gst_value_set_bitmask:
5375 * @value: a GValue initialized to #GST_TYPE_FRACTION
5376 * @bitmask: the bitmask
5378 * Sets @value to the bitmask specified by @bitmask.
5381 gst_value_set_bitmask (GValue * value, guint64 bitmask)
5383 g_return_if_fail (GST_VALUE_HOLDS_BITMASK (value));
5385 value->data[0].v_uint64 = bitmask;
5389 * gst_value_get_bitmask:
5390 * @value: a GValue initialized to #GST_TYPE_FRACTION
5392 * Gets the bitmask specified by @value.
5394 * Returns: the bitmask.
5397 gst_value_get_bitmask (const GValue * value)
5399 g_return_val_if_fail (GST_VALUE_HOLDS_BITMASK (value), 0);
5401 return value->data[0].v_uint64;
5405 gst_value_serialize_bitmask (const GValue * value)
5407 guint64 bitmask = value->data[0].v_uint64;
5409 return g_strdup_printf ("0x%016" G_GINT64_MODIFIER "x", bitmask);
5413 gst_value_deserialize_bitmask (GValue * dest, const gchar * s)
5415 gchar *endptr = NULL;
5418 if (G_UNLIKELY (s == NULL))
5421 if (G_UNLIKELY (dest == NULL || !GST_VALUE_HOLDS_BITMASK (dest)))
5424 val = g_ascii_strtoull (s, &endptr, 16);
5425 if (val == G_MAXUINT64 && (errno == ERANGE || errno == EINVAL))
5427 if (val == 0 && endptr == s)
5430 gst_value_set_bitmask (dest, val);
5436 gst_value_transform_bitmask_string (const GValue * src_value,
5437 GValue * dest_value)
5439 dest_value->data[0].v_pointer = gst_value_serialize_bitmask (src_value);
5443 gst_value_transform_string_bitmask (const GValue * src_value,
5444 GValue * dest_value)
5446 if (!gst_value_deserialize_bitmask (dest_value, src_value->data[0].v_pointer))
5447 gst_value_set_bitmask (dest_value, 0);
5451 gst_value_transform_uint64_bitmask (const GValue * src_value,
5452 GValue * dest_value)
5454 dest_value->data[0].v_uint64 = src_value->data[0].v_uint64;
5458 gst_value_transform_bitmask_uint64 (const GValue * src_value,
5459 GValue * dest_value)
5461 dest_value->data[0].v_uint64 = src_value->data[0].v_uint64;
5465 gst_value_intersect_bitmask_bitmask (GValue * dest, const GValue * src1,
5466 const GValue * src2)
5470 s1 = gst_value_get_bitmask (src1);
5471 s2 = gst_value_get_bitmask (src2);
5474 g_value_init (dest, GST_TYPE_BITMASK);
5475 gst_value_set_bitmask (dest, s1 & s2);
5482 gst_value_union_bitmask_bitmask (GValue * dest, const GValue * src1,
5483 const GValue * src2)
5487 s1 = gst_value_get_bitmask (src1);
5488 s2 = gst_value_get_bitmask (src2);
5490 g_value_init (dest, GST_TYPE_BITMASK);
5491 gst_value_set_bitmask (dest, s1 | s2);
5497 gst_value_subtract_bitmask_bitmask (GValue * dest,
5498 const GValue * minuend, const GValue * subtrahend)
5502 g_return_val_if_fail (GST_VALUE_HOLDS_BITMASK (minuend), FALSE);
5503 g_return_val_if_fail (GST_VALUE_HOLDS_BITMASK (subtrahend), FALSE);
5505 m = minuend->data[0].v_uint64;
5506 s = subtrahend->data[0].v_uint64;
5510 g_value_init (dest, GST_TYPE_BITMASK);
5511 gst_value_set_bitmask (dest, r);
5517 gst_value_compare_bitmask (const GValue * value1, const GValue * value2)
5521 v1 = value1->data[0].v_uint64;
5522 v2 = value2->data[0].v_uint64;
5525 return GST_VALUE_EQUAL;
5527 return GST_VALUE_UNORDERED;
5531 gst_value_transform_object_string (const GValue * src_value,
5532 GValue * dest_value)
5537 obj = g_value_get_object (src_value);
5540 g_strdup_printf ("(%s) %s", G_OBJECT_TYPE_NAME (obj),
5541 GST_OBJECT_NAME (obj));
5543 str = g_strdup ("NULL");
5546 dest_value->data[0].v_pointer = str;
5549 static GTypeInfo _info = {
5562 static GTypeFundamentalInfo _finfo = {
5566 #define FUNC_VALUE_GET_TYPE(type, name) \
5567 GType gst_ ## type ## _get_type (void) \
5569 static volatile GType gst_ ## type ## _type = 0; \
5571 if (g_once_init_enter (&gst_ ## type ## _type)) { \
5573 _info.value_table = & _gst_ ## type ## _value_table; \
5574 _type = g_type_register_fundamental ( \
5575 g_type_fundamental_next (), \
5576 name, &_info, &_finfo, 0); \
5577 g_once_init_leave(&gst_ ## type ## _type, _type); \
5580 return gst_ ## type ## _type; \
5583 static const GTypeValueTable _gst_int_range_value_table = {
5584 gst_value_init_int_range,
5585 gst_value_free_int_range,
5586 gst_value_copy_int_range,
5589 gst_value_collect_int_range,
5591 gst_value_lcopy_int_range
5594 FUNC_VALUE_GET_TYPE (int_range, "GstIntRange");
5596 static const GTypeValueTable _gst_int64_range_value_table = {
5597 gst_value_init_int64_range,
5598 gst_value_free_int64_range,
5599 gst_value_copy_int64_range,
5602 gst_value_collect_int64_range,
5604 gst_value_lcopy_int64_range
5607 FUNC_VALUE_GET_TYPE (int64_range, "GstInt64Range");
5609 static const GTypeValueTable _gst_double_range_value_table = {
5610 gst_value_init_double_range,
5612 gst_value_copy_double_range,
5615 gst_value_collect_double_range,
5617 gst_value_lcopy_double_range
5620 FUNC_VALUE_GET_TYPE (double_range, "GstDoubleRange");
5622 static const GTypeValueTable _gst_fraction_range_value_table = {
5623 gst_value_init_fraction_range,
5624 gst_value_free_fraction_range,
5625 gst_value_copy_fraction_range,
5628 gst_value_collect_fraction_range,
5630 gst_value_lcopy_fraction_range
5633 FUNC_VALUE_GET_TYPE (fraction_range, "GstFractionRange");
5635 static const GTypeValueTable _gst_value_list_value_table = {
5636 gst_value_init_list_or_array,
5637 gst_value_free_list_or_array,
5638 gst_value_copy_list_or_array,
5639 gst_value_list_or_array_peek_pointer,
5641 gst_value_collect_list_or_array,
5643 gst_value_lcopy_list_or_array
5646 FUNC_VALUE_GET_TYPE (value_list, "GstValueList");
5648 static const GTypeValueTable _gst_value_array_value_table = {
5649 gst_value_init_list_or_array,
5650 gst_value_free_list_or_array,
5651 gst_value_copy_list_or_array,
5652 gst_value_list_or_array_peek_pointer,
5654 gst_value_collect_list_or_array,
5656 gst_value_lcopy_list_or_array
5659 FUNC_VALUE_GET_TYPE (value_array, "GstValueArray");
5661 static const GTypeValueTable _gst_fraction_value_table = {
5662 gst_value_init_fraction,
5664 gst_value_copy_fraction,
5667 gst_value_collect_fraction,
5669 gst_value_lcopy_fraction
5672 FUNC_VALUE_GET_TYPE (fraction, "GstFraction");
5674 G_DEFINE_BOXED_TYPE (GstDateTime, gst_date_time,
5675 (GBoxedCopyFunc) gst_date_time_ref, (GBoxedFreeFunc) gst_date_time_unref);
5677 static const GTypeValueTable _gst_bitmask_value_table = {
5678 gst_value_init_bitmask,
5680 gst_value_copy_bitmask,
5683 gst_value_collect_bitmask,
5685 gst_value_lcopy_bitmask
5688 FUNC_VALUE_GET_TYPE (bitmask, "GstBitmask");
5692 _priv_gst_value_initialize (void)
5694 gst_value_table = g_array_new (FALSE, FALSE, sizeof (GstValueTable));
5695 gst_value_hash = g_hash_table_new (NULL, NULL);
5696 gst_value_union_funcs = g_array_new (FALSE, FALSE,
5697 sizeof (GstValueUnionInfo));
5698 gst_value_intersect_funcs = g_array_new (FALSE, FALSE,
5699 sizeof (GstValueIntersectInfo));
5700 gst_value_subtract_funcs = g_array_new (FALSE, FALSE,
5701 sizeof (GstValueSubtractInfo));
5704 static GstValueTable gst_value = {
5706 gst_value_compare_int_range,
5707 gst_value_serialize_int_range,
5708 gst_value_deserialize_int_range,
5711 gst_value.type = gst_int_range_get_type ();
5712 gst_value_register (&gst_value);
5716 static GstValueTable gst_value = {
5718 gst_value_compare_int64_range,
5719 gst_value_serialize_int64_range,
5720 gst_value_deserialize_int64_range,
5723 gst_value.type = gst_int64_range_get_type ();
5724 gst_value_register (&gst_value);
5728 static GstValueTable gst_value = {
5730 gst_value_compare_double_range,
5731 gst_value_serialize_double_range,
5732 gst_value_deserialize_double_range,
5735 gst_value.type = gst_double_range_get_type ();
5736 gst_value_register (&gst_value);
5740 static GstValueTable gst_value = {
5742 gst_value_compare_fraction_range,
5743 gst_value_serialize_fraction_range,
5744 gst_value_deserialize_fraction_range,
5747 gst_value.type = gst_fraction_range_get_type ();
5748 gst_value_register (&gst_value);
5752 static GstValueTable gst_value = {
5754 gst_value_compare_list,
5755 gst_value_serialize_list,
5756 gst_value_deserialize_list,
5759 gst_value.type = gst_value_list_get_type ();
5760 gst_value_register (&gst_value);
5764 static GstValueTable gst_value = {
5766 gst_value_compare_array,
5767 gst_value_serialize_array,
5768 gst_value_deserialize_array,
5771 gst_value.type = gst_value_array_get_type ();
5772 gst_value_register (&gst_value);
5777 static const GTypeValueTable value_table = {
5778 gst_value_init_buffer,
5780 gst_value_copy_buffer,
5783 NULL, /*gst_value_collect_buffer, */
5785 NULL /*gst_value_lcopy_buffer */
5788 static GstValueTable gst_value = {
5790 gst_value_compare_buffer,
5791 gst_value_serialize_buffer,
5792 gst_value_deserialize_buffer,
5795 gst_value.type = GST_TYPE_BUFFER;
5796 gst_value_register (&gst_value);
5799 static GstValueTable gst_value = {
5801 gst_value_compare_sample,
5806 gst_value.type = GST_TYPE_SAMPLE;
5807 gst_value_register (&gst_value);
5810 static GstValueTable gst_value = {
5812 gst_value_compare_fraction,
5813 gst_value_serialize_fraction,
5814 gst_value_deserialize_fraction,
5817 gst_value.type = gst_fraction_get_type ();
5818 gst_value_register (&gst_value);
5821 static GstValueTable gst_value = {
5824 gst_value_serialize_caps,
5825 gst_value_deserialize_caps,
5828 gst_value.type = GST_TYPE_CAPS;
5829 gst_value_register (&gst_value);
5832 static GstValueTable gst_value = {
5835 gst_value_serialize_segment,
5836 gst_value_deserialize_segment,
5839 gst_value.type = GST_TYPE_SEGMENT;
5840 gst_value_register (&gst_value);
5843 static GstValueTable gst_value = {
5846 gst_value_serialize_structure,
5847 gst_value_deserialize_structure,
5850 gst_value.type = GST_TYPE_STRUCTURE;
5851 gst_value_register (&gst_value);
5854 static GstValueTable gst_value = {
5856 gst_value_compare_date,
5857 gst_value_serialize_date,
5858 gst_value_deserialize_date,
5861 gst_value.type = G_TYPE_DATE;
5862 gst_value_register (&gst_value);
5865 static GstValueTable gst_value = {
5867 gst_value_compare_date_time,
5868 gst_value_serialize_date_time,
5869 gst_value_deserialize_date_time,
5872 gst_value.type = gst_date_time_get_type ();
5873 gst_value_register (&gst_value);
5877 static GstValueTable gst_value = {
5879 gst_value_compare_bitmask,
5880 gst_value_serialize_bitmask,
5881 gst_value_deserialize_bitmask,
5884 gst_value.type = gst_bitmask_get_type ();
5885 gst_value_register (&gst_value);
5888 REGISTER_SERIALIZATION (G_TYPE_DOUBLE, double);
5889 REGISTER_SERIALIZATION (G_TYPE_FLOAT, float);
5891 REGISTER_SERIALIZATION (G_TYPE_STRING, string);
5892 REGISTER_SERIALIZATION (G_TYPE_BOOLEAN, boolean);
5893 REGISTER_SERIALIZATION (G_TYPE_ENUM, enum);
5895 REGISTER_SERIALIZATION (G_TYPE_FLAGS, flags);
5897 REGISTER_SERIALIZATION (G_TYPE_INT, int);
5899 REGISTER_SERIALIZATION (G_TYPE_INT64, int64);
5900 REGISTER_SERIALIZATION (G_TYPE_LONG, long);
5902 REGISTER_SERIALIZATION (G_TYPE_UINT, uint);
5903 REGISTER_SERIALIZATION (G_TYPE_UINT64, uint64);
5904 REGISTER_SERIALIZATION (G_TYPE_ULONG, ulong);
5906 REGISTER_SERIALIZATION (G_TYPE_UCHAR, uchar);
5908 g_value_register_transform_func (GST_TYPE_INT_RANGE, G_TYPE_STRING,
5909 gst_value_transform_int_range_string);
5910 g_value_register_transform_func (GST_TYPE_INT64_RANGE, G_TYPE_STRING,
5911 gst_value_transform_int64_range_string);
5912 g_value_register_transform_func (GST_TYPE_DOUBLE_RANGE, G_TYPE_STRING,
5913 gst_value_transform_double_range_string);
5914 g_value_register_transform_func (GST_TYPE_FRACTION_RANGE, G_TYPE_STRING,
5915 gst_value_transform_fraction_range_string);
5916 g_value_register_transform_func (GST_TYPE_LIST, G_TYPE_STRING,
5917 gst_value_transform_list_string);
5918 g_value_register_transform_func (GST_TYPE_ARRAY, G_TYPE_STRING,
5919 gst_value_transform_array_string);
5920 g_value_register_transform_func (GST_TYPE_FRACTION, G_TYPE_STRING,
5921 gst_value_transform_fraction_string);
5922 g_value_register_transform_func (G_TYPE_STRING, GST_TYPE_FRACTION,
5923 gst_value_transform_string_fraction);
5924 g_value_register_transform_func (GST_TYPE_FRACTION, G_TYPE_DOUBLE,
5925 gst_value_transform_fraction_double);
5926 g_value_register_transform_func (GST_TYPE_FRACTION, G_TYPE_FLOAT,
5927 gst_value_transform_fraction_float);
5928 g_value_register_transform_func (G_TYPE_DOUBLE, GST_TYPE_FRACTION,
5929 gst_value_transform_double_fraction);
5930 g_value_register_transform_func (G_TYPE_FLOAT, GST_TYPE_FRACTION,
5931 gst_value_transform_float_fraction);
5932 g_value_register_transform_func (G_TYPE_DATE, G_TYPE_STRING,
5933 gst_value_transform_date_string);
5934 g_value_register_transform_func (G_TYPE_STRING, G_TYPE_DATE,
5935 gst_value_transform_string_date);
5936 g_value_register_transform_func (GST_TYPE_OBJECT, G_TYPE_STRING,
5937 gst_value_transform_object_string);
5938 g_value_register_transform_func (GST_TYPE_BITMASK, G_TYPE_UINT64,
5939 gst_value_transform_bitmask_uint64);
5940 g_value_register_transform_func (GST_TYPE_BITMASK, G_TYPE_STRING,
5941 gst_value_transform_bitmask_string);
5942 g_value_register_transform_func (G_TYPE_UINT64, GST_TYPE_BITMASK,
5943 gst_value_transform_uint64_bitmask);
5944 g_value_register_transform_func (G_TYPE_STRING, GST_TYPE_BITMASK,
5945 gst_value_transform_string_bitmask);
5947 gst_value_register_intersect_func (G_TYPE_INT, GST_TYPE_INT_RANGE,
5948 gst_value_intersect_int_int_range);
5949 gst_value_register_intersect_func (GST_TYPE_INT_RANGE, GST_TYPE_INT_RANGE,
5950 gst_value_intersect_int_range_int_range);
5951 gst_value_register_intersect_func (G_TYPE_INT64, GST_TYPE_INT64_RANGE,
5952 gst_value_intersect_int64_int64_range);
5953 gst_value_register_intersect_func (GST_TYPE_INT64_RANGE, GST_TYPE_INT64_RANGE,
5954 gst_value_intersect_int64_range_int64_range);
5955 gst_value_register_intersect_func (G_TYPE_DOUBLE, GST_TYPE_DOUBLE_RANGE,
5956 gst_value_intersect_double_double_range);
5957 gst_value_register_intersect_func (GST_TYPE_DOUBLE_RANGE,
5958 GST_TYPE_DOUBLE_RANGE, gst_value_intersect_double_range_double_range);
5959 gst_value_register_intersect_func (GST_TYPE_ARRAY,
5960 GST_TYPE_ARRAY, gst_value_intersect_array);
5961 gst_value_register_intersect_func (GST_TYPE_FRACTION, GST_TYPE_FRACTION_RANGE,
5962 gst_value_intersect_fraction_fraction_range);
5963 gst_value_register_intersect_func (GST_TYPE_FRACTION_RANGE,
5964 GST_TYPE_FRACTION_RANGE,
5965 gst_value_intersect_fraction_range_fraction_range);
5966 gst_value_register_intersect_func (GST_TYPE_BITMASK,
5967 GST_TYPE_BITMASK, gst_value_intersect_bitmask_bitmask);
5969 gst_value_register_subtract_func (G_TYPE_INT, GST_TYPE_INT_RANGE,
5970 gst_value_subtract_int_int_range);
5971 gst_value_register_subtract_func (GST_TYPE_INT_RANGE, G_TYPE_INT,
5972 gst_value_subtract_int_range_int);
5973 gst_value_register_subtract_func (GST_TYPE_INT_RANGE, GST_TYPE_INT_RANGE,
5974 gst_value_subtract_int_range_int_range);
5975 gst_value_register_subtract_func (G_TYPE_INT64, GST_TYPE_INT64_RANGE,
5976 gst_value_subtract_int64_int64_range);
5977 gst_value_register_subtract_func (GST_TYPE_INT64_RANGE, G_TYPE_INT64,
5978 gst_value_subtract_int64_range_int64);
5979 gst_value_register_subtract_func (GST_TYPE_INT64_RANGE, GST_TYPE_INT64_RANGE,
5980 gst_value_subtract_int64_range_int64_range);
5981 gst_value_register_subtract_func (G_TYPE_DOUBLE, GST_TYPE_DOUBLE_RANGE,
5982 gst_value_subtract_double_double_range);
5983 gst_value_register_subtract_func (GST_TYPE_DOUBLE_RANGE, G_TYPE_DOUBLE,
5984 gst_value_subtract_double_range_double);
5985 gst_value_register_subtract_func (GST_TYPE_DOUBLE_RANGE,
5986 GST_TYPE_DOUBLE_RANGE, gst_value_subtract_double_range_double_range);
5987 gst_value_register_subtract_func (GST_TYPE_FRACTION, GST_TYPE_FRACTION_RANGE,
5988 gst_value_subtract_fraction_fraction_range);
5989 gst_value_register_subtract_func (GST_TYPE_FRACTION_RANGE, GST_TYPE_FRACTION,
5990 gst_value_subtract_fraction_range_fraction);
5991 gst_value_register_subtract_func (GST_TYPE_FRACTION_RANGE,
5992 GST_TYPE_FRACTION_RANGE,
5993 gst_value_subtract_fraction_range_fraction_range);
5994 gst_value_register_subtract_func (GST_TYPE_BITMASK,
5995 GST_TYPE_BITMASK, gst_value_subtract_bitmask_bitmask);
5997 /* see bug #317246, #64994, #65041 */
5999 volatile GType date_type = G_TYPE_DATE;
6001 g_type_name (date_type);
6004 gst_value_register_union_func (G_TYPE_INT, GST_TYPE_INT_RANGE,
6005 gst_value_union_int_int_range);
6006 gst_value_register_union_func (GST_TYPE_INT_RANGE, GST_TYPE_INT_RANGE,
6007 gst_value_union_int_range_int_range);
6008 gst_value_register_union_func (GST_TYPE_BITMASK,
6009 GST_TYPE_BITMASK, gst_value_union_bitmask_bitmask);
6012 /* Implement these if needed */
6013 gst_value_register_union_func (GST_TYPE_FRACTION, GST_TYPE_FRACTION_RANGE,
6014 gst_value_union_fraction_fraction_range);
6015 gst_value_register_union_func (GST_TYPE_FRACTION_RANGE,
6016 GST_TYPE_FRACTION_RANGE, gst_value_union_fraction_range_fraction_range);