2003-11-11 19:14:14 +00:00
|
|
|
/* GStreamer
|
2004-03-12 18:25:07 +00:00
|
|
|
* Copyright (C) 2003 David A. Schleef <ds@schleef.org>
|
2003-11-11 19:14:14 +00:00
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
#ifndef __GST_CAPS_H__
|
|
|
|
#define __GST_CAPS_H__
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
#include <gst/gstconfig.h>
|
2009-12-04 21:32:38 +00:00
|
|
|
#include <gst/gstminiobject.h>
|
2003-11-11 19:14:14 +00:00
|
|
|
#include <gst/gststructure.h>
|
2005-11-21 19:58:23 +00:00
|
|
|
#include <gst/glib-compat.h>
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2010-11-02 12:31:25 +00:00
|
|
|
extern GType _gst_caps_type;
|
|
|
|
|
|
|
|
#define GST_TYPE_CAPS (_gst_caps_type)
|
2004-09-26 17:35:08 +00:00
|
|
|
#define GST_CAPS(object) ((GstCaps*)object)
|
2009-12-07 19:32:12 +00:00
|
|
|
#define GST_IS_CAPS(object) (GST_IS_MINI_OBJECT_TYPE(object, GST_TYPE_CAPS))
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-12-20 11:12:53 +00:00
|
|
|
#define GST_TYPE_STATIC_CAPS (gst_static_caps_get_type())
|
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
2005-11-20 13:28:11 +00:00
|
|
|
* GstCapsFlags:
|
|
|
|
* @GST_CAPS_FLAGS_ANY: Caps has no specific content, but can contain
|
|
|
|
* anything.
|
2005-08-27 10:57:00 +00:00
|
|
|
*
|
2005-11-20 13:28:11 +00:00
|
|
|
* Extra flags for a caps.
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2005-11-20 13:28:11 +00:00
|
|
|
typedef enum {
|
2009-12-02 20:21:48 +00:00
|
|
|
GST_CAPS_FLAGS_ANY = (GST_MINI_OBJECT_FLAG_LAST << 0)
|
2005-11-20 13:28:11 +00:00
|
|
|
} GstCapsFlags;
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_ANY:
|
|
|
|
*
|
|
|
|
* Means that the element/pad can output 'anything'. Useful for elements
|
|
|
|
* that output unknown media, such as filesrc.
|
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_CAPS_ANY gst_caps_new_any()
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_NONE:
|
|
|
|
*
|
|
|
|
* The opposite of %GST_CAPS_ANY: it means that the pad/element outputs an
|
|
|
|
* undefined media type that can not be detected.
|
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_CAPS_NONE gst_caps_new_empty()
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_STATIC_CAPS_ANY:
|
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Creates a new #GstCaps static caps that matches anything.
|
|
|
|
* This can be used in pad templates.
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_STATIC_CAPS_ANY GST_STATIC_CAPS("ANY")
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_STATIC_CAPS_NONE:
|
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Creates a new #GstCaps static caps that matches nothing.
|
|
|
|
* This can be used in pad templates.
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_STATIC_CAPS_NONE GST_STATIC_CAPS("NONE")
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_IS_SIMPLE:
|
|
|
|
* @caps: the #GstCaps instance to check
|
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Convenience macro that checks if the number of structures in the given caps
|
2005-08-27 10:57:00 +00:00
|
|
|
* is exactly one.
|
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_CAPS_IS_SIMPLE(caps) (gst_caps_get_size(caps) == 1)
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* GST_STATIC_CAPS:
|
2005-09-11 12:57:36 +00:00
|
|
|
* @string: the string describing the caps
|
2005-08-27 10:57:00 +00:00
|
|
|
*
|
2005-09-11 12:57:36 +00:00
|
|
|
* Creates a new #GstCaps static caps from an input string.
|
|
|
|
* This can be used in pad templates.
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2004-03-12 18:25:07 +00:00
|
|
|
#define GST_STATIC_CAPS(string) \
|
|
|
|
{ \
|
2009-12-04 21:32:38 +00:00
|
|
|
/* miniobject */ { { 0, 0, 0, 0, NULL, NULL, NULL }, \
|
|
|
|
/* caps */ NULL, GST_PADDING_INIT }, \
|
2004-03-12 18:25:07 +00:00
|
|
|
/* string */ string, \
|
2006-09-20 16:17:26 +00:00
|
|
|
GST_PADDING_INIT \
|
2004-03-12 18:25:07 +00:00
|
|
|
}
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
typedef struct _GstCaps GstCaps;
|
|
|
|
typedef struct _GstStaticCaps GstStaticCaps;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2009-12-02 20:21:48 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_FLAGS:
|
|
|
|
* @caps: a #GstCaps.
|
|
|
|
*
|
|
|
|
* A flags word containing #GstCapsFlags flags set on this caps.
|
|
|
|
*/
|
|
|
|
#define GST_CAPS_FLAGS(caps) GST_MINI_OBJECT_FLAGS(caps)
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/* refcount */
|
2005-11-04 20:12:01 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_REFCOUNT:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
|
|
|
* Get access to the reference count field of the caps
|
|
|
|
*/
|
2009-12-02 20:21:48 +00:00
|
|
|
#define GST_CAPS_REFCOUNT(caps) GST_MINI_OBJECT_REFCOUNT(caps)
|
2005-11-04 20:12:01 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_REFCOUNT_VALUE:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
|
|
|
* Get the reference count value of the caps.
|
|
|
|
*/
|
2009-12-02 20:21:48 +00:00
|
|
|
#define GST_CAPS_REFCOUNT_VALUE(caps) GST_MINI_OBJECT_REFCOUNT_VALUE(caps)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GST_CAPS_FLAG_IS_SET:
|
2009-12-03 19:49:30 +00:00
|
|
|
* @caps: a #GstCaps.
|
|
|
|
* @flag: the #GstCapsFlag to check.
|
2009-12-02 20:21:48 +00:00
|
|
|
*
|
|
|
|
* Gives the status of a specific flag on a caps.
|
|
|
|
*/
|
|
|
|
#define GST_CAPS_FLAG_IS_SET(caps,flag) GST_MINI_OBJECT_FLAG_IS_SET (caps, flag)
|
|
|
|
/**
|
|
|
|
* GST_CAPS_FLAG_SET:
|
2009-12-03 19:49:30 +00:00
|
|
|
* @caps: a #GstCaps.
|
|
|
|
* @flag: the #GstCapsFlag to set.
|
2009-12-02 20:21:48 +00:00
|
|
|
*
|
|
|
|
* Sets a caps flag on a caps.
|
|
|
|
*/
|
|
|
|
#define GST_CAPS_FLAG_SET(caps,flag) GST_MINI_OBJECT_FLAG_SET (caps, flag)
|
|
|
|
/**
|
|
|
|
* GST_CAPS_FLAG_UNSET:
|
2009-12-03 19:49:30 +00:00
|
|
|
* @caps: a #GstCaps.
|
|
|
|
* @flag: the #GstCapsFlag to clear.
|
2009-12-02 20:21:48 +00:00
|
|
|
*
|
|
|
|
* Clears a caps flag.
|
|
|
|
*/
|
|
|
|
#define GST_CAPS_FLAG_UNSET(caps,flag) GST_MINI_OBJECT_FLAG_UNSET (caps, flag)
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2009-12-03 19:49:30 +00:00
|
|
|
/* refcounting */
|
|
|
|
/**
|
|
|
|
* gst_caps_ref:
|
|
|
|
* @caps: the #GstCaps to reference
|
|
|
|
*
|
|
|
|
* Add a reference to a #GstCaps object.
|
|
|
|
*
|
|
|
|
* From this point on, until the caller calls gst_caps_unref() or
|
|
|
|
* gst_caps_make_writable(), it is guaranteed that the caps object will not
|
|
|
|
* change. This means its structures won't change, etc. To use a #GstCaps
|
|
|
|
* object, you must always have a refcount on it -- either the one made
|
|
|
|
* implicitly by e.g. gst_caps_new_simple(), or via taking one explicitly with
|
|
|
|
* this function.
|
|
|
|
*
|
|
|
|
* Returns: the same #GstCaps object.
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstCaps * gst_caps_ref (GstCaps * caps);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline GstCaps *
|
|
|
|
gst_caps_ref (GstCaps * caps)
|
|
|
|
{
|
|
|
|
return (GstCaps *) gst_mini_object_ref (GST_MINI_OBJECT_CAST (caps));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_unref:
|
|
|
|
* @caps: a #GstCaps.
|
|
|
|
*
|
|
|
|
* Unref a #GstCaps and and free all its structures and the
|
|
|
|
* structures' values when the refcount reaches 0.
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC void gst_caps_unref (GstCaps * caps);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
gst_caps_unref (GstCaps * caps)
|
|
|
|
{
|
|
|
|
gst_mini_object_unref (GST_MINI_OBJECT_CAST (caps));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy caps */
|
|
|
|
/**
|
|
|
|
* gst_caps_copy:
|
|
|
|
* @caps: a #GstCaps.
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps as a copy of the old @caps. The new caps will have a
|
|
|
|
* refcount of 1, owned by the caller. The structures are copied as well.
|
|
|
|
*
|
|
|
|
* Note that this function is the semantic equivalent of a gst_caps_ref()
|
|
|
|
* followed by a gst_caps_make_writable(). If you only want to hold on to a
|
|
|
|
* reference to the data, you should use gst_caps_ref().
|
|
|
|
*
|
|
|
|
* When you are finished with the caps, call gst_caps_unref() on it.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
|
|
|
#ifdef _FOOL_GTK_DOC_
|
|
|
|
G_INLINE_FUNC GstCaps * gst_caps_copy (const GstCaps * caps);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline GstCaps *
|
|
|
|
gst_caps_copy (const GstCaps * caps)
|
|
|
|
{
|
|
|
|
return GST_CAPS (gst_mini_object_copy (GST_MINI_OBJECT_CAST (caps)));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-09 12:01:46 +00:00
|
|
|
/**
|
|
|
|
* GstCaps:
|
2009-11-28 23:21:24 +00:00
|
|
|
* @mini_object: the parent type
|
2005-11-09 12:01:46 +00:00
|
|
|
*
|
|
|
|
* Object describing media types.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstCaps {
|
2009-11-28 23:21:24 +00:00
|
|
|
GstMiniObject mini_object;
|
2005-11-20 13:28:11 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
2003-11-11 19:14:14 +00:00
|
|
|
GPtrArray *structs;
|
2004-03-15 22:42:34 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
/*< private >*/
|
2004-09-26 17:35:08 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2003-11-11 19:14:14 +00:00
|
|
|
};
|
|
|
|
|
2005-11-09 12:01:46 +00:00
|
|
|
/**
|
|
|
|
* GstStaticCaps:
|
|
|
|
* @caps: the cached #GstCaps
|
|
|
|
* @string: a string describing a caps
|
|
|
|
*
|
|
|
|
* Datastructure to initialize #GstCaps from a string description usually
|
|
|
|
* used in conjunction with GST_STATIC_CAPS() and gst_static_caps_get() to
|
|
|
|
* instantiate a #GstCaps.
|
|
|
|
*/
|
2004-03-15 14:43:35 +00:00
|
|
|
struct _GstStaticCaps {
|
2005-03-07 18:27:42 +00:00
|
|
|
/*< public >*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
const char *string;
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
/*< private >*/
|
2004-09-26 17:35:08 +00:00
|
|
|
gpointer _gst_reserved[GST_PADDING];
|
2003-11-11 19:14:14 +00:00
|
|
|
};
|
|
|
|
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_caps_new_empty (void);
|
|
|
|
GstCaps * gst_caps_new_any (void);
|
|
|
|
GstCaps * gst_caps_new_simple (const char *media_type,
|
2006-08-28 16:39:20 +00:00
|
|
|
const char *fieldname,
|
|
|
|
...);
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_caps_new_full (GstStructure *struct1, ...);
|
|
|
|
GstCaps * gst_caps_new_full_valist (GstStructure *structure,
|
2006-08-28 16:39:20 +00:00
|
|
|
va_list var_args);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
/* reference counting */
|
2011-02-23 11:44:54 +00:00
|
|
|
GstCaps * gst_caps_make_writable (GstCaps *caps) G_GNUC_WARN_UNUSED_RESULT;
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2006-08-28 16:39:20 +00:00
|
|
|
GType gst_static_caps_get_type (void);
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_static_caps_get (GstStaticCaps *static_caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
/* manipulation */
|
2006-08-21 14:54:31 +00:00
|
|
|
void gst_caps_append (GstCaps *caps1,
|
2006-08-28 16:39:20 +00:00
|
|
|
GstCaps *caps2);
|
2006-08-21 14:54:31 +00:00
|
|
|
void gst_caps_merge (GstCaps *caps1,
|
|
|
|
GstCaps *caps2);
|
|
|
|
void gst_caps_append_structure (GstCaps *caps,
|
2006-08-28 16:39:20 +00:00
|
|
|
GstStructure *structure);
|
|
|
|
void gst_caps_remove_structure (GstCaps *caps, guint idx);
|
|
|
|
void gst_caps_merge_structure (GstCaps *caps,
|
|
|
|
GstStructure *structure);
|
2006-08-21 14:54:31 +00:00
|
|
|
guint gst_caps_get_size (const GstCaps *caps);
|
|
|
|
GstStructure * gst_caps_get_structure (const GstCaps *caps,
|
2006-08-28 16:39:20 +00:00
|
|
|
guint index);
|
2010-06-14 09:39:40 +00:00
|
|
|
GstStructure * gst_caps_steal_structure (GstCaps *caps,
|
|
|
|
guint index);
|
2006-08-28 16:39:20 +00:00
|
|
|
GstCaps * gst_caps_copy_nth (const GstCaps *caps, guint nth);
|
|
|
|
void gst_caps_truncate (GstCaps *caps);
|
2009-10-07 13:32:18 +00:00
|
|
|
void gst_caps_set_value (GstCaps *caps,
|
|
|
|
const char *field,
|
|
|
|
const GValue *value);
|
2006-08-21 14:54:31 +00:00
|
|
|
void gst_caps_set_simple (GstCaps *caps,
|
2008-03-24 10:33:41 +00:00
|
|
|
const char *field, ...) G_GNUC_NULL_TERMINATED;
|
2006-08-21 14:54:31 +00:00
|
|
|
void gst_caps_set_simple_valist (GstCaps *caps,
|
2008-03-24 10:33:41 +00:00
|
|
|
const char *field,
|
2006-08-28 16:39:20 +00:00
|
|
|
va_list varargs);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
/* tests */
|
2006-08-21 14:54:31 +00:00
|
|
|
gboolean gst_caps_is_any (const GstCaps *caps);
|
|
|
|
gboolean gst_caps_is_empty (const GstCaps *caps);
|
|
|
|
gboolean gst_caps_is_fixed (const GstCaps *caps);
|
|
|
|
gboolean gst_caps_is_always_compatible (const GstCaps *caps1,
|
2006-08-28 16:39:20 +00:00
|
|
|
const GstCaps *caps2);
|
|
|
|
gboolean gst_caps_is_subset (const GstCaps *subset,
|
|
|
|
const GstCaps *superset);
|
|
|
|
gboolean gst_caps_is_equal (const GstCaps *caps1,
|
|
|
|
const GstCaps *caps2);
|
|
|
|
gboolean gst_caps_is_equal_fixed (const GstCaps *caps1,
|
|
|
|
const GstCaps *caps2);
|
2009-07-22 06:38:10 +00:00
|
|
|
gboolean gst_caps_can_intersect (const GstCaps * caps1,
|
|
|
|
const GstCaps * caps2);
|
2005-08-24 16:09:50 +00:00
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
/* operations */
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_caps_intersect (const GstCaps *caps1,
|
2006-08-28 16:39:20 +00:00
|
|
|
const GstCaps *caps2);
|
|
|
|
GstCaps * gst_caps_subtract (const GstCaps *minuend,
|
|
|
|
const GstCaps *subtrahend);
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_caps_union (const GstCaps *caps1,
|
2006-08-28 16:39:20 +00:00
|
|
|
const GstCaps *caps2);
|
2006-08-21 14:54:31 +00:00
|
|
|
GstCaps * gst_caps_normalize (const GstCaps *caps);
|
2006-08-28 16:39:20 +00:00
|
|
|
gboolean gst_caps_do_simplify (GstCaps *caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
/* utility */
|
2006-08-21 14:54:31 +00:00
|
|
|
void gst_caps_replace (GstCaps **caps,
|
2006-08-28 16:39:20 +00:00
|
|
|
GstCaps *newcaps);
|
2006-08-21 14:54:31 +00:00
|
|
|
gchar * gst_caps_to_string (const GstCaps *caps);
|
|
|
|
GstCaps * gst_caps_from_string (const gchar *string);
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
G_END_DECLS
|
2004-03-15 14:43:35 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
#endif /* __GST_CAPS_H__ */
|