2003-11-11 19:14:14 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2003> David A. Schleef <ds@schleef.org>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:44:48 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2003-11-11 19:14:14 +00:00
|
|
|
*/
|
2005-10-15 16:01:57 +00:00
|
|
|
|
2005-08-27 10:57:00 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gstcaps
|
|
|
|
* @short_description: Structure describing sets of media formats
|
2012-03-28 16:12:23 +00:00
|
|
|
* @see_also: #GstStructure, #GstMiniObject
|
2005-08-27 10:57:00 +00:00
|
|
|
*
|
2012-03-28 16:12:23 +00:00
|
|
|
* Caps (capabilities) are lightweight refcounted objects describing media types.
|
2005-11-09 12:01:46 +00:00
|
|
|
* They are composed of an array of #GstStructure.
|
|
|
|
*
|
|
|
|
* Caps are exposed on #GstPadTemplate to describe all possible types a
|
2007-02-13 09:10:53 +00:00
|
|
|
* given pad can handle. They are also stored in the #GstRegistry along with
|
|
|
|
* a description of the #GstElement.
|
2005-11-09 12:01:46 +00:00
|
|
|
*
|
2012-12-05 13:56:48 +00:00
|
|
|
* Caps are exposed on the element pads using the gst_pad_query_caps() pad
|
2006-07-02 12:54:03 +00:00
|
|
|
* function. This function describes the possible types that the pad can
|
2005-11-18 16:04:28 +00:00
|
|
|
* handle or produce at runtime.
|
2005-11-09 12:01:46 +00:00
|
|
|
*
|
|
|
|
* A #GstCaps can be constructed with the following code fragment:
|
|
|
|
*
|
|
|
|
* <example>
|
|
|
|
* <title>Creating caps</title>
|
|
|
|
* <programlisting>
|
|
|
|
* GstCaps *caps;
|
2011-08-22 10:19:19 +00:00
|
|
|
* caps = gst_caps_new_simple ("video/x-raw",
|
2012-01-27 11:16:05 +00:00
|
|
|
* "format", G_TYPE_STRING, "I420",
|
2007-02-13 09:10:53 +00:00
|
|
|
* "framerate", GST_TYPE_FRACTION, 25, 1,
|
2005-11-09 12:01:46 +00:00
|
|
|
* "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1,
|
2006-07-02 12:54:03 +00:00
|
|
|
* "width", G_TYPE_INT, 320,
|
|
|
|
* "height", G_TYPE_INT, 240,
|
2005-11-09 12:01:46 +00:00
|
|
|
* NULL);
|
|
|
|
* </programlisting>
|
|
|
|
* </example>
|
|
|
|
*
|
|
|
|
* A #GstCaps is fixed when it has no properties with ranges or lists. Use
|
2012-03-28 16:12:23 +00:00
|
|
|
* gst_caps_is_fixed() to test for fixed caps. Fixed caps can be used in a
|
|
|
|
* caps event to notify downstream elements of the current media type.
|
2005-11-09 12:01:46 +00:00
|
|
|
*
|
2005-11-18 16:04:28 +00:00
|
|
|
* Various methods exist to work with the media types such as subtracting
|
2005-11-09 12:01:46 +00:00
|
|
|
* or intersecting.
|
|
|
|
*
|
2013-09-25 22:06:55 +00:00
|
|
|
* Be aware that the current #GstCaps / #GstStructure serialization into string
|
|
|
|
* has limited support for nested #GstCaps / #GstStructure fields. It can only
|
|
|
|
* support one level of nesting. Using more levels will lead to unexpected
|
|
|
|
* behavior when using serialization features, such as gst_caps_to_string() or
|
|
|
|
* gst_value_serialize() and their counterparts.
|
|
|
|
*
|
2012-03-28 16:12:23 +00:00
|
|
|
* Last reviewed on 2011-03-28 (0.11.3)
|
2005-08-27 10:57:00 +00:00
|
|
|
*/
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
2004-04-22 16:39:23 +00:00
|
|
|
#include <signal.h>
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-05-03 16:03:24 +00:00
|
|
|
#include "gst_private.h"
|
2004-05-07 02:36:28 +00:00
|
|
|
#include <gst/gst.h>
|
2009-10-07 13:32:18 +00:00
|
|
|
#include <gobject/gvaluecollector.h>
|
2004-05-03 16:03:24 +00:00
|
|
|
|
2005-10-15 16:16:04 +00:00
|
|
|
#define DEBUG_REFCOUNT
|
2005-03-07 18:27:42 +00:00
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
typedef struct _GstCapsArrayElement
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
GstCapsFeatures *features;
|
|
|
|
} GstCapsArrayElement;
|
|
|
|
|
2012-01-26 13:45:30 +00:00
|
|
|
typedef struct _GstCapsImpl
|
|
|
|
{
|
|
|
|
GstCaps caps;
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
GArray *array;
|
2012-01-26 13:45:30 +00:00
|
|
|
} GstCapsImpl;
|
2011-06-22 10:28:14 +00:00
|
|
|
|
2012-01-26 13:45:30 +00:00
|
|
|
#define GST_CAPS_ARRAY(c) (((GstCapsImpl *)(c))->array)
|
2011-06-22 10:28:14 +00:00
|
|
|
|
|
|
|
#define GST_CAPS_LEN(c) (GST_CAPS_ARRAY(c)->len)
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#define IS_WRITABLE(caps) \
|
2009-12-03 19:49:30 +00:00
|
|
|
(GST_CAPS_REFCOUNT_VALUE (caps) == 1)
|
gst/elements/gsttee.c: Remove usage of gst_pad_proxy_fixate.
Original commit message from CVS:
* gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
Remove usage of gst_pad_proxy_fixate.
* gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
(gst_caps_split_one), (gst_caps_replace):
Add poisoning code.
* gst/gstmarshal.list:
Add pointer__pointer for fixate signal
* gst/gstpad.c: (gst_real_pad_class_init),
(_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
(_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
(gst_pad_set_explicit_caps), (gst_pad_template_new):
Add poisoning code. Add fixate signal on RealPad. Change
set_explicit_caps() to take const GstCaps, like try_set_caps().
* gst/gstpad.h:
* testsuite/caps/Makefile.am:
* testsuite/caps/app_fixate.c: Add a test for the fixate signal
2004-01-04 23:43:11 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
/* same as gst_caps_is_any () */
|
|
|
|
#define CAPS_IS_ANY(caps) \
|
2011-11-28 13:24:16 +00:00
|
|
|
(GST_CAPS_FLAGS(caps) & GST_CAPS_FLAG_ANY)
|
2009-10-23 15:47:43 +00:00
|
|
|
|
|
|
|
/* same as gst_caps_is_empty () */
|
|
|
|
#define CAPS_IS_EMPTY(caps) \
|
|
|
|
(!CAPS_IS_ANY(caps) && CAPS_IS_EMPTY_SIMPLE(caps))
|
|
|
|
|
|
|
|
#define CAPS_IS_EMPTY_SIMPLE(caps) \
|
2011-06-22 10:28:14 +00:00
|
|
|
((GST_CAPS_ARRAY (caps) == NULL) || (GST_CAPS_LEN (caps) == 0))
|
2009-10-23 15:47:43 +00:00
|
|
|
|
2013-04-06 19:49:25 +00:00
|
|
|
#define gst_caps_features_copy_conditional(f) ((f && (gst_caps_features_is_any (f) || !gst_caps_features_is_equal (f, GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))) ? gst_caps_features_copy (f) : NULL)
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
/* quick way to get a caps structure at an index without doing a type or array
|
|
|
|
* length check */
|
|
|
|
#define gst_caps_get_structure_unchecked(caps, index) \
|
2013-03-30 14:35:19 +00:00
|
|
|
(g_array_index (GST_CAPS_ARRAY (caps), GstCapsArrayElement, (index)).structure)
|
|
|
|
#define gst_caps_get_features_unchecked(caps, index) \
|
|
|
|
(g_array_index (GST_CAPS_ARRAY (caps), GstCapsArrayElement, (index)).features)
|
2010-05-22 20:07:10 +00:00
|
|
|
/* quick way to append a structure without checking the args */
|
2013-03-30 14:35:19 +00:00
|
|
|
#define gst_caps_append_structure_unchecked(caps, s, f) G_STMT_START{\
|
|
|
|
GstCapsArrayElement __e={s, f}; \
|
|
|
|
if (gst_structure_set_parent_refcount (__e.structure, &GST_MINI_OBJECT_REFCOUNT(caps)) && \
|
|
|
|
(!__e.features || gst_caps_features_set_parent_refcount (__e.features, &GST_MINI_OBJECT_REFCOUNT(caps)))) \
|
|
|
|
g_array_append_val (GST_CAPS_ARRAY (caps), __e); \
|
2010-05-22 20:07:10 +00:00
|
|
|
}G_STMT_END
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
|
2007-01-25 17:41:39 +00:00
|
|
|
/* lock to protect multiple invocations of static caps to caps conversion */
|
|
|
|
G_LOCK_DEFINE_STATIC (static_caps_lock);
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
static void gst_caps_transform_to_string (const GValue * src_value,
|
|
|
|
GValue * dest_value);
|
|
|
|
static gboolean gst_caps_from_string_inplace (GstCaps * caps,
|
|
|
|
const gchar * string);
|
2004-03-12 19:32:26 +00:00
|
|
|
|
2010-11-02 12:31:25 +00:00
|
|
|
GType _gst_caps_type = 0;
|
2011-12-20 12:14:07 +00:00
|
|
|
GstCaps *_gst_caps_any;
|
2011-12-21 10:08:34 +00:00
|
|
|
GstCaps *_gst_caps_none;
|
2009-12-05 13:16:57 +00:00
|
|
|
|
2011-08-29 15:06:18 +00:00
|
|
|
GST_DEFINE_MINI_OBJECT_TYPE (GstCaps, gst_caps);
|
2011-08-29 13:34:30 +00:00
|
|
|
|
2010-11-02 12:31:25 +00:00
|
|
|
void
|
2011-08-29 11:27:26 +00:00
|
|
|
_priv_gst_caps_initialize (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2011-08-29 13:34:30 +00:00
|
|
|
_gst_caps_type = gst_caps_get_type ();
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2011-12-20 12:14:07 +00:00
|
|
|
_gst_caps_any = gst_caps_new_any ();
|
2011-12-21 10:08:34 +00:00
|
|
|
_gst_caps_none = gst_caps_new_empty ();
|
2011-12-20 12:14:07 +00:00
|
|
|
|
2011-05-11 14:01:41 +00:00
|
|
|
g_value_register_transform_func (_gst_caps_type,
|
|
|
|
G_TYPE_STRING, gst_caps_transform_to_string);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2009-12-03 19:49:30 +00:00
|
|
|
static GstCaps *
|
|
|
|
_gst_caps_copy (const GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstCaps *newcaps;
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2009-12-03 19:49:30 +00:00
|
|
|
guint i, n;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
|
|
|
|
|
|
|
newcaps = gst_caps_new_empty ();
|
|
|
|
GST_CAPS_FLAGS (newcaps) = GST_CAPS_FLAGS (caps);
|
2011-06-22 10:28:14 +00:00
|
|
|
n = GST_CAPS_LEN (caps);
|
2012-02-10 10:09:01 +00:00
|
|
|
|
|
|
|
GST_CAT_DEBUG_OBJECT (GST_CAT_PERFORMANCE, caps, "doing copy %p -> %p",
|
|
|
|
caps, newcaps);
|
2009-12-03 19:49:30 +00:00
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
structure = gst_caps_get_structure_unchecked (caps, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
features = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
gst_caps_append_structure_full (newcaps, gst_structure_copy (structure),
|
|
|
|
gst_caps_features_copy_conditional (features));
|
2009-12-03 19:49:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
/* creation/deletion */
|
2009-12-02 20:21:48 +00:00
|
|
|
static void
|
|
|
|
_gst_caps_free (GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2009-12-02 20:21:48 +00:00
|
|
|
guint i, len;
|
|
|
|
|
|
|
|
/* The refcount must be 0, but since we're only called by gst_caps_unref,
|
|
|
|
* don't bother testing. */
|
2011-06-22 10:28:14 +00:00
|
|
|
len = GST_CAPS_LEN (caps);
|
2009-12-02 20:21:48 +00:00
|
|
|
/* This can be used to get statistics about caps sizes */
|
|
|
|
/*GST_CAT_INFO (GST_CAT_CAPS, "caps size: %d", len); */
|
|
|
|
for (i = 0; i < len; i++) {
|
2013-03-30 14:35:19 +00:00
|
|
|
structure = gst_caps_get_structure_unchecked (caps, i);
|
2009-12-02 20:21:48 +00:00
|
|
|
gst_structure_set_parent_refcount (structure, NULL);
|
|
|
|
gst_structure_free (structure);
|
2013-03-30 14:35:19 +00:00
|
|
|
features = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (features) {
|
|
|
|
gst_caps_features_set_parent_refcount (features, NULL);
|
|
|
|
gst_caps_features_free (features);
|
|
|
|
}
|
2009-12-02 20:21:48 +00:00
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
g_array_free (GST_CAPS_ARRAY (caps), TRUE);
|
2009-12-02 20:21:48 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_REFCOUNT
|
2012-05-27 19:31:30 +00:00
|
|
|
GST_CAT_TRACE (GST_CAT_CAPS, "freeing caps %p", caps);
|
2009-12-02 20:21:48 +00:00
|
|
|
#endif
|
2012-06-14 22:45:14 +00:00
|
|
|
g_slice_free1 (sizeof (GstCapsImpl), caps);
|
2009-12-02 20:21:48 +00:00
|
|
|
}
|
2004-01-15 09:03:42 +00:00
|
|
|
|
2009-12-05 13:16:57 +00:00
|
|
|
static void
|
2012-06-14 22:45:14 +00:00
|
|
|
gst_caps_init (GstCaps * caps)
|
2009-12-05 13:16:57 +00:00
|
|
|
{
|
2012-07-04 14:38:15 +00:00
|
|
|
gst_mini_object_init (GST_MINI_OBJECT_CAST (caps), 0, _gst_caps_type,
|
2012-06-23 18:56:12 +00:00
|
|
|
(GstMiniObjectCopyFunction) _gst_caps_copy, NULL,
|
|
|
|
(GstMiniObjectFreeFunction) _gst_caps_free);
|
2009-12-05 13:16:57 +00:00
|
|
|
|
|
|
|
/* the 32 has been determined by logging caps sizes in _gst_caps_free
|
|
|
|
* but g_ptr_array uses 16 anyway if it expands once, so this does not help
|
2012-03-29 13:45:00 +00:00
|
|
|
* in practice
|
2011-06-22 10:28:14 +00:00
|
|
|
* GST_CAPS_ARRAY (caps) = g_ptr_array_sized_new (32);
|
2009-12-05 13:16:57 +00:00
|
|
|
*/
|
2013-03-30 14:35:19 +00:00
|
|
|
GST_CAPS_ARRAY (caps) =
|
|
|
|
g_array_new (FALSE, TRUE, sizeof (GstCapsArrayElement));
|
2009-12-05 13:16:57 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_empty:
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that is empty. That is, the returned
|
|
|
|
* #GstCaps contains no media formats.
|
2012-03-11 17:57:44 +00:00
|
|
|
* The #GstCaps is guaranteed to be writable.
|
2005-10-10 09:48:21 +00:00
|
|
|
* Caller is responsible for unreffing the returned caps.
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_caps_new_empty (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2009-12-03 19:49:30 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
|
2012-01-26 13:57:14 +00:00
|
|
|
caps = (GstCaps *) g_slice_new (GstCapsImpl);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2012-06-14 22:45:14 +00:00
|
|
|
gst_caps_init (caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
#ifdef DEBUG_REFCOUNT
|
2011-09-10 17:15:49 +00:00
|
|
|
GST_CAT_TRACE (GST_CAT_CAPS, "created caps %p", caps);
|
2005-03-07 18:27:42 +00:00
|
|
|
#endif
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
* gst_caps_new_any:
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that indicates that it is compatible with
|
|
|
|
* any media format.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
|
|
|
gst_caps_new_any (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
GstCaps *caps = gst_caps_new_empty ();
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2011-11-28 13:24:16 +00:00
|
|
|
GST_CAPS_FLAG_SET (caps, GST_CAPS_FLAG_ANY);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2011-10-27 15:09:04 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_empty_simple:
|
|
|
|
* @media_type: the media type of the structure
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains one #GstStructure with name
|
|
|
|
* @media_type.
|
|
|
|
* Caller is responsible for unreffing the returned caps.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the new #GstCaps
|
|
|
|
*/
|
|
|
|
GstCaps *
|
|
|
|
gst_caps_new_empty_simple (const char *media_type)
|
|
|
|
{
|
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
caps = gst_caps_new_empty ();
|
2011-10-29 07:02:00 +00:00
|
|
|
structure = gst_structure_new_empty (media_type);
|
2011-10-27 15:09:04 +00:00
|
|
|
if (structure)
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
2011-10-27 15:09:04 +00:00
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_simple:
|
|
|
|
* @media_type: the media type of the structure
|
2004-03-30 07:36:19 +00:00
|
|
|
* @fieldname: first field to set
|
2004-01-15 09:03:42 +00:00
|
|
|
* @...: additional arguments
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains one #GstStructure. The
|
|
|
|
* structure is defined by the arguments, which have the same format
|
2005-11-09 12:01:46 +00:00
|
|
|
* as gst_structure_new().
|
2005-10-10 09:48:21 +00:00
|
|
|
* Caller is responsible for unreffing the returned caps.
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_new_simple (const char *media_type, const char *fieldname, ...)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
va_list var_args;
|
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
va_start (var_args, fieldname);
|
|
|
|
structure = gst_structure_new_valist (media_type, fieldname, var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
|
2011-03-03 22:28:25 +00:00
|
|
|
if (structure)
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
2011-03-03 22:28:25 +00:00
|
|
|
else
|
|
|
|
gst_caps_replace (&caps, NULL);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_full:
|
|
|
|
* @struct1: the first structure to add
|
|
|
|
* @...: additional structures to add
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps and adds all the structures listed as
|
|
|
|
* arguments. The list must be NULL-terminated. The structures
|
|
|
|
* are not copied; the returned #GstCaps owns the structures.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_new_full (GstStructure * struct1, ...)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
va_list var_args;
|
|
|
|
|
|
|
|
va_start (var_args, struct1);
|
2003-12-22 01:39:35 +00:00
|
|
|
caps = gst_caps_new_full_valist (struct1, var_args);
|
2003-11-11 19:14:14 +00:00
|
|
|
va_end (var_args);
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_full_valist:
|
2004-03-30 07:36:19 +00:00
|
|
|
* @structure: the first structure to add
|
2004-01-15 09:03:42 +00:00
|
|
|
* @var_args: additional structures to add
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps and adds all the structures listed as
|
|
|
|
* arguments. The list must be NULL-terminated. The structures
|
|
|
|
* are not copied; the returned #GstCaps owns the structures.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_new_full_valist (GstStructure * structure, va_list var_args)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
while (structure) {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = va_arg (var_args, GstStructure *);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2012-01-28 14:35:51 +00:00
|
|
|
G_DEFINE_POINTER_TYPE (GstStaticCaps, gst_static_caps);
|
2005-12-20 11:12:53 +00:00
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_static_caps_get:
|
|
|
|
* @static_caps: the #GstStaticCaps to convert
|
|
|
|
*
|
|
|
|
* Converts a #GstStaticCaps to a #GstCaps.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a pointer to the #GstCaps. Unref after usage.
|
|
|
|
* Since the core holds an additional ref to the returned caps,
|
|
|
|
* use gst_caps_make_writable() on the returned caps to modify it.
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
tests/network-clock.scm: Commentary update.
Original commit message from CVS:
2005-07-01 Andy Wingo <wingo@pobox.com>
* tests/network-clock.scm: Commentary update.
* gst/elements/gstidentity.c (PROP_DUPLICATE): Gone daddy gone.
Didn't really make sense, not implementable with basetransform,
etc.
(gst_identity_transform): Unref inbuf via make_writable. Feeble
attempt at implementing the sync property, needs an unlock method.
* gst/base/gstbasetransform.c (gst_base_transform_transform_caps):
New func, by default returns the same caps (the identity
transformation).
(gst_base_transform_getcaps): Uses transform_caps to return
something sensible.
(gst_base_transform_setcaps): Complicated logic to get caps on
both pads, even if they are different, and to call set_caps once
for every time both pads get their caps set.
(gst_base_transform_handle_buffer): Give the ref to the transform
function. Allows in-place modification of the buffer.
* gst/base/gstbasetransform.h (transform_caps): New class method.
Given caps on one side, what can I do on the other.
(set_caps): Take two caps, one for each side of the element.
* gst/gstpad.h:
* gst/gstpad.c (gst_pad_fixate_caps): Change prototype to modify
caps in place. This is safe because we can check the mutability of
the caps, and a good idea because fixate functions are just called
as a matter of last resort. (Not actually implemented.)
(gst_pad_set_caps): If the caps we're setting is actually the same
as the existing pad caps, just update the pointer without calling
setcaps. Assert that caps is either NULL or fixed, as per the
docs.
* gst/gstghostpad.c: Update for fixate changes.
2005-07-01 16:46:59 +00:00
|
|
|
GstCaps *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_static_caps_get (GstStaticCaps * static_caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2012-01-26 13:33:12 +00:00
|
|
|
GstCaps **caps;
|
2006-07-03 16:57:54 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (static_caps != NULL, NULL);
|
|
|
|
|
2012-01-26 13:33:12 +00:00
|
|
|
caps = &static_caps->caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2007-01-25 17:41:39 +00:00
|
|
|
/* refcount is 0 when we need to convert */
|
2012-01-26 13:33:12 +00:00
|
|
|
if (G_UNLIKELY (*caps == NULL)) {
|
2007-01-25 17:41:39 +00:00
|
|
|
const char *string;
|
|
|
|
|
|
|
|
G_LOCK (static_caps_lock);
|
|
|
|
/* check if other thread already updated */
|
2012-01-26 13:33:12 +00:00
|
|
|
if (G_UNLIKELY (*caps != NULL))
|
2007-01-25 17:41:39 +00:00
|
|
|
goto done;
|
|
|
|
|
|
|
|
string = static_caps->string;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (string == NULL))
|
2006-07-03 16:57:54 +00:00
|
|
|
goto no_string;
|
2005-04-24 22:49:45 +00:00
|
|
|
|
2012-01-26 13:33:12 +00:00
|
|
|
*caps = gst_caps_from_string (string);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2006-07-03 16:57:54 +00:00
|
|
|
/* convert to string */
|
2012-01-26 13:33:12 +00:00
|
|
|
if (G_UNLIKELY (*caps == NULL))
|
2007-01-25 17:41:39 +00:00
|
|
|
g_critical ("Could not convert static caps \"%s\"", string);
|
|
|
|
|
2012-01-27 16:50:42 +00:00
|
|
|
GST_CAT_TRACE (GST_CAT_CAPS, "created %p from string %s", static_caps,
|
|
|
|
string);
|
2007-01-25 17:41:39 +00:00
|
|
|
done:
|
|
|
|
G_UNLOCK (static_caps_lock);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
2005-08-22 14:35:42 +00:00
|
|
|
/* ref the caps, makes it not writable */
|
2012-01-26 13:33:12 +00:00
|
|
|
if (G_LIKELY (*caps != NULL))
|
|
|
|
gst_caps_ref (*caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2012-01-26 13:33:12 +00:00
|
|
|
return *caps;
|
2006-07-03 16:57:54 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
|
|
|
no_string:
|
|
|
|
{
|
2007-01-25 17:41:39 +00:00
|
|
|
G_UNLOCK (static_caps_lock);
|
|
|
|
g_warning ("static caps %p string is NULL", static_caps);
|
2006-07-03 16:57:54 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
/**
|
|
|
|
* gst_static_caps_cleanup:
|
2012-01-26 13:33:12 +00:00
|
|
|
* @static_caps: the #GstStaticCaps to clean
|
2011-06-22 10:28:14 +00:00
|
|
|
*
|
2012-01-26 13:33:12 +00:00
|
|
|
* Clean up the cached caps contained in @static_caps.
|
2011-06-22 10:28:14 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_static_caps_cleanup (GstStaticCaps * static_caps)
|
|
|
|
{
|
2012-01-26 13:33:12 +00:00
|
|
|
G_LOCK (static_caps_lock);
|
|
|
|
gst_caps_replace (&static_caps->caps, NULL);
|
|
|
|
G_UNLOCK (static_caps_lock);
|
2011-06-22 10:28:14 +00:00
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
/* manipulation */
|
2010-05-14 08:52:03 +00:00
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
static void
|
|
|
|
gst_caps_remove_and_get_structure_and_features (GstCaps * caps, guint idx,
|
|
|
|
GstStructure ** s, GstCapsFeatures ** f)
|
|
|
|
{
|
|
|
|
GstStructure *s_;
|
|
|
|
GstCapsFeatures *f_;
|
|
|
|
|
|
|
|
s_ = gst_caps_get_structure_unchecked (caps, idx);
|
|
|
|
f_ = gst_caps_get_features_unchecked (caps, idx);
|
|
|
|
|
|
|
|
/* don't use index_fast, gst_caps_simplify relies on the order */
|
|
|
|
g_array_remove_index (GST_CAPS_ARRAY (caps), idx);
|
|
|
|
|
|
|
|
gst_structure_set_parent_refcount (s_, NULL);
|
|
|
|
if (f_) {
|
|
|
|
gst_caps_features_set_parent_refcount (f_, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
*s = s_;
|
|
|
|
*f = f_;
|
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static GstStructure *
|
|
|
|
gst_caps_remove_and_get_structure (GstCaps * caps, guint idx)
|
|
|
|
{
|
2013-03-30 14:35:19 +00:00
|
|
|
GstStructure *s;
|
|
|
|
GstCapsFeatures *f;
|
|
|
|
|
|
|
|
gst_caps_remove_and_get_structure_and_features (caps, idx, &s, &f);
|
|
|
|
|
|
|
|
if (f)
|
|
|
|
gst_caps_features_free (f);
|
2005-03-07 18:27:42 +00:00
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
|
|
|
|
|
2010-06-14 09:39:40 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_steal_structure:
|
|
|
|
* @caps: the #GstCaps to retrieve from
|
2010-09-13 08:17:34 +00:00
|
|
|
* @index: Index of the structure to retrieve
|
2010-06-14 09:39:40 +00:00
|
|
|
*
|
2012-03-29 13:45:00 +00:00
|
|
|
* Retrieves the structure with the given index from the list of structures
|
2010-06-14 09:39:40 +00:00
|
|
|
* contained in @caps. The caller becomes the owner of the returned structure.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a pointer to the #GstStructure corresponding
|
|
|
|
* to @index.
|
2010-06-14 09:39:40 +00:00
|
|
|
*/
|
|
|
|
GstStructure *
|
2010-09-13 08:17:34 +00:00
|
|
|
gst_caps_steal_structure (GstCaps * caps, guint index)
|
2010-06-14 09:39:40 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (caps != NULL, NULL);
|
|
|
|
g_return_val_if_fail (IS_WRITABLE (caps), NULL);
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
if (G_UNLIKELY (index >= GST_CAPS_LEN (caps)))
|
2010-06-14 09:39:40 +00:00
|
|
|
return NULL;
|
|
|
|
|
2010-09-13 08:17:34 +00:00
|
|
|
return gst_caps_remove_and_get_structure (caps, index);
|
2010-06-14 09:39:40 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_append:
|
|
|
|
* @caps1: the #GstCaps that will be appended to
|
2010-12-07 18:35:04 +00:00
|
|
|
* @caps2: (transfer full): the #GstCaps to append
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* Appends the structures contained in @caps2 to @caps1. The structures in
|
|
|
|
* @caps2 are not copied -- they are transferred to @caps1, and then @caps2 is
|
|
|
|
* freed. If either caps is ANY, the resulting caps will be ANY.
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_append (GstCaps * caps1, GstCaps * caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
gst/gstcaps.c: add sanity checks
Original commit message from CVS:
2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
* gst/gstcaps.c: (gst_caps_append):
add sanity checks
* gst/gstcaps.h: (gst_caps_debug):
remove, it doesn't exist anymore.
* gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
(gst_element_threadsafe_properties_post_run):
make debugging messages not clutter up THREAD debug category
(gst_element_negotiate_pads), (gst_element_clear_pad_caps),
(gst_element_change_state):
update to new caps API
* gst/gstinterface.c: (gst_implements_interface_cast):
don't put vital code in g_return_if_fail
* gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
(gst_pad_link_filtered):
add pst_pad_try_link and use it.
(gst_pad_perform_negotiate), (gst_pad_renegotiate):
implement correctly, deprecate first one.
(gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
add and implement.
(gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
implement.
(gst_pad_get_negotiated_caps):
add and implement. Make GST_PAD_CAPS call this function.
(gst_pad_get_caps):
remove unneeded check..
(gst_pad_recover_caps_error):
disable, always return FALSE.
(gst_real_pad_dispose):
don't free caps and appfilter anymore, they're unused.
* gst/gstpad.h:
Reflect changes mentioned above.
* gst/gstsystemclock.c: (gst_system_clock_wait):
Make 'clock is way behind' a debugging message.
* gst/gstthread.c: (gst_thread_change_state):
Fix debugging message
2003-12-27 13:51:31 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_if_fail (GST_IS_CAPS (caps1));
|
|
|
|
g_return_if_fail (GST_IS_CAPS (caps2));
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_if_fail (IS_WRITABLE (caps1));
|
2011-10-21 13:23:04 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps1) || CAPS_IS_ANY (caps2))) {
|
2011-11-28 13:24:16 +00:00
|
|
|
GST_CAPS_FLAGS (caps1) |= GST_CAPS_FLAG_ANY;
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_unref (caps2);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
} else {
|
2012-03-11 17:57:44 +00:00
|
|
|
caps2 = gst_caps_make_writable (caps2);
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
for (i = GST_CAPS_LEN (caps2); i; i--) {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_remove_and_get_structure_and_features (caps2, 0, &structure,
|
|
|
|
&features);
|
|
|
|
gst_caps_append_structure_unchecked (caps1, structure, features);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
}
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_unref (caps2); /* guaranteed to free it */
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-21 14:54:31 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_merge:
|
2012-03-11 17:57:44 +00:00
|
|
|
* @caps1: (transfer full): the #GstCaps that will take the new entries
|
2010-12-07 18:35:04 +00:00
|
|
|
* @caps2: (transfer full): the #GstCaps to merge in
|
2006-08-21 14:54:31 +00:00
|
|
|
*
|
2006-08-24 10:40:31 +00:00
|
|
|
* Appends the structures contained in @caps2 to @caps1 if they are not yet
|
|
|
|
* expressed by @caps1. The structures in @caps2 are not copied -- they are
|
2012-03-11 17:57:44 +00:00
|
|
|
* transferred to a writable copy of @caps1, and then @caps2 is freed.
|
2006-08-21 14:54:31 +00:00
|
|
|
* If either caps is ANY, the resulting caps will be ANY.
|
2006-09-14 20:08:14 +00:00
|
|
|
*
|
2012-03-11 17:57:44 +00:00
|
|
|
* Returns: (transfer full): the merged caps.
|
2006-08-21 14:54:31 +00:00
|
|
|
*/
|
2012-03-11 17:57:44 +00:00
|
|
|
GstCaps *
|
2006-08-21 14:54:31 +00:00
|
|
|
gst_caps_merge (GstCaps * caps1, GstCaps * caps2)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2006-08-21 14:54:31 +00:00
|
|
|
int i;
|
2012-03-11 17:57:44 +00:00
|
|
|
GstCaps *result;
|
2006-08-21 14:54:31 +00:00
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), NULL);
|
2006-08-21 14:54:31 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps1))) {
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_unref (caps2);
|
|
|
|
result = caps1;
|
2009-10-23 15:47:43 +00:00
|
|
|
} else if (G_UNLIKELY (CAPS_IS_ANY (caps2))) {
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_unref (caps1);
|
|
|
|
result = caps2;
|
2006-08-21 14:54:31 +00:00
|
|
|
} else {
|
2012-03-11 17:57:44 +00:00
|
|
|
caps2 = gst_caps_make_writable (caps2);
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
for (i = GST_CAPS_LEN (caps2); i; i--) {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_remove_and_get_structure_and_features (caps2, 0, &structure,
|
|
|
|
&features);
|
|
|
|
caps1 = gst_caps_merge_structure_full (caps1, structure, features);
|
2006-08-24 10:40:31 +00:00
|
|
|
}
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_unref (caps2);
|
|
|
|
result = caps1;
|
|
|
|
|
2006-08-24 10:40:31 +00:00
|
|
|
/* this is too naive
|
|
|
|
GstCaps *com = gst_caps_intersect (caps1, caps2);
|
|
|
|
GstCaps *add = gst_caps_subtract (caps2, com);
|
2006-08-21 14:54:31 +00:00
|
|
|
|
|
|
|
GST_DEBUG ("common : %d", gst_caps_get_size (com));
|
|
|
|
GST_DEBUG ("adding : %d", gst_caps_get_size (add));
|
2006-08-24 10:40:31 +00:00
|
|
|
gst_caps_append (caps1, add);
|
|
|
|
gst_caps_unref (com);
|
2006-08-21 14:54:31 +00:00
|
|
|
*/
|
|
|
|
}
|
2012-03-11 17:57:44 +00:00
|
|
|
|
|
|
|
return result;
|
2006-08-21 14:54:31 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_append_structure:
|
|
|
|
* @caps: the #GstCaps that will be appended to
|
2010-12-07 18:35:04 +00:00
|
|
|
* @structure: (transfer full): the #GstStructure to append
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2004-03-30 07:36:19 +00:00
|
|
|
* Appends @structure to @caps. The structure is not copied; @caps
|
2004-01-15 09:03:42 +00:00
|
|
|
* becomes the owner of @structure.
|
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_append_structure (GstCaps * caps, GstStructure * structure)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_if_fail (GST_IS_CAPS (caps));
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2006-07-03 16:57:54 +00:00
|
|
|
if (G_LIKELY (structure)) {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_append_structure_full:
|
|
|
|
* @caps: the #GstCaps that will be appended to
|
|
|
|
* @structure: (transfer full): the #GstStructure to append
|
|
|
|
* @features: (transfer full) (allow-none): the #GstCapsFeatures to append
|
|
|
|
*
|
|
|
|
* Appends @structure with @features to @caps. The structure is not copied; @caps
|
|
|
|
* becomes the owner of @structure.
|
2013-07-18 12:39:42 +00:00
|
|
|
*
|
|
|
|
* Since: 1.2
|
2013-03-30 14:35:19 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_caps_append_structure_full (GstCaps * caps, GstStructure * structure,
|
|
|
|
GstCapsFeatures * features)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GST_IS_CAPS (caps));
|
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
|
|
|
|
|
|
|
if (G_LIKELY (structure)) {
|
|
|
|
gst_caps_append_structure_unchecked (caps, structure, features);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-21 14:54:31 +00:00
|
|
|
/**
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
* gst_caps_remove_structure:
|
|
|
|
* @caps: the #GstCaps to remove from
|
|
|
|
* @idx: Index of the structure to remove
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* removes the stucture with the given index from the list of structures
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
* contained in @caps.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_caps_remove_structure (GstCaps * caps, guint idx)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
g_return_if_fail (caps != NULL);
|
|
|
|
g_return_if_fail (idx <= gst_caps_get_size (caps));
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
|
|
|
structure = gst_caps_remove_and_get_structure (caps, idx);
|
|
|
|
gst_structure_free (structure);
|
|
|
|
}
|
|
|
|
|
2006-08-24 10:40:31 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_merge_structure:
|
2012-03-11 17:57:44 +00:00
|
|
|
* @caps: (transfer full): the #GstCaps to merge into
|
2010-12-07 18:35:04 +00:00
|
|
|
* @structure: (transfer full): the #GstStructure to merge
|
2006-08-24 10:40:31 +00:00
|
|
|
*
|
2012-03-11 17:57:44 +00:00
|
|
|
* Appends @structure to @caps if its not already expressed by @caps.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the merged caps.
|
2006-08-24 10:40:31 +00:00
|
|
|
*/
|
2012-03-11 17:57:44 +00:00
|
|
|
GstCaps *
|
2006-08-28 16:39:20 +00:00
|
|
|
gst_caps_merge_structure (GstCaps * caps, GstStructure * structure)
|
2006-08-24 10:40:31 +00:00
|
|
|
{
|
2012-03-12 17:02:27 +00:00
|
|
|
GstStructure *structure1;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features1;
|
|
|
|
int i;
|
|
|
|
gboolean unique = TRUE;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
|
|
|
|
|
|
|
if (G_UNLIKELY (structure == NULL))
|
|
|
|
return caps;
|
|
|
|
|
|
|
|
/* check each structure */
|
|
|
|
for (i = GST_CAPS_LEN (caps) - 1; i >= 0; i--) {
|
|
|
|
structure1 = gst_caps_get_structure_unchecked (caps, i);
|
|
|
|
features1 = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
|
|
|
|
/* if structure is a subset of structure1 and the
|
|
|
|
* there are no existing features, then skip it */
|
2013-04-06 19:09:49 +00:00
|
|
|
if (gst_caps_features_is_equal (features1,
|
|
|
|
GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY)
|
|
|
|
&& gst_structure_is_subset (structure, structure1)) {
|
2013-03-30 14:35:19 +00:00
|
|
|
unique = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (unique) {
|
|
|
|
caps = gst_caps_make_writable (caps);
|
|
|
|
gst_caps_append_structure_unchecked (caps, structure, NULL);
|
|
|
|
} else {
|
|
|
|
gst_structure_free (structure);
|
|
|
|
}
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_merge_structure_full:
|
|
|
|
* @caps: (transfer full): the #GstCaps to merge into
|
|
|
|
* @structure: (transfer full): the #GstStructure to merge
|
|
|
|
* @features: (transfer full) (allow-none): the #GstCapsFeatures to merge
|
|
|
|
*
|
|
|
|
* Appends @structure with @features to @caps if its not already expressed by @caps.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the merged caps.
|
2013-07-18 12:39:42 +00:00
|
|
|
*
|
|
|
|
* Since: 1.2
|
2013-03-30 14:35:19 +00:00
|
|
|
*/
|
|
|
|
GstCaps *
|
|
|
|
gst_caps_merge_structure_full (GstCaps * caps, GstStructure * structure,
|
|
|
|
GstCapsFeatures * features)
|
|
|
|
{
|
|
|
|
GstStructure *structure1;
|
|
|
|
GstCapsFeatures *features1, *features_tmp;
|
2012-03-12 17:02:27 +00:00
|
|
|
int i;
|
|
|
|
gboolean unique = TRUE;
|
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2006-08-24 10:40:31 +00:00
|
|
|
|
2012-03-12 17:02:27 +00:00
|
|
|
if (G_UNLIKELY (structure == NULL))
|
|
|
|
return caps;
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
/* To make comparisons easier below */
|
|
|
|
features_tmp = features ? features : GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
|
2012-03-12 17:02:27 +00:00
|
|
|
/* check each structure */
|
|
|
|
for (i = GST_CAPS_LEN (caps) - 1; i >= 0; i--) {
|
|
|
|
structure1 = gst_caps_get_structure_unchecked (caps, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
features1 = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
/* if structure is a subset of structure1 and the
|
|
|
|
* the features are a subset, then skip it */
|
2013-04-06 19:09:49 +00:00
|
|
|
/* FIXME: We only skip if none of the features are
|
|
|
|
* ANY and are still equal. That way all ANY structures
|
|
|
|
* show up in the caps and no non-ANY structures are
|
|
|
|
* swallowed by ANY structures
|
|
|
|
*/
|
|
|
|
if (((!gst_caps_features_is_any (features_tmp)
|
|
|
|
|| gst_caps_features_is_any (features1))
|
|
|
|
&& gst_caps_features_is_equal (features_tmp, features1))
|
|
|
|
&& gst_structure_is_subset (structure, structure1)) {
|
2012-03-12 17:02:27 +00:00
|
|
|
unique = FALSE;
|
|
|
|
break;
|
2006-08-24 10:40:31 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 17:02:27 +00:00
|
|
|
if (unique) {
|
|
|
|
caps = gst_caps_make_writable (caps);
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (caps, structure, features);
|
2012-03-12 17:02:27 +00:00
|
|
|
} else {
|
|
|
|
gst_structure_free (structure);
|
2013-03-30 14:35:19 +00:00
|
|
|
if (features)
|
|
|
|
gst_caps_features_free (features);
|
2012-03-12 17:02:27 +00:00
|
|
|
}
|
2012-03-11 17:57:44 +00:00
|
|
|
return caps;
|
2006-08-24 10:40:31 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
2004-03-26 03:46:16 +00:00
|
|
|
* gst_caps_get_size:
|
2004-01-15 09:03:42 +00:00
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
2004-03-26 03:46:16 +00:00
|
|
|
* Gets the number of structures contained in @caps.
|
|
|
|
*
|
2004-01-15 09:03:42 +00:00
|
|
|
* Returns: the number of structures that @caps contains
|
|
|
|
*/
|
2005-10-15 00:12:22 +00:00
|
|
|
guint
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_get_size (const GstCaps * caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), 0);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
return GST_CAPS_LEN (caps);
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_get_structure:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @index: the index of the structure
|
|
|
|
*
|
2005-10-15 15:30:24 +00:00
|
|
|
* Finds the structure in @caps that has the index @index, and
|
2004-01-15 09:03:42 +00:00
|
|
|
* returns it.
|
|
|
|
*
|
|
|
|
* WARNING: This function takes a const GstCaps *, but returns a
|
|
|
|
* non-const GstStructure *. This is for programming convenience --
|
|
|
|
* the caller should be aware that structures inside a constant
|
2009-04-03 10:19:42 +00:00
|
|
|
* #GstCaps should not be modified. However, if you know the caps
|
|
|
|
* are writable, either because you have just copied them or made
|
|
|
|
* them writable with gst_caps_make_writable(), you may modify the
|
|
|
|
* structure returned in the usual way, e.g. with functions like
|
2009-11-25 14:44:05 +00:00
|
|
|
* gst_structure_set().
|
2009-04-03 10:19:42 +00:00
|
|
|
*
|
|
|
|
* You do not need to free or unref the structure returned, it
|
|
|
|
* belongs to the #GstCaps.
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer none): a pointer to the #GstStructure corresponding
|
|
|
|
* to @index
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstStructure *
|
2005-10-15 00:12:22 +00:00
|
|
|
gst_caps_get_structure (const GstCaps * caps, guint index)
|
2003-12-22 01:39:35 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2011-06-22 10:28:14 +00:00
|
|
|
g_return_val_if_fail (index < GST_CAPS_LEN (caps), NULL);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
return gst_caps_get_structure_unchecked (caps, index);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_get_features:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @index: the index of the structure
|
|
|
|
*
|
|
|
|
* Finds the features in @caps that has the index @index, and
|
|
|
|
* returns it.
|
|
|
|
*
|
|
|
|
* WARNING: This function takes a const GstCaps *, but returns a
|
|
|
|
* non-const GstCapsFeatures *. This is for programming convenience --
|
|
|
|
* the caller should be aware that structures inside a constant
|
|
|
|
* #GstCaps should not be modified. However, if you know the caps
|
|
|
|
* are writable, either because you have just copied them or made
|
|
|
|
* them writable with gst_caps_make_writable(), you may modify the
|
|
|
|
* features returned in the usual way, e.g. with functions like
|
|
|
|
* gst_caps_features_add().
|
|
|
|
*
|
|
|
|
* You do not need to free or unref the structure returned, it
|
|
|
|
* belongs to the #GstCaps.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): a pointer to the #GstCapsFeatures corresponding
|
|
|
|
* to @index
|
2013-07-18 12:39:42 +00:00
|
|
|
*
|
|
|
|
* Since: 1.2
|
2013-03-30 14:35:19 +00:00
|
|
|
*/
|
|
|
|
GstCapsFeatures *
|
|
|
|
gst_caps_get_features (const GstCaps * caps, guint index)
|
|
|
|
{
|
|
|
|
GstCapsFeatures *features;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
|
|
|
g_return_val_if_fail (index < GST_CAPS_LEN (caps), NULL);
|
|
|
|
|
|
|
|
features = gst_caps_get_features_unchecked (caps, index);
|
|
|
|
if (!features)
|
2013-04-04 22:12:52 +00:00
|
|
|
features = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-03-30 14:35:19 +00:00
|
|
|
|
|
|
|
return features;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_set_features:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @index: the index of the structure
|
|
|
|
* @features: (allow-none) (transfer full): the #GstFeatures to set
|
|
|
|
*
|
|
|
|
* Sets the #GstCapsFeatures @features for the structure at @index.
|
2013-07-18 12:39:42 +00:00
|
|
|
*
|
|
|
|
* Since: 1.2
|
2013-03-30 14:35:19 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gst_caps_set_features (GstCaps * caps, guint index, GstCapsFeatures * features)
|
|
|
|
{
|
|
|
|
GstCapsFeatures **storage, *old;
|
|
|
|
|
|
|
|
g_return_if_fail (caps != NULL);
|
|
|
|
g_return_if_fail (index <= gst_caps_get_size (caps));
|
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
|
|
|
|
|
|
|
storage = &gst_caps_get_features_unchecked (caps, index);
|
|
|
|
old = *storage;
|
|
|
|
*storage = features;
|
2013-04-01 08:19:01 +00:00
|
|
|
|
|
|
|
if (features)
|
|
|
|
gst_caps_features_set_parent_refcount (features, &GST_CAPS_REFCOUNT (caps));
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
if (old)
|
|
|
|
gst_caps_features_free (old);
|
|
|
|
}
|
|
|
|
|
2005-10-15 15:30:24 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_copy_nth:
|
2005-11-09 12:01:46 +00:00
|
|
|
* @caps: the #GstCaps to copy
|
2005-03-07 18:27:42 +00:00
|
|
|
* @nth: the nth structure to copy
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-11-09 12:01:46 +00:00
|
|
|
* Creates a new #GstCaps and appends a copy of the nth structure
|
2005-10-15 15:30:24 +00:00
|
|
|
* contained in @caps.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): the new #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2005-10-15 00:12:22 +00:00
|
|
|
gst_caps_copy_nth (const GstCaps * caps, guint nth)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *newcaps;
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
newcaps = gst_caps_new_empty ();
|
2009-12-03 19:49:30 +00:00
|
|
|
GST_CAPS_FLAGS (newcaps) = GST_CAPS_FLAGS (caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
if (G_LIKELY (GST_CAPS_LEN (caps) > nth)) {
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
structure = gst_caps_get_structure_unchecked (caps, nth);
|
2013-03-30 14:35:19 +00:00
|
|
|
features = gst_caps_get_features_unchecked (caps, nth);
|
2010-05-22 20:07:10 +00:00
|
|
|
gst_caps_append_structure_unchecked (newcaps,
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_structure_copy (structure),
|
|
|
|
gst_caps_features_copy_conditional (features));
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
2005-10-15 15:30:24 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_truncate:
|
2012-03-11 17:57:44 +00:00
|
|
|
* @caps: (transfer full): the #GstCaps to truncate
|
|
|
|
*
|
|
|
|
* Discard all but the first structure from @caps. Useful when
|
|
|
|
* fixating.
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2012-03-11 17:57:44 +00:00
|
|
|
* Returns: (transfer full): truncated caps
|
2005-07-15 11:04:18 +00:00
|
|
|
*/
|
2012-03-11 17:57:44 +00:00
|
|
|
GstCaps *
|
2005-07-15 11:04:18 +00:00
|
|
|
gst_caps_truncate (GstCaps * caps)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2005-07-15 11:04:18 +00:00
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
i = GST_CAPS_LEN (caps) - 1;
|
2012-03-11 17:57:44 +00:00
|
|
|
if (i == 0)
|
|
|
|
return caps;
|
2005-07-15 11:04:18 +00:00
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
caps = gst_caps_make_writable (caps);
|
2005-07-15 11:04:18 +00:00
|
|
|
while (i > 0)
|
|
|
|
gst_caps_remove_structure (caps, i--);
|
2012-03-11 17:57:44 +00:00
|
|
|
|
|
|
|
return caps;
|
2005-07-15 11:04:18 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
2009-10-07 13:32:18 +00:00
|
|
|
* gst_caps_set_value:
|
|
|
|
* @caps: a writable caps
|
|
|
|
* @field: name of the field to set
|
|
|
|
* @value: value to set the field to
|
|
|
|
*
|
|
|
|
* Sets the given @field on all structures of @caps to the given @value.
|
|
|
|
* This is a convenience function for calling gst_structure_set_value() on
|
|
|
|
* all structures of @caps.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gst_caps_set_value (GstCaps * caps, const char *field, const GValue * value)
|
|
|
|
{
|
|
|
|
guint i, len;
|
|
|
|
|
|
|
|
g_return_if_fail (GST_IS_CAPS (caps));
|
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
|
|
|
g_return_if_fail (field != NULL);
|
|
|
|
g_return_if_fail (G_IS_VALUE (value));
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
len = GST_CAPS_LEN (caps);
|
2009-10-07 13:32:18 +00:00
|
|
|
for (i = 0; i < len; i++) {
|
|
|
|
GstStructure *structure = gst_caps_get_structure_unchecked (caps, i);
|
|
|
|
gst_structure_set_value (structure, field, value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_set_simple_valist:
|
2005-11-09 12:01:46 +00:00
|
|
|
* @caps: the #GstCaps to set
|
2004-01-15 09:03:42 +00:00
|
|
|
* @field: first field to set
|
2009-10-07 13:32:18 +00:00
|
|
|
* @varargs: additional parameters
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2009-10-07 13:32:18 +00:00
|
|
|
* Sets fields in a #GstCaps. The arguments must be passed in the same
|
2005-11-09 12:01:46 +00:00
|
|
|
* manner as gst_structure_set(), and be NULL-terminated.
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
void
|
2009-10-07 13:32:18 +00:00
|
|
|
gst_caps_set_simple_valist (GstCaps * caps, const char *field, va_list varargs)
|
2003-12-22 01:39:35 +00:00
|
|
|
{
|
2009-10-07 13:32:18 +00:00
|
|
|
GValue value = { 0, };
|
2003-12-22 01:39:35 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_if_fail (GST_IS_CAPS (caps));
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2009-10-07 13:32:18 +00:00
|
|
|
while (field) {
|
|
|
|
GType type;
|
|
|
|
char *err;
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2009-10-07 13:32:18 +00:00
|
|
|
type = va_arg (varargs, GType);
|
|
|
|
|
2010-03-16 17:56:13 +00:00
|
|
|
G_VALUE_COLLECT_INIT (&value, type, varargs, 0, &err);
|
2009-10-07 13:32:18 +00:00
|
|
|
if (G_UNLIKELY (err)) {
|
|
|
|
g_critical ("%s", err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_caps_set_value (caps, field, &value);
|
|
|
|
|
|
|
|
g_value_unset (&value);
|
|
|
|
|
|
|
|
field = va_arg (varargs, const gchar *);
|
|
|
|
}
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
2009-10-07 13:32:18 +00:00
|
|
|
* gst_caps_set_simple:
|
|
|
|
* @caps: the #GstCaps to set
|
2004-01-15 09:03:42 +00:00
|
|
|
* @field: first field to set
|
2009-10-07 13:32:18 +00:00
|
|
|
* @...: additional parameters
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2009-10-07 13:32:18 +00:00
|
|
|
* Sets fields in a #GstCaps. The arguments must be passed in the same
|
2005-11-09 12:01:46 +00:00
|
|
|
* manner as gst_structure_set(), and be NULL-terminated.
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
void
|
2009-10-07 13:32:18 +00:00
|
|
|
gst_caps_set_simple (GstCaps * caps, const char *field, ...)
|
2003-12-22 01:39:35 +00:00
|
|
|
{
|
2009-10-07 13:32:18 +00:00
|
|
|
va_list var_args;
|
2003-12-22 01:39:35 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_if_fail (GST_IS_CAPS (caps));
|
2005-03-07 18:27:42 +00:00
|
|
|
g_return_if_fail (IS_WRITABLE (caps));
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2009-10-07 13:32:18 +00:00
|
|
|
va_start (var_args, field);
|
|
|
|
gst_caps_set_simple_valist (caps, field, var_args);
|
|
|
|
va_end (var_args);
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
/* tests */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_is_any:
|
2005-11-09 12:01:46 +00:00
|
|
|
* @caps: the #GstCaps to test
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2004-03-26 03:46:16 +00:00
|
|
|
* Determines if @caps represents any media format.
|
|
|
|
*
|
2004-01-15 09:03:42 +00:00
|
|
|
* Returns: TRUE if @caps represents any format.
|
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_is_any (const GstCaps * caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2010-05-22 20:26:16 +00:00
|
|
|
return (CAPS_IS_ANY (caps));
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_empty:
|
2005-11-09 12:01:46 +00:00
|
|
|
* @caps: the #GstCaps to test
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2004-03-26 03:46:16 +00:00
|
|
|
* Determines if @caps represents no media formats.
|
|
|
|
*
|
2004-01-15 09:03:42 +00:00
|
|
|
* Returns: TRUE if @caps represents no formats.
|
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_is_empty (const GstCaps * caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2010-05-22 20:26:16 +00:00
|
|
|
if (CAPS_IS_ANY (caps))
|
2004-03-13 15:27:01 +00:00
|
|
|
return FALSE;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2010-05-22 20:26:16 +00:00
|
|
|
return CAPS_IS_EMPTY_SIMPLE (caps);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_is_fixed_foreach (GQuark field_id, const GValue * value,
|
|
|
|
gpointer unused)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-11-29 17:02:09 +00:00
|
|
|
return gst_value_is_fixed (value);
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_fixed:
|
2005-11-09 12:01:46 +00:00
|
|
|
* @caps: the #GstCaps to test
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2005-11-09 12:01:46 +00:00
|
|
|
* Fixed #GstCaps describe exactly one format, that is, they have exactly
|
2004-01-15 09:03:42 +00:00
|
|
|
* one structure, and each field in the structure describes a fixed type.
|
|
|
|
* Examples of non-fixed types are GST_TYPE_INT_RANGE and GST_TYPE_LIST.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @caps is fixed
|
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_is_fixed (const GstCaps * caps)
|
2003-12-22 01:39:35 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2013-04-02 20:13:22 +00:00
|
|
|
GstCapsFeatures *features;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), FALSE);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
if (GST_CAPS_LEN (caps) != 1)
|
2004-03-13 15:27:01 +00:00
|
|
|
return FALSE;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2013-04-02 20:13:22 +00:00
|
|
|
features = gst_caps_get_features (caps, 0);
|
|
|
|
if (features && gst_caps_features_is_any (features))
|
|
|
|
return FALSE;
|
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
structure = gst_caps_get_structure_unchecked (caps, 0);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-03-12 19:32:26 +00:00
|
|
|
return gst_structure_foreach (structure, gst_caps_is_fixed_foreach, NULL);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_equal_fixed:
|
|
|
|
* @caps1: the #GstCaps to test
|
|
|
|
* @caps2: the #GstCaps to test
|
|
|
|
*
|
|
|
|
* Tests if two #GstCaps are equal. This function only works on fixed
|
|
|
|
* #GstCaps.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if the arguments represent the same format
|
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_is_equal_fixed (const GstCaps * caps1, const GstCaps * caps2)
|
2004-01-02 23:04:14 +00:00
|
|
|
{
|
|
|
|
GstStructure *struct1, *struct2;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features1, *features2;
|
2004-01-02 23:04:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
g_return_val_if_fail (gst_caps_is_fixed (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (gst_caps_is_fixed (caps2), FALSE);
|
2004-01-02 23:04:14 +00:00
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
struct1 = gst_caps_get_structure_unchecked (caps1, 0);
|
2013-03-30 14:35:19 +00:00
|
|
|
features1 = gst_caps_get_features_unchecked (caps1, 0);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
struct2 = gst_caps_get_structure_unchecked (caps2, 0);
|
2013-03-30 14:35:19 +00:00
|
|
|
features2 = gst_caps_get_features_unchecked (caps2, 0);
|
|
|
|
if (!features2)
|
|
|
|
features2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2004-01-02 23:04:14 +00:00
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
return gst_structure_is_equal (struct1, struct2) &&
|
|
|
|
gst_caps_features_is_equal (features1, features2);
|
2004-01-02 23:04:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
2004-03-26 03:46:16 +00:00
|
|
|
* gst_caps_is_always_compatible:
|
2004-01-15 09:03:42 +00:00
|
|
|
* @caps1: the #GstCaps to test
|
|
|
|
* @caps2: the #GstCaps to test
|
|
|
|
*
|
2004-03-26 03:46:16 +00:00
|
|
|
* A given #GstCaps structure is always compatible with another if
|
|
|
|
* every media format that is in the first is also contained in the
|
|
|
|
* second. That is, @caps1 is a subset of @caps2.
|
|
|
|
*
|
2004-01-15 09:03:42 +00:00
|
|
|
* Returns: TRUE if @caps1 is a subset of @caps2.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_is_always_compatible (const GstCaps * caps1, const GstCaps * caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2004-04-23 00:04:50 +00:00
|
|
|
return gst_caps_is_subset (caps1, caps2);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-04-23 00:00:25 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_subset:
|
|
|
|
* @subset: a #GstCaps
|
|
|
|
* @superset: a potentially greater #GstCaps
|
|
|
|
*
|
2007-02-11 19:59:12 +00:00
|
|
|
* Checks if all caps represented by @subset are also represented by @superset.
|
2004-04-23 00:00:25 +00:00
|
|
|
*
|
2007-02-11 19:59:12 +00:00
|
|
|
* Returns: %TRUE if @subset is a subset of @superset
|
2004-04-23 00:00:25 +00:00
|
|
|
*/
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
gboolean
|
|
|
|
gst_caps_is_subset (const GstCaps * subset, const GstCaps * superset)
|
|
|
|
{
|
2011-05-27 11:38:51 +00:00
|
|
|
GstStructure *s1, *s2;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *f1, *f2;
|
2011-05-27 11:38:51 +00:00
|
|
|
gboolean ret = TRUE;
|
|
|
|
gint i, j;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (subset != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (superset != NULL, FALSE);
|
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_EMPTY (subset) || CAPS_IS_ANY (superset))
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return TRUE;
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_ANY (subset) || CAPS_IS_EMPTY (superset))
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
for (i = GST_CAPS_LEN (subset) - 1; i >= 0; i--) {
|
|
|
|
for (j = GST_CAPS_LEN (superset) - 1; j >= 0; j--) {
|
2011-05-27 11:38:51 +00:00
|
|
|
s1 = gst_caps_get_structure_unchecked (subset, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
f1 = gst_caps_get_features_unchecked (subset, i);
|
|
|
|
if (!f1)
|
|
|
|
f1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2011-05-27 11:38:51 +00:00
|
|
|
s2 = gst_caps_get_structure_unchecked (superset, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
f2 = gst_caps_get_features_unchecked (superset, j);
|
|
|
|
if (!f2)
|
|
|
|
f2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
if ((!gst_caps_features_is_any (f1) || gst_caps_features_is_any (f2)) &&
|
|
|
|
gst_caps_features_is_equal (f1, f2)
|
|
|
|
&& gst_structure_is_subset (s1, s2)) {
|
2011-05-27 11:38:51 +00:00
|
|
|
/* If we found a superset, continue with the next
|
|
|
|
* subset structure */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* If we found no superset for this subset structure
|
|
|
|
* we return FALSE immediately */
|
|
|
|
if (j == -1) {
|
|
|
|
ret = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-05-27 11:55:31 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_subset_structure:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @structure: a potential #GstStructure subset of @caps
|
|
|
|
*
|
|
|
|
* Checks if @structure is a subset of @caps. See gst_caps_is_subset()
|
|
|
|
* for more information.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @structure is a subset of @caps
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_caps_is_subset_structure (const GstCaps * caps,
|
|
|
|
const GstStructure * structure)
|
|
|
|
{
|
|
|
|
GstStructure *s;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (caps != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (structure != NULL, FALSE);
|
|
|
|
|
|
|
|
if (CAPS_IS_ANY (caps))
|
|
|
|
return TRUE;
|
|
|
|
if (CAPS_IS_EMPTY (caps))
|
|
|
|
return FALSE;
|
|
|
|
|
2011-06-22 10:28:14 +00:00
|
|
|
for (i = GST_CAPS_LEN (caps) - 1; i >= 0; i--) {
|
2011-05-27 11:55:31 +00:00
|
|
|
s = gst_caps_get_structure_unchecked (caps, i);
|
|
|
|
if (gst_structure_is_subset (structure, s)) {
|
|
|
|
/* If we found a superset return TRUE */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_subset_structure_full:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @structure: a potential #GstStructure subset of @caps
|
|
|
|
* @features: (allow-none): a #GstCapsFeatures for @structure
|
|
|
|
*
|
|
|
|
* Checks if @structure is a subset of @caps. See gst_caps_is_subset()
|
|
|
|
* for more information.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if @structure is a subset of @caps
|
2013-07-18 12:39:42 +00:00
|
|
|
*
|
|
|
|
* Since: 1.2
|
2013-03-30 14:35:19 +00:00
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_caps_is_subset_structure_full (const GstCaps * caps,
|
|
|
|
const GstStructure * structure, const GstCapsFeatures * features)
|
|
|
|
{
|
|
|
|
GstStructure *s;
|
|
|
|
GstCapsFeatures *f;
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (caps != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (structure != NULL, FALSE);
|
|
|
|
|
|
|
|
if (CAPS_IS_ANY (caps))
|
|
|
|
return TRUE;
|
|
|
|
if (CAPS_IS_EMPTY (caps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (!features)
|
|
|
|
features = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
|
|
|
|
for (i = GST_CAPS_LEN (caps) - 1; i >= 0; i--) {
|
|
|
|
s = gst_caps_get_structure_unchecked (caps, i);
|
|
|
|
f = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (!f)
|
|
|
|
f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
if ((!gst_caps_features_is_any (features) || gst_caps_features_is_any (f))
|
|
|
|
&& gst_caps_features_is_equal (features, f)
|
|
|
|
&& gst_structure_is_subset (structure, s)) {
|
2013-03-30 14:35:19 +00:00
|
|
|
/* If we found a superset return TRUE */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-04-23 00:00:25 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_equal:
|
|
|
|
* @caps1: a #GstCaps
|
|
|
|
* @caps2: another #GstCaps
|
|
|
|
*
|
|
|
|
* Checks if the given caps represent the same set of caps.
|
|
|
|
*
|
2006-07-02 12:54:03 +00:00
|
|
|
* Returns: TRUE if both caps are equal.
|
2004-04-23 00:00:25 +00:00
|
|
|
*/
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
gboolean
|
|
|
|
gst_caps_is_equal (const GstCaps * caps1, const GstCaps * caps2)
|
|
|
|
{
|
2012-03-12 11:35:07 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
|
2008-07-22 00:29:55 +00:00
|
|
|
|
2009-06-29 09:23:31 +00:00
|
|
|
if (G_UNLIKELY (caps1 == caps2))
|
2005-11-11 18:25:50 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2009-06-29 09:23:31 +00:00
|
|
|
if (G_UNLIKELY (gst_caps_is_fixed (caps1) && gst_caps_is_fixed (caps2)))
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return gst_caps_is_equal_fixed (caps1, caps2);
|
|
|
|
|
|
|
|
return gst_caps_is_subset (caps1, caps2) && gst_caps_is_subset (caps2, caps1);
|
|
|
|
}
|
|
|
|
|
2011-11-03 15:35:32 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_strictly_equal:
|
|
|
|
* @caps1: a #GstCaps
|
|
|
|
* @caps2: another #GstCaps
|
|
|
|
*
|
|
|
|
* Checks if the given caps are exactly the same set of caps.
|
|
|
|
*
|
|
|
|
* Returns: TRUE if both caps are strictly equal.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_caps_is_strictly_equal (const GstCaps * caps1, const GstCaps * caps2)
|
|
|
|
{
|
|
|
|
int i;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstStructure *s1, *s2;
|
|
|
|
GstCapsFeatures *f1, *f2;
|
2011-11-03 15:35:32 +00:00
|
|
|
|
2012-03-12 11:35:07 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
|
|
|
|
|
2011-11-03 15:35:32 +00:00
|
|
|
if (G_UNLIKELY (caps1 == caps2))
|
|
|
|
return TRUE;
|
|
|
|
|
2011-11-07 09:40:23 +00:00
|
|
|
if (GST_CAPS_LEN (caps1) != GST_CAPS_LEN (caps2))
|
2011-11-03 15:35:32 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2011-11-07 09:40:23 +00:00
|
|
|
for (i = 0; i < GST_CAPS_LEN (caps1); i++) {
|
2013-03-30 14:35:19 +00:00
|
|
|
s1 = gst_caps_get_structure_unchecked (caps1, i);
|
|
|
|
f1 = gst_caps_get_features_unchecked (caps1, i);
|
|
|
|
if (!f1)
|
|
|
|
f1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
s2 = gst_caps_get_structure_unchecked (caps2, i);
|
|
|
|
f2 = gst_caps_get_features_unchecked (caps2, i);
|
|
|
|
if (!f2)
|
|
|
|
f2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
|
|
|
|
2013-04-06 19:09:49 +00:00
|
|
|
if (gst_caps_features_is_any (f1) != gst_caps_features_is_any (f2) ||
|
|
|
|
!gst_caps_features_is_equal (f1, f2) ||
|
|
|
|
!gst_structure_is_equal (s1, s2))
|
2011-11-03 15:35:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-05-14 08:52:03 +00:00
|
|
|
/* intersect operation */
|
|
|
|
|
2009-07-22 06:38:10 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_can_intersect:
|
|
|
|
* @caps1: a #GstCaps to intersect
|
|
|
|
* @caps2: a #GstCaps to intersect
|
|
|
|
*
|
2010-12-02 16:49:04 +00:00
|
|
|
* Tries intersecting @caps1 and @caps2 and reports whether the result would not
|
2009-07-22 06:38:10 +00:00
|
|
|
* be empty
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if intersection would be not empty
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gst_caps_can_intersect (const GstCaps * caps1, const GstCaps * caps2)
|
|
|
|
{
|
|
|
|
guint64 i; /* index can be up to 2 * G_MAX_UINT */
|
|
|
|
guint j, k, len1, len2;
|
|
|
|
GstStructure *struct1;
|
|
|
|
GstStructure *struct2;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features1;
|
|
|
|
GstCapsFeatures *features2;
|
2009-07-22 06:38:10 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), FALSE);
|
|
|
|
|
|
|
|
/* caps are exactly the same pointers */
|
|
|
|
if (G_UNLIKELY (caps1 == caps2))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* empty caps on either side, return empty */
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_EMPTY (caps1) || CAPS_IS_EMPTY (caps2)))
|
2009-07-22 06:38:10 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* one of the caps is any */
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps1) || CAPS_IS_ANY (caps2)))
|
2009-07-22 06:38:10 +00:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* run zigzag on top line then right line, this preserves the caps order
|
|
|
|
* much better than a simple loop.
|
|
|
|
*
|
|
|
|
* This algorithm zigzags over the caps structures as demonstrated in
|
2012-03-29 13:45:00 +00:00
|
|
|
* the following matrix:
|
2009-07-22 06:38:10 +00:00
|
|
|
*
|
2010-11-11 09:41:18 +00:00
|
|
|
* caps1 0 1 2 3
|
|
|
|
* +------------- total distance: +-------------
|
|
|
|
* | 1 2 4 7 0 | 0 1 2 3
|
|
|
|
* caps2 | 3 5 8 10 1 | 1 2 3 4
|
|
|
|
* | 6 9 11 12 2 | 2 3 4 5
|
2009-07-22 06:38:10 +00:00
|
|
|
*
|
|
|
|
* First we iterate over the caps1 structures (top line) intersecting
|
|
|
|
* the structures diagonally down, then we iterate over the caps2
|
2010-11-11 09:41:18 +00:00
|
|
|
* structures. The result is that the intersections are ordered based on the
|
|
|
|
* sum of the indexes in the list.
|
2009-07-22 06:38:10 +00:00
|
|
|
*/
|
2011-06-22 10:28:14 +00:00
|
|
|
len1 = GST_CAPS_LEN (caps1);
|
|
|
|
len2 = GST_CAPS_LEN (caps2);
|
2009-07-22 06:38:10 +00:00
|
|
|
for (i = 0; i < len1 + len2 - 1; i++) {
|
|
|
|
/* superset index goes from 0 to sgst_caps_structure_intersectuperset->structs->len-1 */
|
|
|
|
j = MIN (i, len1 - 1);
|
|
|
|
/* subset index stays 0 until i reaches superset->structs->len, then it
|
|
|
|
* counts up from 1 to subset->structs->len - 1 */
|
2011-08-15 20:05:34 +00:00
|
|
|
k = (i > j) ? (i - j) : 0; /* MAX (0, i - j) */
|
2009-07-22 06:38:10 +00:00
|
|
|
/* now run the diagonal line, end condition is the left or bottom
|
|
|
|
* border */
|
|
|
|
while (k < len2) {
|
|
|
|
struct1 = gst_caps_get_structure_unchecked (caps1, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
features1 = gst_caps_get_features_unchecked (caps1, j);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2009-07-22 06:38:10 +00:00
|
|
|
struct2 = gst_caps_get_structure_unchecked (caps2, k);
|
2013-03-30 14:35:19 +00:00
|
|
|
features2 = gst_caps_get_features_unchecked (caps2, k);
|
|
|
|
if (!features2)
|
|
|
|
features2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
if (gst_caps_features_is_equal (features1, features2) &&
|
|
|
|
gst_structure_can_intersect (struct1, struct2)) {
|
2009-07-22 06:38:10 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
/* move down left */
|
|
|
|
k++;
|
|
|
|
if (G_UNLIKELY (j == 0))
|
|
|
|
break; /* so we don't roll back to G_MAXUINT */
|
|
|
|
j--;
|
|
|
|
}
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-07-22 06:38:10 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-02-25 11:50:12 +00:00
|
|
|
static GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_intersect_zig_zag (GstCaps * caps1, GstCaps * caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2005-10-17 14:37:06 +00:00
|
|
|
guint64 i; /* index can be up to 2 * G_MAX_UINT */
|
2009-03-27 19:17:15 +00:00
|
|
|
guint j, k, len1, len2;
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *struct1;
|
|
|
|
GstStructure *struct2;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features1;
|
|
|
|
GstCapsFeatures *features2;
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *dest;
|
2005-03-07 18:27:42 +00:00
|
|
|
GstStructure *istruct;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
2007-08-07 09:56:08 +00:00
|
|
|
/* caps are exactly the same pointers, just copy one caps */
|
2009-06-29 09:23:31 +00:00
|
|
|
if (G_UNLIKELY (caps1 == caps2))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps1);
|
2007-08-07 09:56:08 +00:00
|
|
|
|
|
|
|
/* empty caps on either side, return empty */
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_EMPTY (caps1) || CAPS_IS_EMPTY (caps2)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (GST_CAPS_NONE);
|
2007-08-07 09:56:08 +00:00
|
|
|
|
|
|
|
/* one of the caps is any, just copy the other caps */
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps1)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps2);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps2)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps1);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
dest = gst_caps_new_empty ();
|
2005-03-07 18:27:42 +00:00
|
|
|
/* run zigzag on top line then right line, this preserves the caps order
|
2005-10-15 15:30:24 +00:00
|
|
|
* much better than a simple loop.
|
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* This algorithm zigzags over the caps structures as demonstrated in
|
2012-03-29 13:45:00 +00:00
|
|
|
* the following matrix:
|
2005-03-07 18:27:42 +00:00
|
|
|
*
|
|
|
|
* caps1
|
|
|
|
* +-------------
|
|
|
|
* | 1 2 4 7
|
|
|
|
* caps2 | 3 5 8 10
|
|
|
|
* | 6 9 11 12
|
2005-10-15 15:30:24 +00:00
|
|
|
*
|
2005-03-07 18:27:42 +00:00
|
|
|
* First we iterate over the caps1 structures (top line) intersecting
|
|
|
|
* the structures diagonally down, then we iterate over the caps2
|
2005-10-15 15:30:24 +00:00
|
|
|
* structures.
|
2005-03-07 18:27:42 +00:00
|
|
|
*/
|
2011-06-22 10:28:14 +00:00
|
|
|
len1 = GST_CAPS_LEN (caps1);
|
|
|
|
len2 = GST_CAPS_LEN (caps2);
|
2009-03-27 19:17:15 +00:00
|
|
|
for (i = 0; i < len1 + len2 - 1; i++) {
|
2011-06-22 10:28:14 +00:00
|
|
|
/* caps1 index goes from 0 to GST_CAPS_LEN (caps1)-1 */
|
2009-03-27 19:17:15 +00:00
|
|
|
j = MIN (i, len1 - 1);
|
2011-06-22 10:28:14 +00:00
|
|
|
/* caps2 index stays 0 until i reaches GST_CAPS_LEN (caps1), then it counts
|
|
|
|
* up from 1 to GST_CAPS_LEN (caps2) - 1 */
|
2011-08-15 20:05:34 +00:00
|
|
|
k = (i > j) ? (i - j) : 0; /* MAX (0, i - j) */
|
2005-03-07 18:27:42 +00:00
|
|
|
/* now run the diagonal line, end condition is the left or bottom
|
|
|
|
* border */
|
2009-03-27 19:17:15 +00:00
|
|
|
while (k < len2) {
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
struct1 = gst_caps_get_structure_unchecked (caps1, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
features1 = gst_caps_get_features_unchecked (caps1, j);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
struct2 = gst_caps_get_structure_unchecked (caps2, k);
|
2013-03-30 14:35:19 +00:00
|
|
|
features2 = gst_caps_get_features_unchecked (caps2, k);
|
|
|
|
if (!features2)
|
|
|
|
features2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
if (gst_caps_features_is_equal (features1, features2)) {
|
|
|
|
istruct = gst_structure_intersect (struct1, struct2);
|
|
|
|
if (istruct) {
|
|
|
|
if (gst_caps_features_is_any (features1))
|
|
|
|
dest =
|
|
|
|
gst_caps_merge_structure_full (dest, istruct,
|
|
|
|
gst_caps_features_copy_conditional (features2));
|
|
|
|
else
|
|
|
|
dest =
|
|
|
|
gst_caps_merge_structure_full (dest, istruct,
|
|
|
|
gst_caps_features_copy_conditional (features1));
|
|
|
|
}
|
|
|
|
}
|
2005-03-07 18:27:42 +00:00
|
|
|
/* move down left */
|
|
|
|
k++;
|
2009-06-29 09:23:31 +00:00
|
|
|
if (G_UNLIKELY (j == 0))
|
2005-10-17 14:37:06 +00:00
|
|
|
break; /* so we don't roll back to G_MAXUINT */
|
2005-03-07 18:27:42 +00:00
|
|
|
j--;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2011-02-25 11:50:12 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_intersect_first:
|
|
|
|
* @caps1: a #GstCaps to intersect
|
|
|
|
* @caps2: a #GstCaps to intersect
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains all the formats that are common
|
|
|
|
* to both @caps1 and @caps2.
|
|
|
|
*
|
|
|
|
* Unlike @gst_caps_intersect, the returned caps will be ordered in a similar
|
|
|
|
* fashion as @caps1.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
|
|
|
static GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_intersect_first (GstCaps * caps1, GstCaps * caps2)
|
2011-02-25 11:50:12 +00:00
|
|
|
{
|
2011-10-27 11:59:57 +00:00
|
|
|
guint i;
|
2011-02-25 11:50:12 +00:00
|
|
|
guint j, len1, len2;
|
|
|
|
GstStructure *struct1;
|
|
|
|
GstStructure *struct2;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features1;
|
|
|
|
GstCapsFeatures *features2;
|
2011-02-25 11:50:12 +00:00
|
|
|
GstCaps *dest;
|
|
|
|
GstStructure *istruct;
|
|
|
|
|
|
|
|
/* caps are exactly the same pointers, just copy one caps */
|
|
|
|
if (G_UNLIKELY (caps1 == caps2))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps1);
|
2011-02-25 11:50:12 +00:00
|
|
|
|
|
|
|
/* empty caps on either side, return empty */
|
|
|
|
if (G_UNLIKELY (CAPS_IS_EMPTY (caps1) || CAPS_IS_EMPTY (caps2)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (GST_CAPS_NONE);
|
2011-02-25 11:50:12 +00:00
|
|
|
|
|
|
|
/* one of the caps is any, just copy the other caps */
|
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps1)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps2);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2011-02-25 11:50:12 +00:00
|
|
|
if (G_UNLIKELY (CAPS_IS_ANY (caps2)))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (caps1);
|
2011-02-25 11:50:12 +00:00
|
|
|
|
|
|
|
dest = gst_caps_new_empty ();
|
2011-06-22 10:28:14 +00:00
|
|
|
len1 = GST_CAPS_LEN (caps1);
|
|
|
|
len2 = GST_CAPS_LEN (caps2);
|
2011-02-25 11:50:12 +00:00
|
|
|
for (i = 0; i < len1; i++) {
|
|
|
|
struct1 = gst_caps_get_structure_unchecked (caps1, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
features1 = gst_caps_get_features_unchecked (caps1, i);
|
|
|
|
if (!features1)
|
|
|
|
features1 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2011-02-25 11:50:12 +00:00
|
|
|
for (j = 0; j < len2; j++) {
|
|
|
|
struct2 = gst_caps_get_structure_unchecked (caps2, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
features2 = gst_caps_get_features_unchecked (caps2, j);
|
|
|
|
if (!features2)
|
|
|
|
features2 = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
if (gst_caps_features_is_equal (features1, features2)) {
|
|
|
|
istruct = gst_structure_intersect (struct1, struct2);
|
|
|
|
if (istruct) {
|
|
|
|
if (gst_caps_features_is_any (features1))
|
|
|
|
dest =
|
|
|
|
gst_caps_merge_structure_full (dest, istruct,
|
|
|
|
gst_caps_features_copy_conditional (features2));
|
|
|
|
else
|
|
|
|
dest =
|
|
|
|
gst_caps_merge_structure_full (dest, istruct,
|
|
|
|
gst_caps_features_copy_conditional (features1));
|
|
|
|
}
|
|
|
|
}
|
2011-02-25 11:50:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_intersect_full:
|
|
|
|
* @caps1: a #GstCaps to intersect
|
|
|
|
* @caps2: a #GstCaps to intersect
|
|
|
|
* @mode: The intersection algorithm/mode to use
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains all the formats that are common
|
|
|
|
* to both @caps1 and @caps2, the order is defined by the #GstCapsIntersectMode
|
|
|
|
* used.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
|
|
|
GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_intersect_full (GstCaps * caps1, GstCaps * caps2,
|
2011-02-25 11:50:12 +00:00
|
|
|
GstCapsIntersectMode mode)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps1), NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps2), NULL);
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case GST_CAPS_INTERSECT_FIRST:
|
|
|
|
return gst_caps_intersect_first (caps1, caps2);
|
|
|
|
default:
|
|
|
|
g_warning ("Unknown caps intersect mode: %d", mode);
|
|
|
|
/* fallthrough */
|
|
|
|
case GST_CAPS_INTERSECT_ZIG_ZAG:
|
|
|
|
return gst_caps_intersect_zig_zag (caps1, caps2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_intersect:
|
|
|
|
* @caps1: a #GstCaps to intersect
|
|
|
|
* @caps2: a #GstCaps to intersect
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains all the formats that are common
|
|
|
|
* to both @caps1 and @caps2. Defaults to %GST_CAPS_INTERSECT_ZIG_ZAG mode.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
|
|
|
GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_intersect (GstCaps * caps1, GstCaps * caps2)
|
2011-02-25 11:50:12 +00:00
|
|
|
{
|
|
|
|
return gst_caps_intersect_full (caps1, caps2, GST_CAPS_INTERSECT_ZIG_ZAG);
|
|
|
|
}
|
|
|
|
|
2010-05-14 08:52:03 +00:00
|
|
|
/* subtract operation */
|
|
|
|
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
const GstStructure *subtract_from;
|
2004-04-22 23:50:46 +00:00
|
|
|
GSList *put_into;
|
2013-03-30 14:35:19 +00:00
|
|
|
} SubtractionEntry;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static gboolean
|
|
|
|
gst_caps_structure_subtract_field (GQuark field_id, const GValue * value,
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
SubtractionEntry *e = user_data;
|
|
|
|
GValue subtraction = { 0, };
|
|
|
|
const GValue *other;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
other = gst_structure_id_get_value (e->subtract_from, field_id);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
if (!other) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
if (!gst_value_subtract (&subtraction, other, value))
|
|
|
|
return TRUE;
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
if (gst_value_compare (&subtraction, other) == GST_VALUE_EQUAL) {
|
2004-04-22 23:50:46 +00:00
|
|
|
g_value_unset (&subtraction);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return FALSE;
|
|
|
|
} else {
|
2004-04-22 23:50:46 +00:00
|
|
|
structure = gst_structure_copy (e->subtract_from);
|
2012-12-22 16:50:49 +00:00
|
|
|
gst_structure_id_take_value (structure, field_id, &subtraction);
|
2004-04-22 23:50:46 +00:00
|
|
|
e->put_into = g_slist_prepend (e->put_into, structure);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
static gboolean
|
|
|
|
gst_caps_structure_subtract (GSList ** into, const GstStructure * minuend,
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
const GstStructure * subtrahend)
|
|
|
|
{
|
|
|
|
SubtractionEntry e;
|
2004-04-22 23:50:46 +00:00
|
|
|
gboolean ret;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
|
|
|
|
e.subtract_from = minuend;
|
2004-04-22 23:50:46 +00:00
|
|
|
e.put_into = NULL;
|
|
|
|
ret = gst_structure_foreach ((GstStructure *) subtrahend,
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
gst_caps_structure_subtract_field, &e);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
if (ret) {
|
|
|
|
*into = e.put_into;
|
|
|
|
} else {
|
|
|
|
GSList *walk;
|
|
|
|
|
|
|
|
for (walk = e.put_into; walk; walk = g_slist_next (walk)) {
|
|
|
|
gst_structure_free (walk->data);
|
|
|
|
}
|
|
|
|
g_slist_free (e.put_into);
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
return ret;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2004-04-23 00:00:25 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_subtract:
|
2011-09-07 11:14:38 +00:00
|
|
|
* @minuend: #GstCaps to subtract from
|
|
|
|
* @subtrahend: #GstCaps to subtract
|
2004-04-23 00:00:25 +00:00
|
|
|
*
|
|
|
|
* Subtracts the @subtrahend from the @minuend.
|
|
|
|
* <note>This function does not work reliably if optional properties for caps
|
|
|
|
* are included on one caps and omitted on the other.</note>
|
|
|
|
*
|
|
|
|
* Returns: the resulting caps
|
|
|
|
*/
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_subtract (GstCaps * minuend, GstCaps * subtrahend)
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
{
|
2009-03-27 19:17:15 +00:00
|
|
|
guint i, j, sublen;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
GstStructure *min;
|
|
|
|
GstStructure *sub;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *min_f, *sub_f;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
GstCaps *dest = NULL, *src;
|
|
|
|
|
|
|
|
g_return_val_if_fail (minuend != NULL, NULL);
|
|
|
|
g_return_val_if_fail (subtrahend != NULL, NULL);
|
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_EMPTY (minuend) || CAPS_IS_ANY (subtrahend)) {
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return gst_caps_new_empty ();
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_EMPTY_SIMPLE (subtrahend))
|
2012-03-11 17:57:44 +00:00
|
|
|
return gst_caps_ref (minuend);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
|
2004-04-22 04:41:19 +00:00
|
|
|
/* FIXME: Do we want this here or above?
|
|
|
|
The reason we need this is that there is no definition about what
|
|
|
|
ANY means for specific types, so it's not possible to reduce ANY partially
|
|
|
|
You can only remove everything or nothing and that is done above.
|
|
|
|
Note: there's a test that checks this behaviour. */
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
g_return_val_if_fail (!CAPS_IS_ANY (minuend), NULL);
|
2011-06-22 10:28:14 +00:00
|
|
|
sublen = GST_CAPS_LEN (subtrahend);
|
2010-12-26 21:20:31 +00:00
|
|
|
g_assert (sublen > 0);
|
2004-04-22 04:41:19 +00:00
|
|
|
|
2009-12-03 19:49:30 +00:00
|
|
|
src = _gst_caps_copy (minuend);
|
2009-03-27 19:17:15 +00:00
|
|
|
for (i = 0; i < sublen; i++) {
|
|
|
|
guint srclen;
|
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
sub = gst_caps_get_structure_unchecked (subtrahend, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
sub_f = gst_caps_get_features_unchecked (subtrahend, i);
|
|
|
|
if (!sub_f)
|
|
|
|
sub_f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
if (dest) {
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_unref (src);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
src = dest;
|
|
|
|
}
|
|
|
|
dest = gst_caps_new_empty ();
|
2011-06-22 10:28:14 +00:00
|
|
|
srclen = GST_CAPS_LEN (src);
|
2009-03-27 19:17:15 +00:00
|
|
|
for (j = 0; j < srclen; j++) {
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
min = gst_caps_get_structure_unchecked (src, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
min_f = gst_caps_get_features_unchecked (src, j);
|
|
|
|
if (!min_f)
|
|
|
|
min_f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2013-04-06 19:09:49 +00:00
|
|
|
|
|
|
|
/* Same reason as above for ANY caps */
|
|
|
|
g_return_val_if_fail (!gst_caps_features_is_any (min_f), NULL);
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
if (gst_structure_get_name_id (min) == gst_structure_get_name_id (sub) &&
|
|
|
|
gst_caps_features_is_equal (min_f, sub_f)) {
|
2004-04-22 23:50:46 +00:00
|
|
|
GSList *list;
|
|
|
|
|
|
|
|
if (gst_caps_structure_subtract (&list, min, sub)) {
|
|
|
|
GSList *walk;
|
|
|
|
|
|
|
|
for (walk = list; walk; walk = g_slist_next (walk)) {
|
2010-05-22 20:07:10 +00:00
|
|
|
gst_caps_append_structure_unchecked (dest,
|
2013-03-30 14:35:19 +00:00
|
|
|
(GstStructure *) walk->data,
|
|
|
|
gst_caps_features_copy_conditional (min_f));
|
2004-04-22 23:50:46 +00:00
|
|
|
}
|
|
|
|
g_slist_free (list);
|
|
|
|
} else {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (dest, gst_structure_copy (min),
|
|
|
|
gst_caps_features_copy_conditional (min_f));
|
2004-04-22 23:50:46 +00:00
|
|
|
}
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
} else {
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (dest, gst_structure_copy (min),
|
|
|
|
gst_caps_features_copy_conditional (min_f));
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_EMPTY_SIMPLE (dest)) {
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_unref (src);
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return dest;
|
2004-08-17 09:16:42 +00:00
|
|
|
}
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
}
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_unref (src);
|
2012-03-12 10:38:37 +00:00
|
|
|
dest = gst_caps_simplify (dest);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: check for ANY caps before appending/unioning
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
check for ANY caps before appending/unioning
* gst/gstcaps.c: (gst_caps_is_subset),
(gst_caps_is_equal), (gst_caps_structure_subtract_field),
(gst_caps_structure_subtract), (gst_caps_subtract):
* gst/gstcaps.h:
add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
the API. deprecate gst_caps_is_equal_fixed
* gst/gstpad.c: (gst_pad_try_set_caps):
* gst/gstqueue.c: (gst_queue_link):
s/gst_caps_is_equal_fixed/gst_caps_is_equal/
* gst/gststructure.c: (gst_structure_get_name_id):
* gst/gststructure.h:
add function gst_structure_get_name_id
* gst/gstvalue.c: (gst_value_subtract_int_int_range),
(gst_value_create_new_range), (gst_value_subtract_int_range_int),
(gst_value_subtract_int_range_int_range),
(gst_value_subtract_double_double_range),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_intersect), (gst_value_subtract),
(gst_value_can_subtract), (gst_value_register_subtract_func),
(_gst_value_initialize):
* gst/gstvalue.h:
add support for subtracting values from each other. Note that
subtracting means subtracting as in set theory. Required for caps
stuff above.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/erathostenes.c: (erathostenes), (main):
* testsuite/caps/sets.c: (check_caps), (main):
* testsuite/caps/subtract.c: (check_caps), (main):
add tests for subtraction and equality code.
2004-04-21 03:25:13 +00:00
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
|
2010-05-14 08:52:03 +00:00
|
|
|
/* normalize/simplify operations */
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
typedef struct _NormalizeForeach
|
|
|
|
{
|
2004-01-01 02:17:44 +00:00
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
|
|
|
} NormalizeForeach;
|
2004-01-01 02:17:44 +00:00
|
|
|
|
|
|
|
static gboolean
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_normalize_foreach (GQuark field_id, const GValue * value, gpointer ptr)
|
2004-01-01 02:17:44 +00:00
|
|
|
{
|
|
|
|
NormalizeForeach *nf = (NormalizeForeach *) ptr;
|
|
|
|
GValue val = { 0 };
|
2005-10-15 00:12:22 +00:00
|
|
|
guint i;
|
2004-01-01 02:17:44 +00:00
|
|
|
|
|
|
|
if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
|
2009-03-27 19:17:15 +00:00
|
|
|
guint len = gst_value_list_get_size (value);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2009-03-27 19:17:15 +00:00
|
|
|
for (i = 1; i < len; i++) {
|
2004-01-01 02:17:44 +00:00
|
|
|
const GValue *v = gst_value_list_get_value (value, i);
|
|
|
|
GstStructure *structure = gst_structure_copy (nf->structure);
|
|
|
|
|
|
|
|
gst_structure_id_set_value (structure, field_id, v);
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_caps_append_structure_unchecked (nf->caps, structure,
|
|
|
|
gst_caps_features_copy_conditional (nf->features));
|
2004-01-01 02:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gst_value_init_and_copy (&val, gst_value_list_get_value (value, 0));
|
2012-12-22 16:50:49 +00:00
|
|
|
gst_structure_id_take_value (nf->structure, field_id, &val);
|
2004-01-01 02:17:44 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2004-01-01 02:17:44 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_normalize:
|
2012-03-12 11:21:34 +00:00
|
|
|
* @caps: (transfer full): a #GstCaps to normalize
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2012-03-12 11:21:34 +00:00
|
|
|
* Returns a #GstCaps that represents the same set of formats as
|
2004-01-15 09:03:42 +00:00
|
|
|
* @caps, but contains no lists. Each list is expanded into separate
|
|
|
|
* @GstStructures.
|
|
|
|
*
|
2012-03-12 11:21:34 +00:00
|
|
|
* This function takes ownership of @caps.
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the normalized #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2012-03-11 17:57:44 +00:00
|
|
|
gst_caps_normalize (GstCaps * caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-01-01 02:17:44 +00:00
|
|
|
NormalizeForeach nf;
|
2010-07-01 15:56:33 +00:00
|
|
|
guint i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2004-01-01 02:17:44 +00:00
|
|
|
|
2012-03-26 16:07:35 +00:00
|
|
|
caps = gst_caps_make_writable (caps);
|
2012-03-12 17:34:30 +00:00
|
|
|
nf.caps = caps;
|
2004-01-01 02:17:44 +00:00
|
|
|
|
2012-03-12 17:34:30 +00:00
|
|
|
for (i = 0; i < gst_caps_get_size (nf.caps); i++) {
|
|
|
|
nf.structure = gst_caps_get_structure_unchecked (nf.caps, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
nf.features = gst_caps_get_features_unchecked (nf.caps, i);
|
2004-03-12 19:32:26 +00:00
|
|
|
while (!gst_structure_foreach (nf.structure,
|
2004-03-15 19:27:17 +00:00
|
|
|
gst_caps_normalize_foreach, &nf));
|
2004-01-01 02:17:44 +00:00
|
|
|
}
|
|
|
|
|
2012-03-12 17:34:30 +00:00
|
|
|
return nf.caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
static gint
|
|
|
|
gst_caps_compare_structures (gconstpointer one, gconstpointer two)
|
2003-12-30 04:59:48 +00:00
|
|
|
{
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
gint ret;
|
2013-03-30 14:35:19 +00:00
|
|
|
const GstStructure *struct1 = ((const GstCapsArrayElement *) one)->structure;
|
|
|
|
const GstStructure *struct2 = ((const GstCapsArrayElement *) two)->structure;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
2006-07-02 12:54:03 +00:00
|
|
|
/* FIXME: this orders alphabetically, but ordering the quarks might be faster
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
So what's the best way? */
|
|
|
|
ret = strcmp (gst_structure_get_name (struct1),
|
|
|
|
gst_structure_get_name (struct2));
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
return gst_structure_n_fields (struct2) - gst_structure_n_fields (struct1);
|
2003-12-30 04:59:48 +00:00
|
|
|
}
|
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
GQuark name;
|
|
|
|
GValue value;
|
|
|
|
GstStructure *compare;
|
2013-03-30 14:35:19 +00:00
|
|
|
} UnionField;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
static gboolean
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_structure_figure_out_union (GQuark field_id, const GValue * value,
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
UnionField *u = user_data;
|
|
|
|
const GValue *val = gst_structure_id_get_value (u->compare, field_id);
|
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
if (!val) {
|
|
|
|
if (u->name)
|
|
|
|
g_value_unset (&u->value);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
if (gst_value_compare (val, value) == GST_VALUE_EQUAL)
|
|
|
|
return TRUE;
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
if (u->name) {
|
|
|
|
g_value_unset (&u->value);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
u->name = field_id;
|
|
|
|
gst_value_union (&u->value, val, value);
|
2013-03-30 14:35:19 +00:00
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2003-12-30 04:59:48 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
static gboolean
|
|
|
|
gst_caps_structure_simplify (GstStructure ** result,
|
2012-03-12 17:22:05 +00:00
|
|
|
GstStructure * simplify, GstStructure * compare)
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
{
|
2004-04-22 23:50:46 +00:00
|
|
|
GSList *list;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
UnionField field = { 0, {0,}, NULL };
|
|
|
|
|
|
|
|
/* try to subtract to get a real subset */
|
2004-04-22 23:50:46 +00:00
|
|
|
if (gst_caps_structure_subtract (&list, simplify, compare)) {
|
2010-09-08 17:41:18 +00:00
|
|
|
if (list == NULL) { /* no result */
|
|
|
|
*result = NULL;
|
|
|
|
return TRUE;
|
|
|
|
} else if (list->next == NULL) { /* one result */
|
|
|
|
*result = list->data;
|
|
|
|
g_slist_free (list);
|
|
|
|
return TRUE;
|
|
|
|
} else { /* multiple results */
|
|
|
|
g_slist_foreach (list, (GFunc) gst_structure_free, NULL);
|
|
|
|
g_slist_free (list);
|
|
|
|
list = NULL;
|
2004-04-22 23:50:46 +00:00
|
|
|
}
|
2003-12-30 04:59:48 +00:00
|
|
|
}
|
|
|
|
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
/* try to union both structs */
|
|
|
|
field.compare = compare;
|
2012-03-12 17:22:05 +00:00
|
|
|
if (gst_structure_foreach (simplify,
|
2004-04-22 23:50:46 +00:00
|
|
|
gst_caps_structure_figure_out_union, &field)) {
|
|
|
|
gboolean ret = FALSE;
|
|
|
|
|
2004-05-25 19:52:02 +00:00
|
|
|
/* now we know all of simplify's fields are the same in compare
|
|
|
|
* but at most one field: field.name */
|
2004-04-25 17:46:30 +00:00
|
|
|
if (G_IS_VALUE (&field.value)) {
|
|
|
|
if (gst_structure_n_fields (simplify) == gst_structure_n_fields (compare)) {
|
2012-12-22 16:50:49 +00:00
|
|
|
gst_structure_id_take_value (compare, field.name, &field.value);
|
2004-04-25 17:46:30 +00:00
|
|
|
*result = NULL;
|
|
|
|
ret = TRUE;
|
2012-12-22 16:50:49 +00:00
|
|
|
} else {
|
|
|
|
g_value_unset (&field.value);
|
2004-04-25 17:46:30 +00:00
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
} else
|
|
|
|
if (gst_structure_n_fields (simplify) <=
|
2004-05-25 19:52:02 +00:00
|
|
|
gst_structure_n_fields (compare)) {
|
|
|
|
/* compare is just more specific, will be optimized away later */
|
|
|
|
/* FIXME: do this here? */
|
|
|
|
GST_LOG ("found a case that will be optimized later.");
|
2004-04-25 17:46:30 +00:00
|
|
|
} else {
|
|
|
|
gchar *one = gst_structure_to_string (simplify);
|
|
|
|
gchar *two = gst_structure_to_string (compare);
|
|
|
|
|
|
|
|
GST_ERROR
|
|
|
|
("caps mismatch: structures %s and %s claim to be possible to unify, but aren't",
|
|
|
|
one, two);
|
|
|
|
g_free (one);
|
|
|
|
g_free (two);
|
2004-04-22 23:50:46 +00:00
|
|
|
}
|
|
|
|
return ret;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
}
|
2003-12-30 04:59:48 +00:00
|
|
|
|
2004-04-22 23:50:46 +00:00
|
|
|
return FALSE;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
}
|
2003-12-30 04:59:48 +00:00
|
|
|
|
2005-03-07 18:27:42 +00:00
|
|
|
static void
|
|
|
|
gst_caps_switch_structures (GstCaps * caps, GstStructure * old,
|
|
|
|
GstStructure * new, gint i)
|
|
|
|
{
|
|
|
|
gst_structure_set_parent_refcount (old, NULL);
|
|
|
|
gst_structure_free (old);
|
2009-12-03 19:49:30 +00:00
|
|
|
gst_structure_set_parent_refcount (new, &GST_CAPS_REFCOUNT (caps));
|
2013-03-30 14:35:19 +00:00
|
|
|
g_array_index (GST_CAPS_ARRAY (caps), GstCapsArrayElement, i).structure = new;
|
2005-03-07 18:27:42 +00:00
|
|
|
}
|
|
|
|
|
2004-04-22 02:43:57 +00:00
|
|
|
/**
|
2012-03-12 10:38:37 +00:00
|
|
|
* gst_caps_simplify:
|
2012-03-12 09:42:23 +00:00
|
|
|
* @caps: (transfer full): a #GstCaps to simplify
|
2004-04-22 02:43:57 +00:00
|
|
|
*
|
2012-03-12 15:40:38 +00:00
|
|
|
* Converts the given @caps into a representation that represents the
|
2005-10-15 15:30:24 +00:00
|
|
|
* same set of formats, but in a simpler form. Component structures that are
|
|
|
|
* identical are merged. Component structures that have values that can be
|
2004-04-22 02:43:57 +00:00
|
|
|
* merged are also merged.
|
2004-04-22 23:50:46 +00:00
|
|
|
*
|
2012-03-13 14:40:23 +00:00
|
|
|
* This method does not preserve the original order of @caps.
|
|
|
|
*
|
2012-03-12 09:42:23 +00:00
|
|
|
* Returns: The simplified caps.
|
2004-04-22 02:43:57 +00:00
|
|
|
*/
|
2012-03-12 09:42:23 +00:00
|
|
|
GstCaps *
|
2012-03-12 10:38:37 +00:00
|
|
|
gst_caps_simplify (GstCaps * caps)
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
{
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
GstStructure *simplify, *compare, *result = NULL;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *simplify_f, *compare_f;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
gint i, j, start;
|
|
|
|
|
2012-03-12 09:42:23 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
2012-03-12 17:25:38 +00:00
|
|
|
start = GST_CAPS_LEN (caps) - 1;
|
|
|
|
/* one caps, already as simple as can be */
|
|
|
|
if (start == 0)
|
2012-03-12 09:42:23 +00:00
|
|
|
return caps;
|
|
|
|
|
|
|
|
caps = gst_caps_make_writable (caps);
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
g_array_sort (GST_CAPS_ARRAY (caps), gst_caps_compare_structures);
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
|
2012-03-12 09:42:23 +00:00
|
|
|
for (i = start; i >= 0; i--) {
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
simplify = gst_caps_get_structure_unchecked (caps, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
simplify_f = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (!simplify_f)
|
|
|
|
simplify_f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2012-03-12 09:42:23 +00:00
|
|
|
compare = gst_caps_get_structure_unchecked (caps, start);
|
2013-03-30 14:35:19 +00:00
|
|
|
compare_f = gst_caps_get_features_unchecked (caps, start);
|
|
|
|
if (!compare_f)
|
|
|
|
compare_f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
2004-04-22 23:50:46 +00:00
|
|
|
if (gst_structure_get_name_id (simplify) !=
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_structure_get_name_id (compare) ||
|
|
|
|
!gst_caps_features_is_equal (simplify_f, compare_f))
|
2004-04-22 23:50:46 +00:00
|
|
|
start = i;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
for (j = start; j >= 0; j--) {
|
|
|
|
if (j == i)
|
|
|
|
continue;
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
compare = gst_caps_get_structure_unchecked (caps, j);
|
2013-03-30 14:35:19 +00:00
|
|
|
compare_f = gst_caps_get_features_unchecked (caps, j);
|
|
|
|
if (!compare_f)
|
|
|
|
compare_f = GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY;
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
if (gst_structure_get_name_id (simplify) !=
|
2013-03-30 14:35:19 +00:00
|
|
|
gst_structure_get_name_id (compare) ||
|
|
|
|
!gst_caps_features_is_equal (simplify_f, compare_f)) {
|
2004-03-15 19:27:17 +00:00
|
|
|
break;
|
2003-12-30 04:59:48 +00:00
|
|
|
}
|
2004-04-22 23:50:46 +00:00
|
|
|
if (gst_caps_structure_simplify (&result, simplify, compare)) {
|
|
|
|
if (result) {
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_switch_structures (caps, simplify, result, i);
|
2005-09-29 10:56:57 +00:00
|
|
|
simplify = result;
|
2004-04-22 23:50:46 +00:00
|
|
|
} else {
|
|
|
|
gst_caps_remove_structure (caps, i);
|
|
|
|
start--;
|
|
|
|
break;
|
|
|
|
}
|
gst/gstcaps.c: fix bug when converting from empty string.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_from_string_inplace):
fix bug when converting from empty string.
* gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
(gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
use gst_caps_new_empty to allocate a new caps. Only that function
allocates memory for caps now.
* gst/gstcaps.c: (gst_caps_remove_and_get_structure),
(gst_caps_remove_structure):
add ability to remove one structure (but not to header yet)
* gst/gstcaps.c: (gst_caps_compare_structures),
(gst_caps_simplify), (gst_caps_structure_figure_out_union),
(gst_caps_structure_simplify), (gst_caps_do_simplify),
* gst/gstcaps.h:
add gst_caps_do_simplify that tries to simplify a caps in place.
Deprecate old gst_caps_simplify function.
* testsuite/caps/caps.h:
add caps.h containing a common set of caps to test against.
* testsuite/caps/sets.c: (check_caps), (main):
use it.
* testsuite/caps/.cvsignore:
* testsuite/caps/Makefile.am:
* testsuite/caps/simplify.c: (check_caps), (main):
add test to check correctness and efficency of caps simplification.
2004-04-22 02:35:13 +00:00
|
|
|
}
|
2003-12-30 04:59:48 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-12 09:42:23 +00:00
|
|
|
return caps;
|
2003-12-30 04:59:48 +00:00
|
|
|
}
|
|
|
|
|
2011-08-15 12:40:38 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_fixate:
|
2012-03-11 17:57:44 +00:00
|
|
|
* @caps: (transfer full): a #GstCaps to fixate
|
2011-08-15 12:40:38 +00:00
|
|
|
*
|
2012-03-11 17:57:44 +00:00
|
|
|
* Modifies the given @caps into a representation with only fixed
|
2011-08-15 12:40:38 +00:00
|
|
|
* values. First the caps will be truncated and then the first structure will be
|
2012-03-11 17:57:44 +00:00
|
|
|
* fixated with gst_structure_fixate().
|
|
|
|
*
|
|
|
|
* Returns: (transfer full): the fixated caps
|
2011-08-15 12:40:38 +00:00
|
|
|
*/
|
2012-03-11 17:57:44 +00:00
|
|
|
GstCaps *
|
2011-08-15 12:40:38 +00:00
|
|
|
gst_caps_fixate (GstCaps * caps)
|
|
|
|
{
|
|
|
|
GstStructure *s;
|
2013-04-06 19:09:49 +00:00
|
|
|
GstCapsFeatures *f;
|
2011-08-15 12:40:38 +00:00
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
g_return_val_if_fail (GST_IS_CAPS (caps), NULL);
|
2011-08-15 12:40:38 +00:00
|
|
|
|
|
|
|
/* default fixation */
|
2012-03-11 17:57:44 +00:00
|
|
|
caps = gst_caps_truncate (caps);
|
|
|
|
caps = gst_caps_make_writable (caps);
|
2011-08-15 12:40:38 +00:00
|
|
|
s = gst_caps_get_structure (caps, 0);
|
|
|
|
gst_structure_fixate (s);
|
2012-03-11 17:57:44 +00:00
|
|
|
|
2013-04-06 19:09:49 +00:00
|
|
|
/* Set features to sysmem if they're still ANY */
|
|
|
|
f = gst_caps_get_features (caps, 0);
|
|
|
|
if (f && gst_caps_features_is_any (f)) {
|
|
|
|
f = gst_caps_features_new_empty ();
|
|
|
|
gst_caps_set_features (caps, 0, f);
|
|
|
|
}
|
|
|
|
|
2012-03-11 17:57:44 +00:00
|
|
|
return caps;
|
2011-08-15 12:40:38 +00:00
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
/* utility */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_to_string:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
|
|
|
* Converts @caps to a string representation. This string representation
|
2006-01-27 22:34:51 +00:00
|
|
|
* can be converted back to a #GstCaps by gst_caps_from_string().
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
2006-05-07 19:57:48 +00:00
|
|
|
* For debugging purposes its easier to do something like this:
|
2009-03-06 19:59:20 +00:00
|
|
|
* |[
|
|
|
|
* GST_LOG ("caps are %" GST_PTR_FORMAT, caps);
|
|
|
|
* ]|
|
2012-03-29 13:45:00 +00:00
|
|
|
* This prints the caps in human readable form.
|
2006-05-07 19:57:48 +00:00
|
|
|
*
|
2013-09-25 22:06:55 +00:00
|
|
|
* The current implementation of serialization will lead to unexpected results
|
|
|
|
* when there are nested #GstCaps / #GstStructure deeper than one level.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a newly allocated string representing @caps.
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
gchar *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_to_string (const GstCaps * caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2009-03-27 19:17:15 +00:00
|
|
|
guint i, slen, clen;
|
2003-11-11 19:14:14 +00:00
|
|
|
GString *s;
|
|
|
|
|
configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
Original commit message from CVS:
* configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
GST_PRINTF_EXTENSION_FORMAT_DEFINE.
* docs/random/ds/0.9-suggested-changes: Notes from Company.
* gst/gstcaps.c: (gst_caps_to_string): Add comment.
* gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
* gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
(gst_debug_log_default), (_gst_info_printf_extension),
(_gst_info_printf_extension_arginfo): Add printf extension.
* gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
* gst/gststructure.c: (gst_structure_to_string),
(_gst_structure_parse_value): Use gst_value_deserialize() and
remove old code.
* gst/gstvalue.c: (gst_value_deserialize_fourcc),
(gst_value_deserialize_boolean), (gst_strtoi),
(gst_value_deserialize_int), (gst_value_deserialize_double),
(gst_value_deserialize_string), (gst_value_deserialize): Implement
a bunch of deserialize functions and gst_value_deserialize.
* gst/gstvalue.h: er, _de_serialize, not unserialize
* testsuite/caps/string-conversions.c: (main): We don't currently
handle (float) in caps, so convert these to (double).
* testsuite/debug/Makefile.am: Add new test for the printf extension
* testsuite/debug/printf_extension.c: (main): same
2004-01-29 01:20:23 +00:00
|
|
|
/* NOTE: This function is potentially called by the debug system,
|
|
|
|
* so any calls to gst_log() (and GST_DEBUG(), GST_LOG(), etc.)
|
|
|
|
* should be careful to avoid recursion. This includes any functions
|
|
|
|
* called by gst_caps_to_string. In particular, calls should
|
|
|
|
* not use the GST_PTR_FORMAT extension. */
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (caps == NULL) {
|
2004-03-13 15:27:01 +00:00
|
|
|
return g_strdup ("NULL");
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_ANY (caps)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
return g_strdup ("ANY");
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
2009-10-23 15:47:43 +00:00
|
|
|
if (CAPS_IS_EMPTY_SIMPLE (caps)) {
|
2004-03-13 15:27:01 +00:00
|
|
|
return g_strdup ("EMPTY");
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
check/gst/gstvalue.c: Added subtract checks.
Original commit message from CVS:
* check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
Added subtract checks.
* docs/design/part-events.txt:
Some more docs about newsegment
* gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
Fix FIXME
* gst/gstcaps.c: (gst_caps_to_string):
Add comments, cleanups.
* gst/gstelement.c: (gst_element_save_thyself):
cleanups
* gst/gstvalue.c: (gst_value_collect_int_range),
(gst_string_unwrap), (gst_value_union_int_int_range),
(gst_value_union_int_range_int_range),
(gst_value_intersect_int_int_range),
(gst_value_intersect_int_range_int_range),
(gst_value_intersect_double_double_range),
(gst_value_intersect_double_range_double_range),
(gst_value_intersect_list), (gst_value_subtract_int_int_range),
(gst_value_subtract_int_range_int),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_compare), (gst_value_compare_fraction):
Cleanups, add comments, remove unneeded asserts.
2005-08-16 09:42:50 +00:00
|
|
|
|
2008-01-09 16:36:34 +00:00
|
|
|
/* estimate a rough string length to avoid unnecessary reallocs in GString */
|
|
|
|
slen = 0;
|
2011-06-22 10:28:14 +00:00
|
|
|
clen = GST_CAPS_LEN (caps);
|
2009-03-27 19:17:15 +00:00
|
|
|
for (i = 0; i < clen; i++) {
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *f;
|
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
slen +=
|
2013-03-30 14:35:19 +00:00
|
|
|
STRUCTURE_ESTIMATED_STRING_LEN (gst_caps_get_structure_unchecked
|
|
|
|
(caps, i));
|
|
|
|
f = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
if (f)
|
|
|
|
slen += FEATURES_ESTIMATED_STRING_LEN (f);
|
2008-01-09 16:36:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
s = g_string_sized_new (slen);
|
2009-03-27 19:17:15 +00:00
|
|
|
for (i = 0; i < clen; i++) {
|
check/gst/gstvalue.c: Added subtract checks.
Original commit message from CVS:
* check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
Added subtract checks.
* docs/design/part-events.txt:
Some more docs about newsegment
* gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
Fix FIXME
* gst/gstcaps.c: (gst_caps_to_string):
Add comments, cleanups.
* gst/gstelement.c: (gst_element_save_thyself):
cleanups
* gst/gstvalue.c: (gst_value_collect_int_range),
(gst_string_unwrap), (gst_value_union_int_int_range),
(gst_value_union_int_range_int_range),
(gst_value_intersect_int_int_range),
(gst_value_intersect_int_range_int_range),
(gst_value_intersect_double_double_range),
(gst_value_intersect_double_range_double_range),
(gst_value_intersect_list), (gst_value_subtract_int_int_range),
(gst_value_subtract_int_range_int),
(gst_value_subtract_double_range_double),
(gst_value_subtract_double_range_double_range),
(gst_value_subtract_from_list), (gst_value_subtract_list),
(gst_value_can_compare), (gst_value_compare_fraction):
Cleanups, add comments, remove unneeded asserts.
2005-08-16 09:42:50 +00:00
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2010-12-26 21:20:31 +00:00
|
|
|
if (i > 0) {
|
2007-10-22 08:53:26 +00:00
|
|
|
/* ';' is now added by gst_structure_to_string */
|
2007-12-28 14:15:53 +00:00
|
|
|
g_string_append_c (s, ' ');
|
2007-10-22 08:53:26 +00:00
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
|
gst/gstcaps.c: Callgrind micro optimisations.
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (_gst_caps_free),
(gst_caps_merge_structure), (gst_caps_get_structure),
(gst_caps_copy_nth), (gst_caps_set_simple),
(gst_caps_set_simple_valist), (gst_caps_is_fixed),
(gst_caps_is_equal_fixed), (gst_caps_intersect),
(gst_caps_subtract), (gst_caps_normalize), (gst_caps_do_simplify),
(gst_caps_to_string):
Callgrind micro optimisations.
Avoid array bounds checks and force inline of trivial function.
* gst/gstobject.c: (gst_object_set_name_default):
-1 is equivalent to letting glib to the strlen but then there is more
room for optimisations and it's not our fault.
* gst/gststructure.c: (gst_structure_id_empty_new_with_size):
no need to clear the array, we're cool.
* gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
The most common _is_fixed() check is done on fundamental glib base
types so we check this first instead of doing a huge amount of
useless GST_TYPE_ARRAY calls.
2008-11-06 15:09:34 +00:00
|
|
|
structure = gst_caps_get_structure_unchecked (caps, i);
|
2013-03-30 14:35:19 +00:00
|
|
|
features = gst_caps_get_features_unchecked (caps, i);
|
|
|
|
|
|
|
|
g_string_append (s, gst_structure_get_name (structure));
|
2013-04-06 19:49:25 +00:00
|
|
|
if (features && (gst_caps_features_is_any (features)
|
|
|
|
|| !gst_caps_features_is_equal (features,
|
|
|
|
GST_CAPS_FEATURES_MEMORY_SYSTEM_MEMORY))) {
|
2013-03-30 14:35:19 +00:00
|
|
|
g_string_append_c (s, '(');
|
|
|
|
priv_gst_caps_features_append_to_gstring (features, s);
|
|
|
|
g_string_append_c (s, ')');
|
|
|
|
}
|
2008-01-09 16:36:34 +00:00
|
|
|
priv_gst_structure_append_to_gstring (structure, s);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
2007-10-22 08:53:26 +00:00
|
|
|
if (s->len && s->str[s->len - 1] == ';') {
|
|
|
|
/* remove latest ';' */
|
|
|
|
s->str[--s->len] = '\0';
|
|
|
|
}
|
2004-03-13 15:27:01 +00:00
|
|
|
return g_string_free (s, FALSE);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-03-12 19:32:26 +00:00
|
|
|
static gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_from_string_inplace (GstCaps * caps, const gchar * string)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2013-03-30 14:35:19 +00:00
|
|
|
gchar *s, *copy, *end, *next, save;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
if (strcmp ("ANY", string) == 0) {
|
2011-11-28 13:24:16 +00:00
|
|
|
GST_CAPS_FLAGS (caps) = GST_CAPS_FLAG_ANY;
|
2003-12-22 01:39:35 +00:00
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
2013-03-25 08:19:24 +00:00
|
|
|
if (strcmp ("EMPTY", string) == 0 || strcmp ("NONE", string) == 0) {
|
2003-12-22 01:39:35 +00:00
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
copy = s = g_strdup (string);
|
2007-10-22 08:53:26 +00:00
|
|
|
do {
|
2013-03-30 14:35:19 +00:00
|
|
|
GstCapsFeatures *features = NULL;
|
2007-10-22 08:53:26 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
while (g_ascii_isspace (*s))
|
|
|
|
s++;
|
2007-10-22 08:53:26 +00:00
|
|
|
if (*s == '\0') {
|
|
|
|
break;
|
|
|
|
}
|
2013-03-30 14:35:19 +00:00
|
|
|
|
|
|
|
if (!priv_gst_structure_parse_name (s, &s, &end, &next)) {
|
|
|
|
g_free (copy);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
save = *end;
|
|
|
|
*end = '\0';
|
|
|
|
structure = gst_structure_new_empty (s);
|
|
|
|
*end = save;
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (structure == NULL) {
|
2013-03-30 14:35:19 +00:00
|
|
|
g_free (copy);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = next;
|
|
|
|
|
|
|
|
if (*s == '\0') {
|
|
|
|
goto append;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == '(') {
|
|
|
|
s++;
|
|
|
|
end = s;
|
|
|
|
|
|
|
|
while (TRUE) {
|
|
|
|
if (*end == '\0') {
|
|
|
|
break;
|
|
|
|
} else if (*end == ')') {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
end++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
save = *end;
|
|
|
|
*end = '\0';
|
|
|
|
features = gst_caps_features_from_string (s);
|
|
|
|
if (!features) {
|
|
|
|
gst_structure_free (structure);
|
|
|
|
g_free (copy);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
*end = save;
|
|
|
|
s = end;
|
|
|
|
if (save == ')')
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s == '\0') {
|
|
|
|
goto append;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!priv_gst_structure_parse_fields (s, &s, structure)) {
|
|
|
|
gst_structure_free (structure);
|
|
|
|
g_free (copy);
|
2003-12-22 01:39:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
append:
|
|
|
|
gst_caps_append_structure_unchecked (caps, structure, features);
|
|
|
|
if (*s == '\0')
|
|
|
|
break;
|
2007-10-22 08:53:26 +00:00
|
|
|
} while (TRUE);
|
2003-12-22 01:39:35 +00:00
|
|
|
|
2013-03-30 14:35:19 +00:00
|
|
|
g_free (copy);
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_from_string:
|
2004-03-30 07:36:19 +00:00
|
|
|
* @string: a string to convert to #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*
|
|
|
|
* Converts @caps from a string representation.
|
|
|
|
*
|
2013-09-25 22:06:55 +00:00
|
|
|
* The current implementation of serialization will lead to unexpected results
|
|
|
|
* when there are nested #GstCaps / #GstStructure deeper than one level.
|
|
|
|
*
|
2010-12-07 18:35:04 +00:00
|
|
|
* Returns: (transfer full): a newly allocated #GstCaps
|
2004-01-15 09:03:42 +00:00
|
|
|
*/
|
2004-03-12 19:32:26 +00:00
|
|
|
GstCaps *
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_from_string (const gchar * string)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2010-03-03 21:37:01 +00:00
|
|
|
g_return_val_if_fail (string, FALSE);
|
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
2004-03-12 19:32:26 +00:00
|
|
|
if (gst_caps_from_string_inplace (caps, string)) {
|
2003-12-22 01:39:35 +00:00
|
|
|
return caps;
|
|
|
|
} else {
|
2005-03-07 18:27:42 +00:00
|
|
|
gst_caps_unref (caps);
|
2003-12-22 01:39:35 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-03-12 19:32:26 +00:00
|
|
|
static void
|
2004-03-13 15:27:01 +00:00
|
|
|
gst_caps_transform_to_string (const GValue * src_value, GValue * dest_value)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
gst/gstcaps.c: Patch from Tim-Philipp Müller to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
(gst_caps_append), (gst_caps_append_structure),
(gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
(gst_caps_set_simple), (gst_caps_set_simple_valist),
(gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
(gst_caps_is_fixed), (gst_caps_is_always_compatible),
(gst_caps_intersect), (gst_caps_normalize),
(gst_caps_transform_to_string): Patch from Tim-Philipp Müller
to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
* gst/gstcaps.h: use GST_IS_CAPS().
2004-04-28 20:19:46 +00:00
|
|
|
g_return_if_fail (G_IS_VALUE (src_value));
|
|
|
|
g_return_if_fail (G_IS_VALUE (dest_value));
|
|
|
|
g_return_if_fail (G_VALUE_HOLDS (src_value, GST_TYPE_CAPS));
|
|
|
|
g_return_if_fail (G_VALUE_HOLDS (dest_value, G_TYPE_STRING)
|
|
|
|
|| G_VALUE_HOLDS (dest_value, G_TYPE_POINTER));
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2011-09-15 18:49:43 +00:00
|
|
|
g_value_take_string (dest_value,
|
|
|
|
gst_caps_to_string (gst_value_get_caps (src_value)));
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|