gst: mark symbols explicitly for export with GST_EXPORT
[platform/upstream/gstreamer.git] / gst / gstvalue.h
1 /* GStreamer
2  * Copyright (C) <2003> David A. Schleef <ds@schleef.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  */
19
20 #ifndef __GST_VALUE_H__
21 #define __GST_VALUE_H__
22
23 #include <gst/gstconfig.h>
24 #include <gst/gstcaps.h>
25 #include <gst/gststructure.h>
26 #include <gst/gstcapsfeatures.h>
27
28 G_BEGIN_DECLS
29
30 /**
31  * GST_MAKE_FOURCC:
32  * @a: the first character
33  * @b: the second character
34  * @c: the third character
35  * @d: the fourth character
36  *
37  * Transform four characters into a #guint32 fourcc value with host
38  * endianness.
39  *
40  * |[
41  * guint32 fourcc = GST_MAKE_FOURCC ('M', 'J', 'P', 'G');
42  * ]|
43  *
44  */
45 #define GST_MAKE_FOURCC(a,b,c,d)        ((guint32)((a)|(b)<<8|(c)<<16|(d)<<24))
46
47 /**
48  * GST_STR_FOURCC:
49  * @f: a string with at least four characters
50  *
51  * Transform an input string into a #guint32 fourcc value with host
52  * endianness.
53  * Caller is responsible for ensuring the input string consists of at least
54  * four characters.
55  *
56  * |[
57  * guint32 fourcc = GST_STR_FOURCC ("MJPG");
58  * ]|
59  *
60  */
61 #define GST_STR_FOURCC(f)               ((guint32)(((f)[0])|((f)[1]<<8)|((f)[2]<<16)|((f)[3]<<24)))
62
63 /**
64  * GST_FOURCC_FORMAT:
65  *
66  * Can be used together with #GST_FOURCC_ARGS to properly output a
67  * #guint32 fourcc value in a printf()-style text message.
68  *
69  * |[
70  * printf ("fourcc: %" GST_FOURCC_FORMAT "\n", GST_FOURCC_ARGS (fcc));
71  * ]|
72  *
73  */
74 #define GST_FOURCC_FORMAT "c%c%c%c"
75
76 /**
77  * GST_FOURCC_ARGS:
78  * @fourcc: a #guint32 fourcc value to output
79  *
80  * Can be used together with #GST_FOURCC_FORMAT to properly output a
81  * #guint32 fourcc value in a printf()-style text message.
82  */
83
84 #define __GST_PRINT_CHAR(c) \
85   g_ascii_isprint(c) ? (c) : '.'
86 #define GST_FOURCC_ARGS(fourcc)               \
87   __GST_PRINT_CHAR((fourcc) & 0xff),          \
88   __GST_PRINT_CHAR(((fourcc) >> 8) & 0xff),   \
89   __GST_PRINT_CHAR(((fourcc) >> 16) & 0xff),  \
90   __GST_PRINT_CHAR(((fourcc) >> 24) & 0xff)
91 /**
92  * GST_VALUE_HOLDS_INT_RANGE:
93  * @x: the #GValue to check
94  *
95  * Checks if the given #GValue contains a #GST_TYPE_INT_RANGE value.
96  */
97 #define GST_VALUE_HOLDS_INT_RANGE(x)      ((x) != NULL && G_VALUE_TYPE(x) == _gst_int_range_type)
98
99 /**
100  * GST_VALUE_HOLDS_INT64_RANGE:
101  * @x: the #GValue to check
102  *
103  * Checks if the given #GValue contains a #GST_TYPE_INT64_RANGE value.
104  */
105 #define GST_VALUE_HOLDS_INT64_RANGE(x)    ((x) != NULL && G_VALUE_TYPE(x) == _gst_int64_range_type)
106
107 /**
108  * GST_VALUE_HOLDS_DOUBLE_RANGE:
109  * @x: the #GValue to check
110  *
111  * Checks if the given #GValue contains a #GST_TYPE_DOUBLE_RANGE value.
112  */
113 #define GST_VALUE_HOLDS_DOUBLE_RANGE(x)   ((x) != NULL && G_VALUE_TYPE(x) == _gst_double_range_type)
114
115 /**
116  * GST_VALUE_HOLDS_FRACTION_RANGE:
117  * @x: the #GValue to check
118  *
119  * Checks if the given #GValue contains a #GST_TYPE_FRACTION_RANGE value.
120  */
121 #define GST_VALUE_HOLDS_FRACTION_RANGE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_fraction_range_type)
122
123 /**
124  * GST_VALUE_HOLDS_LIST:
125  * @x: the #GValue to check
126  *
127  * Checks if the given #GValue contains a #GST_TYPE_LIST value.
128  */
129 #define GST_VALUE_HOLDS_LIST(x)         ((x) != NULL && G_VALUE_TYPE(x) == _gst_value_list_type)
130
131 /**
132  * GST_VALUE_HOLDS_ARRAY:
133  * @x: the #GValue to check
134  *
135  * Checks if the given #GValue contains a #GST_TYPE_ARRAY value.
136  */
137 #define GST_VALUE_HOLDS_ARRAY(x)        ((x) != NULL && G_VALUE_TYPE(x) == _gst_value_array_type)
138
139 /**
140  * GST_VALUE_HOLDS_CAPS:
141  * @x: the #GValue to check
142  *
143  * Checks if the given #GValue contains a #GST_TYPE_CAPS value.
144  */
145 #define GST_VALUE_HOLDS_CAPS(x)         ((x) != NULL && G_VALUE_TYPE(x) == _gst_caps_type)
146
147 /**
148  * GST_VALUE_HOLDS_STRUCTURE:
149  * @x: the #GValue to check
150  *
151  * Checks if the given #GValue contains a #GST_TYPE_STRUCTURE value.
152  */
153 #define GST_VALUE_HOLDS_STRUCTURE(x)            (G_VALUE_HOLDS((x), _gst_structure_type))
154
155 /**
156  * GST_VALUE_HOLDS_CAPS_FEATURES:
157  * @x: the #GValue to check
158  *
159  * Checks if the given #GValue contains a #GST_TYPE_CAPS_FEATURES value.
160  */
161 #define GST_VALUE_HOLDS_CAPS_FEATURES(x)        (G_VALUE_HOLDS((x), _gst_caps_features_type))
162
163 /**
164  * GST_VALUE_HOLDS_BUFFER:
165  * @x: the #GValue to check
166  *
167  * Checks if the given #GValue contains a #GST_TYPE_BUFFER value.
168  */
169 #define GST_VALUE_HOLDS_BUFFER(x)       ((x) != NULL && G_VALUE_TYPE(x) == _gst_buffer_type)
170
171 /**
172  * GST_VALUE_HOLDS_SAMPLE:
173  * @x: the #GValue to check
174  *
175  * Checks if the given #GValue contains a #GST_TYPE_SAMPLE value.
176  */
177 #define GST_VALUE_HOLDS_SAMPLE(x)       ((x) != NULL && G_VALUE_TYPE(x) == _gst_sample_type)
178
179 /**
180  * GST_VALUE_HOLDS_FRACTION:
181  * @x: the #GValue to check
182  *
183  * Checks if the given #GValue contains a #GST_TYPE_FRACTION value.
184  */
185 #define GST_VALUE_HOLDS_FRACTION(x)     ((x) != NULL && G_VALUE_TYPE(x) == _gst_fraction_type)
186
187 /**
188  * GST_VALUE_HOLDS_DATE_TIME:
189  * @x: the #GValue to check
190  *
191  * Checks if the given #GValue contains a #GST_TYPE_DATE_TIME value.
192  */
193 #define GST_VALUE_HOLDS_DATE_TIME(x)    ((x) != NULL && G_VALUE_TYPE(x) == _gst_date_time_type)
194
195 /**
196  * GST_VALUE_HOLDS_BITMASK:
197  * @x: the #GValue to check
198  *
199  * Checks if the given #GValue contains a #GST_TYPE_BITMASK value.
200  */
201 #define GST_VALUE_HOLDS_BITMASK(x)      ((x) != NULL && G_VALUE_TYPE(x) == _gst_bitmask_type)
202
203 /**
204  * GST_VALUE_HOLDS_FLAG_SET:
205  * @x: the #GValue to check
206  *
207  * Checks if the given #GValue contains a #GST_TYPE_FLAG_SET value.
208  *
209  * Since: 1.6
210  */
211 #define GST_VALUE_HOLDS_FLAG_SET(x)     (G_TYPE_CHECK_VALUE_TYPE ((x), GST_TYPE_FLAG_SET))
212
213 /**
214  * GST_FLAG_SET_MASK_EXACT: (value 4294967295) (type guint)
215  *
216  * A mask value with all bits set, for use as a
217  * #GstFlagSet mask where all flag bits must match
218  * exactly
219  *
220  * Since: 1.6
221  */
222 #define GST_FLAG_SET_MASK_EXACT ((guint)(-1))
223
224 GST_EXPORT GType _gst_int_range_type;
225
226 /**
227  * GST_TYPE_INT_RANGE:
228  *
229  * a #GValue type that represents an integer range
230  *
231  * Returns: the #GType of GstIntRange
232  */
233 #define GST_TYPE_INT_RANGE               (_gst_int_range_type)
234
235 GST_EXPORT GType _gst_int64_range_type;
236
237 /**
238  * GST_TYPE_INT64_RANGE:
239  *
240  * a #GValue type that represents an #gint64 range
241  *
242  * Returns: the #GType of GstInt64Range
243  */
244 #define GST_TYPE_INT64_RANGE             (_gst_int64_range_type)
245
246 GST_EXPORT GType _gst_double_range_type;
247
248 /**
249  * GST_TYPE_DOUBLE_RANGE:
250  *
251  * a #GValue type that represents a floating point range with double precision
252  *
253  * Returns: the #GType of GstIntRange
254  */
255 #define GST_TYPE_DOUBLE_RANGE            (_gst_double_range_type)
256
257 GST_EXPORT GType _gst_fraction_range_type;
258
259 /**
260  * GST_TYPE_FRACTION_RANGE:
261  *
262  * a #GValue type that represents a GstFraction range
263  *
264  * Returns: the #GType of GstFractionRange
265  */
266 #define GST_TYPE_FRACTION_RANGE           (_gst_fraction_range_type)
267
268 GST_EXPORT GType _gst_value_list_type;
269
270 /**
271  * GST_TYPE_LIST:
272  *
273  * a #GValue type that represents an unordered list of #GValue values. This
274  * is used for example to express a list of possible values for a field in
275  * a caps structure, like a list of possible sample rates, of which only one
276  * will be chosen in the end. This means that all values in the list are
277  * meaningful on their own.
278  *
279  * Returns: the #GType of GstValueList (which is not explicitly typed)
280  */
281 #define GST_TYPE_LIST                    (_gst_value_list_type)
282
283 GST_EXPORT GType _gst_value_array_type;
284
285 /**
286  * GST_TYPE_ARRAY:
287  *
288  * a #GValue type that represents an ordered list of #GValue values. This is
289  * used to express a set of values that is meaningful only in their specific
290  * combination and order of values. Each value on its own is not particularly
291  * meaningful, only the ordered array in its entirety is meaningful. This is
292  * used for example to express channel layouts for multichannel audio where
293  * each channel needs to be mapped to a position in the room.
294  *
295  * Returns: the #GType of GstArrayList (which is not explicitly typed)
296  */
297 #define GST_TYPE_ARRAY                   (_gst_value_array_type)
298
299 GST_EXPORT GType _gst_fraction_type;
300
301 /**
302  * GST_TYPE_FRACTION:
303  *
304  * a #GValue type that represents a fraction of an integer numerator over
305  * an integer denominator
306  *
307  * Returns: the #GType of GstFraction (which is not explicitly typed)
308  */
309
310 #define GST_TYPE_FRACTION                (_gst_fraction_type)
311
312 GST_EXPORT GType _gst_bitmask_type;
313
314 /**
315  * GST_TYPE_BITMASK:
316  *
317  * a #GValue type that represents a 64-bit bitmask.
318  *
319  * Returns: the #GType of GstBitmask (which is not explicitly typed)
320  */
321
322 #define GST_TYPE_BITMASK                 (_gst_bitmask_type)
323
324 GST_EXPORT GType _gst_flagset_type;
325
326 /**
327  * GST_TYPE_FLAG_SET:
328  *
329  * a #GValue type that represents a 32-bit flag bitfield, with 32-bit
330  * mask indicating which of the bits in the field are explicitly set.
331  * Useful for negotiation.
332  *
333  * Returns: the #GType of GstFlags (which is not explicitly typed)
334  *
335  * Since: 1.6
336  */
337 #define GST_TYPE_FLAG_SET                   (_gst_flagset_type)
338
339 /**
340  * GST_TYPE_G_THREAD:
341  *
342  * a boxed #GValue type for #GThread that represents a thread.
343  *
344  * Returns: the #GType of GstGThread
345  */
346
347 #define GST_TYPE_G_THREAD                gst_g_thread_get_type ()
348
349 /**
350  * GST_VALUE_LESS_THAN:
351  *
352  * Indicates that the first value provided to a comparison function
353  * (gst_value_compare()) is lesser than the second one.
354  */
355 #define GST_VALUE_LESS_THAN              (-1)
356
357 /**
358  * GST_VALUE_EQUAL:
359  *
360  * Indicates that the first value provided to a comparison function
361  * (gst_value_compare()) is equal to the second one.
362  */
363 #define GST_VALUE_EQUAL                   0
364
365 /**
366  * GST_VALUE_GREATER_THAN:
367  *
368  * Indicates that the first value provided to a comparison function
369  * (gst_value_compare()) is greater than the second one.
370  */
371 #define GST_VALUE_GREATER_THAN            1
372
373 /**
374  * GST_VALUE_UNORDERED:
375  *
376  * Indicates that the comparison function (gst_value_compare()) can not
377  * determine a order for the two provided values.
378  */
379 #define GST_VALUE_UNORDERED               2
380
381 /**
382  * GstValueCompareFunc:
383  * @value1: first value for comparison
384  * @value2: second value for comparison
385  *
386  * Used together with gst_value_compare() to compare #GValue items.
387  *
388  * Returns: one of GST_VALUE_LESS_THAN, GST_VALUE_EQUAL, GST_VALUE_GREATER_THAN
389  * or GST_VALUE_UNORDERED
390  */
391 typedef gint     (* GstValueCompareFunc)     (const GValue *value1,
392                                               const GValue *value2);
393
394 /**
395  * GstValueSerializeFunc:
396  * @value1: a #GValue
397  *
398  * Used by gst_value_serialize() to obtain a non-binary form of the #GValue.
399  *
400  * Free-function: g_free
401  *
402  * Returns: (transfer full): the string representation of the value
403  */
404 typedef gchar *  (* GstValueSerializeFunc)   (const GValue *value1);
405
406 /**
407  * GstValueDeserializeFunc:
408  * @dest: a #GValue
409  * @s: a string
410  *
411  * Used by gst_value_deserialize() to parse a non-binary form into the #GValue.
412  *
413  * Returns: %TRUE for success
414  */
415 typedef gboolean (* GstValueDeserializeFunc) (GValue       *dest,
416                                               const gchar  *s);
417
418 typedef struct _GstValueTable GstValueTable;
419 /**
420  * GstValueTable:
421  * @type: a #GType
422  * @compare: a #GstValueCompareFunc
423  * @serialize: a #GstValueSerializeFunc
424  * @deserialize: a #GstValueDeserializeFunc
425  *
426  * VTable for the #GValue @type.
427  */
428 struct _GstValueTable {
429   GType type;
430   GstValueCompareFunc compare;
431   GstValueSerializeFunc serialize;
432   GstValueDeserializeFunc deserialize;
433
434   /*< private >*/
435   gpointer _gst_reserved [GST_PADDING];
436 };
437
438 GST_EXPORT
439 GType gst_int_range_get_type (void);
440
441 GST_EXPORT
442 GType gst_int64_range_get_type (void);
443
444 GST_EXPORT
445 GType gst_double_range_get_type (void);
446
447 GST_EXPORT
448 GType gst_fraction_range_get_type (void);
449
450 GST_EXPORT
451 GType gst_fraction_get_type (void);
452
453 GST_EXPORT
454 GType gst_value_list_get_type (void);
455
456 GST_EXPORT
457 GType gst_value_array_get_type (void);
458
459 GST_EXPORT
460 GType gst_bitmask_get_type (void);
461
462 GST_EXPORT
463 GType gst_flagset_get_type (void);
464
465 /* Hide this compatibility type from introspection */
466 #ifndef __GI_SCANNER__
467 GST_EXPORT
468 GType gst_g_thread_get_type (void);
469 #endif
470
471 GST_EXPORT
472 void            gst_value_register              (const GstValueTable   *table);
473
474 GST_EXPORT
475 void            gst_value_init_and_copy         (GValue                *dest,
476                                                  const GValue          *src);
477 GST_EXPORT
478 gchar *         gst_value_serialize             (const GValue          *value) G_GNUC_MALLOC;
479
480 GST_EXPORT
481 gboolean        gst_value_deserialize           (GValue                *dest,
482                                                  const gchar           *src);
483
484 /* list */
485
486 GST_EXPORT
487 void            gst_value_list_append_value     (GValue         *value,
488                                                  const GValue   *append_value);
489 GST_EXPORT
490 void            gst_value_list_append_and_take_value (GValue         *value,
491                                                  GValue   *append_value);
492 GST_EXPORT
493 void            gst_value_list_prepend_value    (GValue         *value,
494                                                  const GValue   *prepend_value);
495 GST_EXPORT
496 void            gst_value_list_concat           (GValue         *dest,
497                                                  const GValue   *value1,
498                                                  const GValue   *value2);
499 GST_EXPORT
500 void            gst_value_list_merge            (GValue         *dest,
501                                                  const GValue   *value1,
502                                                  const GValue   *value2);
503 GST_EXPORT
504 guint           gst_value_list_get_size         (const GValue   *value);
505
506 GST_EXPORT
507 const GValue *  gst_value_list_get_value        (const GValue   *value,
508                                                  guint          index);
509
510 /* array */
511
512 GST_EXPORT
513 void            gst_value_array_append_value    (GValue         *value,
514                                                  const GValue   *append_value);
515 GST_EXPORT
516 void            gst_value_array_append_and_take_value    (GValue         *value,
517                                                  GValue   *append_value);
518 GST_EXPORT
519 void            gst_value_array_prepend_value   (GValue         *value,
520                                                  const GValue   *prepend_value);
521 GST_EXPORT
522 guint           gst_value_array_get_size        (const GValue   *value);
523
524 GST_EXPORT
525 const GValue *  gst_value_array_get_value       (const GValue   *value,
526                                                  guint          index);
527
528 /* int range */
529
530 GST_EXPORT
531 void            gst_value_set_int_range         (GValue         *value,
532                                                  gint           start,
533                                                  gint           end);
534 GST_EXPORT
535 void            gst_value_set_int_range_step    (GValue         *value,
536                                                  gint           start,
537                                                  gint           end,
538                                                  gint           step);
539 GST_EXPORT
540 gint            gst_value_get_int_range_min     (const GValue   *value);
541
542 GST_EXPORT
543 gint            gst_value_get_int_range_max     (const GValue   *value);
544
545 GST_EXPORT
546 gint            gst_value_get_int_range_step    (const GValue   *value);
547
548 /* int64 range */
549
550 GST_EXPORT
551 void            gst_value_set_int64_range       (GValue         *value,
552                                                  gint64         start,
553                                                  gint64         end);
554 GST_EXPORT
555 void            gst_value_set_int64_range_step  (GValue         *value,
556                                                  gint64         start,
557                                                  gint64         end,
558                                                  gint64         step);
559 GST_EXPORT
560 gint64          gst_value_get_int64_range_min   (const GValue   *value);
561
562 GST_EXPORT
563 gint64          gst_value_get_int64_range_max   (const GValue   *value);
564
565 GST_EXPORT
566 gint64          gst_value_get_int64_range_step  (const GValue   *value);
567
568 /* double range */
569
570 GST_EXPORT
571 void            gst_value_set_double_range      (GValue         *value,
572                                                  gdouble        start,
573                                                  gdouble        end);
574 GST_EXPORT
575 gdouble         gst_value_get_double_range_min  (const GValue   *value);
576
577 GST_EXPORT
578 gdouble         gst_value_get_double_range_max  (const GValue   *value);
579
580 /* caps */
581
582 GST_EXPORT
583 const GstCaps * gst_value_get_caps              (const GValue   *value);
584
585 GST_EXPORT
586 void            gst_value_set_caps              (GValue         *value,
587                                                  const GstCaps  *caps);
588
589 /* structure */
590
591 GST_EXPORT
592 const GstStructure *
593                 gst_value_get_structure         (const GValue   *value);
594
595 GST_EXPORT
596 void            gst_value_set_structure         (GValue         *value,
597                                                  const GstStructure  *structure);
598
599 /* caps features */
600
601 GST_EXPORT
602 const GstCapsFeatures *
603                 gst_value_get_caps_features     (const GValue   *value);
604
605 GST_EXPORT
606 void            gst_value_set_caps_features     (GValue         *value,
607                                                  const GstCapsFeatures  *features);
608
609 /* fraction */
610
611 GST_EXPORT
612 void            gst_value_set_fraction          (GValue         *value,
613                                                  gint           numerator,
614                                                  gint           denominator);
615 GST_EXPORT
616 gint            gst_value_get_fraction_numerator   (const GValue  *value);
617
618 GST_EXPORT
619 gint            gst_value_get_fraction_denominator (const GValue *value);
620
621 GST_EXPORT
622 gboolean        gst_value_fraction_multiply        (GValue         *product,
623                                                     const GValue   *factor1,
624                                                     const GValue   *factor2);
625 GST_EXPORT
626 gboolean        gst_value_fraction_subtract     (GValue * dest,
627                                                  const GValue * minuend,
628                                                  const GValue * subtrahend);
629
630 /* fraction range */
631
632 GST_EXPORT
633 void            gst_value_set_fraction_range    (GValue         *value,
634                                                  const GValue   *start,
635                                                  const GValue   *end);
636 GST_EXPORT
637 void            gst_value_set_fraction_range_full (GValue       *value,
638                                                  gint numerator_start,
639                                                  gint denominator_start,
640                                                  gint numerator_end,
641                                                  gint denominator_end);
642 GST_EXPORT
643 const GValue    *gst_value_get_fraction_range_min (const GValue *value);
644
645 GST_EXPORT
646 const GValue    *gst_value_get_fraction_range_max (const GValue *value);
647
648 /* bitmask */
649
650 GST_EXPORT
651 guint64         gst_value_get_bitmask           (const GValue   *value);
652
653 GST_EXPORT
654 void            gst_value_set_bitmask           (GValue         *value,
655                                                  guint64         bitmask);
656 /* flagset */
657
658 GST_EXPORT
659 void            gst_value_set_flagset (GValue * value, guint flags, guint mask);
660
661 GST_EXPORT
662 guint           gst_value_get_flagset_flags (const GValue * value);
663
664 GST_EXPORT
665 guint           gst_value_get_flagset_mask (const GValue * value);
666
667 /* compare */
668
669 GST_EXPORT
670 gint            gst_value_compare               (const GValue   *value1,
671                                                  const GValue   *value2);
672 GST_EXPORT
673 gboolean        gst_value_can_compare           (const GValue   *value1,
674                                                  const GValue   *value2);
675 GST_EXPORT
676 gboolean        gst_value_is_subset             (const GValue   *value1,
677                                                  const GValue   *value2);
678
679 /* union */
680
681 GST_EXPORT
682 gboolean        gst_value_union                 (GValue         *dest,
683                                                  const GValue   *value1,
684                                                  const GValue   *value2);
685 GST_EXPORT
686 gboolean        gst_value_can_union             (const GValue   *value1,
687                                                  const GValue   *value2);
688
689 /* intersection */
690
691 GST_EXPORT
692 gboolean        gst_value_intersect             (GValue         *dest,
693                                                  const GValue   *value1,
694                                                  const GValue   *value2);
695 GST_EXPORT
696 gboolean        gst_value_can_intersect         (const GValue   *value1,
697                                                  const GValue   *value2);
698
699 /* subtraction */
700
701 GST_EXPORT
702 gboolean        gst_value_subtract              (GValue         *dest,
703                                                  const GValue   *minuend,
704                                                  const GValue   *subtrahend);
705 GST_EXPORT
706 gboolean        gst_value_can_subtract          (const GValue   *minuend,
707                                                  const GValue   *subtrahend);
708
709 /* fixation */
710
711 GST_EXPORT
712 gboolean        gst_value_is_fixed              (const GValue   *value);
713
714 GST_EXPORT
715 gboolean        gst_value_fixate                (GValue         *dest,
716                                                  const GValue   *src);
717
718 /* Flagset registration wrapper */
719
720 GST_EXPORT
721 GType           gst_flagset_register (GType flags_type);
722
723 G_END_DECLS
724
725 #endif
726
727