123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566 |
- /* GStreamer
- * Copyright (C) <2003> David A. Schleef <[email protected]>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
- #ifndef __GST_VALUE_H__
- #define __GST_VALUE_H__
- #include <gst/gstconfig.h>
- #include <gst/gstcaps.h>
- #include <gst/gststructure.h>
- #include <gst/gstcapsfeatures.h>
- G_BEGIN_DECLS
- /**
- * GST_MAKE_FOURCC:
- * @a: the first character
- * @b: the second character
- * @c: the third character
- * @d: the fourth character
- *
- * Transform four characters into a #guint32 fourcc value with host
- * endianness.
- * <informalexample>
- * <programlisting>
- * guint32 fourcc = GST_MAKE_FOURCC ('M', 'J', 'P', 'G');
- * </programlisting>
- * </informalexample>
- */
- #define GST_MAKE_FOURCC(a,b,c,d) ((guint32)((a)|(b)<<8|(c)<<16|(d)<<24))
- /**
- * GST_STR_FOURCC:
- * @f: a string with at least four characters
- *
- * Transform an input string into a #guint32 fourcc value with host
- * endianness.
- * Caller is responsible for ensuring the input string consists of at least
- * four characters.
- * <informalexample>
- * <programlisting>
- * guint32 fourcc = GST_STR_FOURCC ("MJPG");
- * </programlisting>
- * </informalexample>
- */
- #define GST_STR_FOURCC(f) ((guint32)(((f)[0])|((f)[1]<<8)|((f)[2]<<16)|((f)[3]<<24)))
- /**
- * GST_FOURCC_FORMAT:
- *
- * Can be used together with #GST_FOURCC_ARGS to properly output a
- * #guint32 fourcc value in a printf()-style text message.
- * <informalexample>
- * <programlisting>
- * printf ("fourcc: %" GST_FOURCC_FORMAT "\n", GST_FOURCC_ARGS (fcc));
- * </programlisting>
- * </informalexample>
- */
- #define GST_FOURCC_FORMAT "c%c%c%c"
- /**
- * GST_FOURCC_ARGS:
- * @fourcc: a #guint32 fourcc value to output
- *
- * Can be used together with #GST_FOURCC_FORMAT to properly output a
- * #guint32 fourcc value in a printf()-style text message.
- */
- #define GST_FOURCC_ARGS(fourcc) \
- ((gchar) ((fourcc) &0xff)), \
- ((gchar) (((fourcc)>>8 )&0xff)), \
- ((gchar) (((fourcc)>>16)&0xff)), \
- ((gchar) (((fourcc)>>24)&0xff))
- /**
- * GST_VALUE_HOLDS_INT_RANGE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_INT_RANGE value.
- */
- #define GST_VALUE_HOLDS_INT_RANGE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_int_range_type)
- /**
- * GST_VALUE_HOLDS_INT64_RANGE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_INT64_RANGE value.
- */
- #define GST_VALUE_HOLDS_INT64_RANGE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_int64_range_type)
- /**
- * GST_VALUE_HOLDS_DOUBLE_RANGE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_DOUBLE_RANGE value.
- */
- #define GST_VALUE_HOLDS_DOUBLE_RANGE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_double_range_type)
- /**
- * GST_VALUE_HOLDS_FRACTION_RANGE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_FRACTION_RANGE value.
- */
- #define GST_VALUE_HOLDS_FRACTION_RANGE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_fraction_range_type)
- /**
- * GST_VALUE_HOLDS_LIST:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_LIST value.
- */
- #define GST_VALUE_HOLDS_LIST(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_value_list_type)
- /**
- * GST_VALUE_HOLDS_ARRAY:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_ARRAY value.
- */
- #define GST_VALUE_HOLDS_ARRAY(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_value_array_type)
- /**
- * GST_VALUE_HOLDS_CAPS:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_CAPS value.
- */
- #define GST_VALUE_HOLDS_CAPS(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_caps_type)
- /**
- * GST_VALUE_HOLDS_STRUCTURE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_STRUCTURE value.
- */
- #define GST_VALUE_HOLDS_STRUCTURE(x) (G_VALUE_HOLDS((x), _gst_structure_type))
- /**
- * GST_VALUE_HOLDS_CAPS_FEATURES:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_CAPS_FEATURES value.
- */
- #define GST_VALUE_HOLDS_CAPS_FEATURES(x) (G_VALUE_HOLDS((x), _gst_caps_features_type))
- /**
- * GST_VALUE_HOLDS_BUFFER:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_BUFFER value.
- */
- #define GST_VALUE_HOLDS_BUFFER(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_buffer_type)
- /**
- * GST_VALUE_HOLDS_SAMPLE:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_SAMPLE value.
- */
- #define GST_VALUE_HOLDS_SAMPLE(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_sample_type)
- /**
- * GST_VALUE_HOLDS_FRACTION:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_FRACTION value.
- */
- #define GST_VALUE_HOLDS_FRACTION(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_fraction_type)
- /**
- * GST_VALUE_HOLDS_DATE_TIME:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_DATE_TIME value.
- */
- #define GST_VALUE_HOLDS_DATE_TIME(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_date_time_type)
- /**
- * GST_VALUE_HOLDS_BITMASK:
- * @x: the #GValue to check
- *
- * Checks if the given #GValue contains a #GST_TYPE_BITMASK value.
- */
- #define GST_VALUE_HOLDS_BITMASK(x) ((x) != NULL && G_VALUE_TYPE(x) == _gst_bitmask_type)
- GST_EXPORT GType _gst_int_range_type;
- /**
- * GST_TYPE_INT_RANGE:
- *
- * a #GValue type that represents an integer range
- *
- * Returns: the #GType of GstIntRange
- */
- #define GST_TYPE_INT_RANGE (_gst_int_range_type)
- GST_EXPORT GType _gst_int64_range_type;
- /**
- * GST_TYPE_INT64_RANGE:
- *
- * a #GValue type that represents an #gint64 range
- *
- * Returns: the #GType of GstInt64Range
- */
- #define GST_TYPE_INT64_RANGE (_gst_int64_range_type)
- GST_EXPORT GType _gst_double_range_type;
- /**
- * GST_TYPE_DOUBLE_RANGE:
- *
- * a #GValue type that represents a floating point range with double precision
- *
- * Returns: the #GType of GstIntRange
- */
- #define GST_TYPE_DOUBLE_RANGE (_gst_double_range_type)
- GST_EXPORT GType _gst_fraction_range_type;
- /**
- * GST_TYPE_FRACTION_RANGE:
- *
- * a #GValue type that represents a GstFraction range
- *
- * Returns: the #GType of GstFractionRange
- */
- #define GST_TYPE_FRACTION_RANGE (_gst_fraction_range_type)
- GST_EXPORT GType _gst_value_list_type;
- /**
- * GST_TYPE_LIST:
- *
- * a #GValue type that represents an unordered list of #GValue values. This
- * is used for example to express a list of possible values for a field in
- * a caps structure, like a list of possible sample rates, of which only one
- * will be chosen in the end. This means that all values in the list are
- * meaningful on their own.
- *
- * Returns: the #GType of GstValueList (which is not explicitly typed)
- */
- #define GST_TYPE_LIST (_gst_value_list_type)
- GST_EXPORT GType _gst_value_array_type;
- /**
- * GST_TYPE_ARRAY:
- *
- * a #GValue type that represents an ordered list of #GValue values. This is
- * used to express a set of values that is meaningful only in their specific
- * combination and order of values. Each value on its own is not particularly
- * meaningful, only the ordered array in its entirety is meaningful. This is
- * used for example to express channel layouts for multichannel audio where
- * each channel needs to be mapped to a position in the room.
- *
- * Returns: the #GType of GstArrayList (which is not explicitly typed)
- */
- #define GST_TYPE_ARRAY (_gst_value_array_type)
- GST_EXPORT GType _gst_fraction_type;
- /**
- * GST_TYPE_FRACTION:
- *
- * a #GValue type that represents a fraction of an integer numerator over
- * an integer denominator
- *
- * Returns: the #GType of GstFraction (which is not explicitly typed)
- */
- #define GST_TYPE_FRACTION (_gst_fraction_type)
- GST_EXPORT GType _gst_bitmask_type;
- /**
- * GST_TYPE_BITMASK:
- *
- * a #GValue type that represents a 64-bit bitmask.
- *
- * Returns: the #GType of GstBitmask (which is not explicitly typed)
- */
- #define GST_TYPE_BITMASK (_gst_bitmask_type)
- /**
- * GST_TYPE_G_THREAD:
- *
- * a boxed #GValue type for #GThread that represents a thread.
- *
- * Returns: the #GType of GstGThread
- */
- #define GST_TYPE_G_THREAD gst_g_thread_get_type ()
- /**
- * GST_VALUE_LESS_THAN:
- *
- * Indicates that the first value provided to a comparison function
- * (gst_value_compare()) is lesser than the second one.
- */
- #define GST_VALUE_LESS_THAN (-1)
- /**
- * GST_VALUE_EQUAL:
- *
- * Indicates that the first value provided to a comparison function
- * (gst_value_compare()) is equal to the second one.
- */
- #define GST_VALUE_EQUAL 0
- /**
- * GST_VALUE_GREATER_THAN:
- *
- * Indicates that the first value provided to a comparison function
- * (gst_value_compare()) is greater than the second one.
- */
- #define GST_VALUE_GREATER_THAN 1
- /**
- * GST_VALUE_UNORDERED:
- *
- * Indicates that the comparison function (gst_value_compare()) can not
- * determine a order for the two provided values.
- */
- #define GST_VALUE_UNORDERED 2
- /**
- * GstValueCompareFunc:
- * @value1: first value for comparison
- * @value2: second value for comparison
- *
- * Used together with gst_value_compare() to compare #GValue items.
- *
- * Returns: one of GST_VALUE_LESS_THAN, GST_VALUE_EQUAL, GST_VALUE_GREATER_THAN
- * or GST_VALUE_UNORDERED
- */
- typedef gint (* GstValueCompareFunc) (const GValue *value1,
- const GValue *value2);
- /**
- * GstValueSerializeFunc:
- * @value1: a #GValue
- *
- * Used by gst_value_serialize() to obtain a non-binary form of the #GValue.
- *
- * Free-function: g_free
- *
- * Returns: (transfer full): the string representation of the value
- */
- typedef gchar * (* GstValueSerializeFunc) (const GValue *value1);
- /**
- * GstValueDeserializeFunc:
- * @dest: a #GValue
- * @s: a string
- *
- * Used by gst_value_deserialize() to parse a non-binary form into the #GValue.
- *
- * Returns: %TRUE for success
- */
- typedef gboolean (* GstValueDeserializeFunc) (GValue *dest,
- const gchar *s);
- typedef struct _GstValueTable GstValueTable;
- /**
- * GstValueTable:
- * @type: a #GType
- * @compare: a #GstValueCompareFunc
- * @serialize: a #GstValueSerializeFunc
- * @deserialize: a #GstValueDeserializeFunc
- *
- * VTable for the #GValue @type.
- */
- struct _GstValueTable {
- GType type;
- GstValueCompareFunc compare;
- GstValueSerializeFunc serialize;
- GstValueDeserializeFunc deserialize;
- /*< private >*/
- gpointer _gst_reserved [GST_PADDING];
- };
- GType gst_int_range_get_type (void);
- GType gst_int64_range_get_type (void);
- GType gst_double_range_get_type (void);
- GType gst_fraction_range_get_type (void);
- GType gst_fraction_get_type (void);
- GType gst_value_list_get_type (void);
- GType gst_value_array_get_type (void);
- GType gst_bitmask_get_type (void);
- /* Hide this compatibility type from introspection */
- #ifndef __GI_SCANNER__
- GType gst_g_thread_get_type (void);
- #endif
- void gst_value_register (const GstValueTable *table);
- void gst_value_init_and_copy (GValue *dest,
- const GValue *src);
- gchar * gst_value_serialize (const GValue *value) G_GNUC_MALLOC;
- gboolean gst_value_deserialize (GValue *dest,
- const gchar *src);
- /* list */
- void gst_value_list_append_value (GValue *value,
- const GValue *append_value);
- void gst_value_list_append_and_take_value (GValue *value,
- GValue *append_value);
- void gst_value_list_prepend_value (GValue *value,
- const GValue *prepend_value);
- void gst_value_list_concat (GValue *dest,
- const GValue *value1,
- const GValue *value2);
- void gst_value_list_merge (GValue *dest,
- const GValue *value1,
- const GValue *value2);
- guint gst_value_list_get_size (const GValue *value);
- const GValue * gst_value_list_get_value (const GValue *value,
- guint index);
- /* array */
- void gst_value_array_append_value (GValue *value,
- const GValue *append_value);
- void gst_value_array_append_and_take_value (GValue *value,
- GValue *append_value);
- void gst_value_array_prepend_value (GValue *value,
- const GValue *prepend_value);
- guint gst_value_array_get_size (const GValue *value);
- const GValue * gst_value_array_get_value (const GValue *value,
- guint index);
- /* int range */
- void gst_value_set_int_range (GValue *value,
- gint start,
- gint end);
- void gst_value_set_int_range_step (GValue *value,
- gint start,
- gint end,
- gint step);
- gint gst_value_get_int_range_min (const GValue *value);
- gint gst_value_get_int_range_max (const GValue *value);
- gint gst_value_get_int_range_step (const GValue *value);
- /* int64 range */
- void gst_value_set_int64_range (GValue *value,
- gint64 start,
- gint64 end);
- void gst_value_set_int64_range_step (GValue *value,
- gint64 start,
- gint64 end,
- gint64 step);
- gint64 gst_value_get_int64_range_min (const GValue *value);
- gint64 gst_value_get_int64_range_max (const GValue *value);
- gint64 gst_value_get_int64_range_step (const GValue *value);
- /* double range */
- void gst_value_set_double_range (GValue *value,
- gdouble start,
- gdouble end);
- gdouble gst_value_get_double_range_min (const GValue *value);
- gdouble gst_value_get_double_range_max (const GValue *value);
- /* caps */
- const GstCaps * gst_value_get_caps (const GValue *value);
- void gst_value_set_caps (GValue *value,
- const GstCaps *caps);
- /* structure */
- const GstStructure *
- gst_value_get_structure (const GValue *value);
- void gst_value_set_structure (GValue *value,
- const GstStructure *structure);
- /* caps features */
- const GstCapsFeatures *
- gst_value_get_caps_features (const GValue *value);
- void gst_value_set_caps_features (GValue *value,
- const GstCapsFeatures *features);
- /* fraction */
- void gst_value_set_fraction (GValue *value,
- gint numerator,
- gint denominator);
- gint gst_value_get_fraction_numerator (const GValue *value);
- gint gst_value_get_fraction_denominator (const GValue *value);
- gboolean gst_value_fraction_multiply (GValue *product,
- const GValue *factor1,
- const GValue *factor2);
- gboolean gst_value_fraction_subtract (GValue * dest,
- const GValue * minuend,
- const GValue * subtrahend);
- /* fraction range */
- void gst_value_set_fraction_range (GValue *value,
- const GValue *start,
- const GValue *end);
- void gst_value_set_fraction_range_full (GValue *value,
- gint numerator_start,
- gint denominator_start,
- gint numerator_end,
- gint denominator_end);
- const GValue *gst_value_get_fraction_range_min (const GValue *value);
- const GValue *gst_value_get_fraction_range_max (const GValue *value);
- /* bitmask */
- guint64 gst_value_get_bitmask (const GValue *value);
- void gst_value_set_bitmask (GValue *value,
- guint64 bitmask);
- /* compare */
- gint gst_value_compare (const GValue *value1,
- const GValue *value2);
- gboolean gst_value_can_compare (const GValue *value1,
- const GValue *value2);
- gboolean gst_value_is_subset (const GValue *value1,
- const GValue *value2);
- /* union */
- gboolean gst_value_union (GValue *dest,
- const GValue *value1,
- const GValue *value2);
- gboolean gst_value_can_union (const GValue *value1,
- const GValue *value2);
- /* intersection */
- gboolean gst_value_intersect (GValue *dest,
- const GValue *value1,
- const GValue *value2);
- gboolean gst_value_can_intersect (const GValue *value1,
- const GValue *value2);
- /* subtraction */
- gboolean gst_value_subtract (GValue *dest,
- const GValue *minuend,
- const GValue *subtrahend);
- gboolean gst_value_can_subtract (const GValue *minuend,
- const GValue *subtrahend);
- /* fixation */
- gboolean gst_value_is_fixed (const GValue *value);
- gboolean gst_value_fixate (GValue *dest,
- const GValue *src);
- G_END_DECLS
- #endif
|