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
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2004-01-29 02:24:52 +00:00
|
|
|
#define CAPS_POISON(caps) G_STMT_START{ \
|
|
|
|
if (caps) { \
|
|
|
|
GstCaps *_newcaps = gst_caps_copy (caps); \
|
|
|
|
gst_caps_free(caps); \
|
|
|
|
caps = _newcaps; \
|
|
|
|
} \
|
|
|
|
} G_STMT_END
|
|
|
|
#define STRUCTURE_POISON(structure) G_STMT_START{ \
|
|
|
|
if (structure) { \
|
|
|
|
GstStructure *_newstruct = gst_structure_copy (structure); \
|
|
|
|
gst_structure_free(structure); \
|
|
|
|
structure = _newstruct; \
|
|
|
|
} \
|
|
|
|
} G_STMT_END
|
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
|
|
|
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static void _gst_caps_transform_to_string (const GValue *src_value,
|
2003-11-11 19:14:14 +00:00
|
|
|
GValue *dest_value);
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean _gst_caps_from_string_inplace (GstCaps *caps,
|
2003-11-11 19:14:14 +00:00
|
|
|
const gchar *string);
|
2004-02-18 05:26:59 +00:00
|
|
|
static GstCaps * gst_caps_copy_conditional (const GstCaps *src);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
GType _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
void _gst_caps_initialize (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-18 05:26:59 +00:00
|
|
|
_gst_caps_type = g_boxed_type_register_static ("GstCaps",
|
|
|
|
(GBoxedCopyFunc)gst_caps_copy_conditional,
|
|
|
|
(GBoxedFreeFunc)gst_caps_free);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +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
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
GType gst_caps_get_type (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
return _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* creation/deletion */
|
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.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_new_empty (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps = g_new0(GstCaps, 1);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
caps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
caps->structs = g_ptr_array_new();
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_empty:
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that indicates that it is compatible with
|
|
|
|
* any media format.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_new_any (void)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps = g_new0(GstCaps, 1);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
caps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
caps->structs = g_ptr_array_new();
|
2003-12-22 01:39:35 +00:00
|
|
|
caps->flags = GST_CAPS_FLAGS_ANY;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_new_simple:
|
|
|
|
* @media_type: the media type of the structure
|
|
|
|
* @...: additional arguments
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains one #GstStructure. The
|
|
|
|
* structure is defined by the arguments, which have the same format
|
|
|
|
* as @gst_structure_new().
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *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;
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
caps = g_new0(GstCaps, 1);
|
|
|
|
caps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
caps->structs = g_ptr_array_new();
|
|
|
|
|
|
|
|
va_start (var_args, fieldname);
|
|
|
|
structure = gst_structure_new_valist (media_type, fieldname, var_args);
|
|
|
|
va_end (var_args);
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
gst_caps_append_structure (caps, structure);
|
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.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *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:
|
|
|
|
* @struct1: the first structure to add
|
|
|
|
* @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.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_new_full_valist (GstStructure *structure,
|
2003-11-11 19:14:14 +00:00
|
|
|
va_list var_args)
|
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
caps = g_new0(GstCaps, 1);
|
|
|
|
caps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
caps->structs = g_ptr_array_new();
|
|
|
|
|
|
|
|
while(structure){
|
2003-12-22 01:39:35 +00:00
|
|
|
gst_caps_append_structure (caps, structure);
|
|
|
|
structure = va_arg (var_args, GstStructure *);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_copy:
|
|
|
|
* @caps: the #GstCaps to copy
|
|
|
|
*
|
|
|
|
* Deeply copies a #GstCaps, including all structures and all the
|
|
|
|
* structures' values.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_copy (const GstCaps *caps)
|
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;
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, NULL);
|
|
|
|
|
|
|
|
newcaps = g_new0(GstCaps, 1);
|
|
|
|
newcaps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
newcaps->flags = caps->flags;
|
|
|
|
newcaps->structs = g_ptr_array_new();
|
|
|
|
|
|
|
|
for(i=0;i<caps->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, i);
|
|
|
|
gst_caps_append_structure (newcaps, gst_structure_copy(structure));
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_free:
|
|
|
|
* @caps: the #GstCaps to free
|
|
|
|
*
|
|
|
|
* Frees a #GstCaps and all its structures and the structures'
|
|
|
|
* values.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_free (GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_if_fail(caps != NULL);
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
for(i=0;i<caps->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, i);
|
2003-11-11 19:14:14 +00:00
|
|
|
gst_structure_free (structure);
|
|
|
|
}
|
|
|
|
g_ptr_array_free(caps->structs, TRUE);
|
2003-12-22 01:39:35 +00:00
|
|
|
#ifdef USE_POISONING
|
|
|
|
memset (caps, 0xff, sizeof(GstCaps));
|
|
|
|
#endif
|
2003-11-11 19:14:14 +00:00
|
|
|
g_free(caps);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_static_caps_get:
|
|
|
|
* @static_caps: the #GstStaticCaps to convert
|
|
|
|
*
|
|
|
|
* Converts a #GstStaticCaps to a #GstCaps.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
const GstCaps *gst_static_caps_get (GstStaticCaps *static_caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *caps = (GstCaps *)static_caps;
|
|
|
|
gboolean ret;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
if (caps->type == 0) {
|
2003-12-22 01:39:35 +00:00
|
|
|
caps->type = _gst_caps_type;
|
|
|
|
caps->structs = g_ptr_array_new();
|
|
|
|
ret = _gst_caps_from_string_inplace (caps, static_caps->string);
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
g_critical ("Could not convert static caps \"%s\"", static_caps->string);
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* manipulation */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_append:
|
|
|
|
* @caps1: the #GstCaps that will be appended to
|
|
|
|
* @caps2: the #GstCaps to append
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_append (GstCaps *caps1, GstCaps *caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
GstStructure *structure;
|
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
|
|
|
|
|
|
|
g_return_if_fail (caps1 != NULL);
|
|
|
|
g_return_if_fail (caps2 != NULL);
|
|
|
|
|
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
|
|
|
#ifdef USE_POISONING
|
|
|
|
CAPS_POISON (caps2);
|
|
|
|
#endif
|
2003-11-11 19:14:14 +00:00
|
|
|
for(i=0;i<caps2->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps2, i);
|
|
|
|
gst_caps_append_structure (caps1, structure);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
g_ptr_array_free(caps2->structs, TRUE);
|
2003-12-22 01:39:35 +00:00
|
|
|
#ifdef USE_POISONING
|
|
|
|
memset (caps2, 0xff, sizeof(GstCaps));
|
|
|
|
#endif
|
2003-11-11 19:14:14 +00:00
|
|
|
g_free(caps2);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_append_structure:
|
|
|
|
* @caps: the #GstCaps that will be appended to
|
|
|
|
* @structure: the #GstStructure to append
|
|
|
|
*
|
|
|
|
* Appends @structure to @caps1. The structure is not copied; @caps1
|
|
|
|
* becomes the owner of @structure.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_append_structure (GstCaps *caps, GstStructure *structure)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_if_fail(caps != NULL);
|
|
|
|
|
2004-01-05 16:25:31 +00:00
|
|
|
if (structure){
|
2004-01-15 09:03:42 +00:00
|
|
|
#if 0
|
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
|
|
|
#ifdef USE_POISONING
|
2004-01-05 16:25:31 +00:00
|
|
|
STRUCTURE_POISON (structure);
|
2004-01-06 21:39:53 +00:00
|
|
|
#endif
|
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
|
|
|
#endif
|
2003-12-22 01:39:35 +00:00
|
|
|
g_ptr_array_add (caps->structs, structure);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_split_one:
|
|
|
|
* @caps:
|
|
|
|
*
|
|
|
|
* Returns:
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_split_one (GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
/* FIXME */
|
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
|
|
|
g_critical ("unimplemented");
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_split_one:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
|
|
|
* Returns: the number of structures that @caps contains
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
int gst_caps_get_size (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail (caps != NULL, 0);
|
|
|
|
|
|
|
|
return caps->structs->len;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_get_structure:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
* @index: the index of the structure
|
|
|
|
*
|
|
|
|
* Finds the structure in @caps that has the index @index, and
|
|
|
|
* 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
|
|
|
|
* @GstCaps should not be modified.
|
|
|
|
*
|
|
|
|
* Returns: a pointer to the #GstStructure corresponding to @index
|
|
|
|
*/
|
2004-02-07 15:37:21 +00:00
|
|
|
GstStructure *gst_caps_get_structure (const GstCaps *caps, int index)
|
2003-12-22 01:39:35 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (caps != NULL, NULL);
|
|
|
|
g_return_val_if_fail (index >= 0, NULL);
|
|
|
|
g_return_val_if_fail (index < caps->structs->len, NULL);
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
return g_ptr_array_index(caps->structs, index);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_copy_1:
|
|
|
|
* @caps: the @GstCaps to copy
|
|
|
|
*
|
|
|
|
* Creates a new @GstCaps and appends a copy of the first structure
|
|
|
|
* contained in @caps.
|
|
|
|
*
|
|
|
|
* Returns: the new @GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_copy_1 (const GstCaps *caps)
|
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;
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, NULL);
|
|
|
|
|
|
|
|
newcaps = g_new0(GstCaps, 1);
|
|
|
|
newcaps->type = _gst_caps_type;
|
2003-11-11 19:14:14 +00:00
|
|
|
newcaps->flags = caps->flags;
|
|
|
|
newcaps->structs = g_ptr_array_new();
|
|
|
|
|
|
|
|
if (caps->structs->len > 0){
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
gst_caps_append_structure (newcaps, gst_structure_copy(structure));
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_set_simple:
|
|
|
|
* @caps: the @GstCaps to set
|
|
|
|
* @field: first field to set
|
|
|
|
* @...: additional parameters
|
|
|
|
*
|
|
|
|
* Sets fields in a simple #GstCaps. A simple #GstCaps is one that
|
|
|
|
* only has one structure. The arguments must be passed in the same
|
|
|
|
* manner as @gst_structure_set(), and be NULL-terminated.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_set_simple (GstCaps *caps, char *field, ...)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
va_list var_args;
|
|
|
|
|
|
|
|
g_return_if_fail (caps != NULL);
|
|
|
|
g_return_if_fail (caps->structs->len == 1);
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
va_start (var_args, field);
|
|
|
|
gst_structure_set_valist (structure, field, var_args);
|
|
|
|
va_end(var_args);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_set_simple_valist:
|
|
|
|
* @caps: the @GstCaps to copy
|
|
|
|
* @field: first field to set
|
|
|
|
* @varargs: additional parameters
|
|
|
|
*
|
|
|
|
* Sets fields in a simple #GstCaps. A simple #GstCaps is one that
|
|
|
|
* only has one structure. The arguments must be passed in the same
|
|
|
|
* manner as @gst_structure_set(), and be NULL-terminated.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_set_simple_valist (GstCaps *caps, char *field, va_list varargs)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
g_return_if_fail (caps != NULL);
|
|
|
|
g_return_if_fail (caps->structs->len != 1);
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
gst_structure_set_valist (structure, field, varargs);
|
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
/* tests */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_is_any:
|
|
|
|
* @caps: the @GstCaps to test
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @caps represents any format.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean gst_caps_is_any (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, FALSE);
|
|
|
|
|
|
|
|
return (caps->flags & GST_CAPS_FLAGS_ANY);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_empty:
|
|
|
|
* @caps: the @GstCaps to test
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @caps represents no formats.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean gst_caps_is_empty (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, FALSE);
|
|
|
|
|
|
|
|
if (caps->flags & GST_CAPS_FLAGS_ANY) return FALSE;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
return (caps->structs == NULL) || (caps->structs->len == 0);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_chained:
|
|
|
|
* @caps: the @GstCaps to test
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @caps contains more than one structure
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean gst_caps_is_chained (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, FALSE);
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
return (caps->structs->len > 1);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_caps_is_fixed_foreach (GQuark field_id, GValue *value, gpointer unused)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GType type = G_VALUE_TYPE (value);
|
|
|
|
if (G_TYPE_IS_FUNDAMENTAL (type)) return TRUE;
|
|
|
|
if (type == GST_TYPE_FOURCC) return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_fixed:
|
|
|
|
* @caps: the @GstCaps to test
|
|
|
|
*
|
|
|
|
* Fixed @GstCaps describe exactly one format, that is, they have exactly
|
|
|
|
* 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
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean gst_caps_is_fixed (const GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, FALSE);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (caps->structs->len != 1) return FALSE;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
return gst_structure_foreach (structure, _gst_caps_is_fixed_foreach, NULL);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-02 23:04:14 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_structure_is_equal_foreach (GQuark field_id,
|
|
|
|
GValue *val2, gpointer data)
|
|
|
|
{
|
|
|
|
GstStructure *struct1 = (GstStructure *) data;
|
|
|
|
const GValue *val1 = gst_structure_id_get_value (struct1, field_id);
|
|
|
|
|
|
|
|
if (val1 == NULL) return FALSE;
|
|
|
|
if (gst_value_compare (val1, val2) == GST_VALUE_EQUAL) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
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-01-02 23:04:14 +00:00
|
|
|
gboolean gst_caps_is_equal_fixed (const GstCaps *caps1, const GstCaps *caps2)
|
|
|
|
{
|
|
|
|
GstStructure *struct1, *struct2;
|
|
|
|
|
|
|
|
g_return_val_if_fail (gst_caps_is_fixed(caps1), FALSE);
|
|
|
|
g_return_val_if_fail (gst_caps_is_fixed(caps2), FALSE);
|
|
|
|
|
|
|
|
struct1 = gst_caps_get_structure (caps1, 0);
|
|
|
|
struct2 = gst_caps_get_structure (caps2, 0);
|
|
|
|
|
|
|
|
if (struct1->name != struct2->name) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
if (struct1->fields->len != struct2->fields->len) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gst_structure_foreach (struct1, _gst_structure_is_equal_foreach,
|
|
|
|
struct2);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_structure_field_has_compatible (GQuark field_id,
|
|
|
|
GValue *val2, gpointer data)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GValue dest = { 0 };
|
|
|
|
GstStructure *struct1 = (GstStructure *) data;
|
|
|
|
const GValue *val1 = gst_structure_id_get_value (struct1, field_id);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (val1 == NULL) return FALSE;
|
|
|
|
if (gst_value_intersect (&dest, val1, val2)) {
|
|
|
|
g_value_unset (&dest);
|
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_cap_is_always_compatible (const GstStructure *struct1,
|
|
|
|
const GstStructure *struct2)
|
|
|
|
{
|
|
|
|
if(struct1->name != struct2->name){
|
2003-11-11 19:14:14 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
/* the reversed order is important */
|
|
|
|
return gst_structure_foreach ((GstStructure *) struct2,
|
|
|
|
_gst_structure_field_has_compatible, (gpointer) struct1);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean
|
|
|
|
_gst_caps_cap_is_always_compatible (const GstStructure *struct1,
|
|
|
|
const GstCaps *caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
for(i=0;i<caps2->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
GstStructure *struct2 = gst_caps_get_structure (caps2, i);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
if (_gst_cap_is_always_compatible (struct1, struct2)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_is_always_compatible
|
|
|
|
* @caps1: the #GstCaps to test
|
|
|
|
* @caps2: the #GstCaps to test
|
|
|
|
*
|
|
|
|
* Returns: TRUE if @caps1 is a subset of @caps2.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gboolean
|
|
|
|
gst_caps_is_always_compatible (const GstCaps *caps1, const GstCaps *caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail (caps1 != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (caps2 != NULL, FALSE);
|
|
|
|
/* FIXME: is this right ? */
|
|
|
|
g_return_val_if_fail (!gst_caps_is_empty (caps1), FALSE);
|
|
|
|
g_return_val_if_fail (!gst_caps_is_empty (caps2), FALSE);
|
|
|
|
|
|
|
|
if (gst_caps_is_any (caps2))
|
|
|
|
return TRUE;
|
|
|
|
if (gst_caps_is_any (caps1))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
for(i=0;i<caps1->structs->len;i++) {
|
2003-12-22 01:39:35 +00:00
|
|
|
GstStructure *struct1 = gst_caps_get_structure (caps1, i);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
if (_gst_caps_cap_is_always_compatible(struct1, caps2) == FALSE){
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
typedef struct {
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *dest;
|
2003-12-22 01:39:35 +00:00
|
|
|
const GstStructure *intersect;
|
|
|
|
gboolean first_run;
|
|
|
|
} IntersectData;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_caps_structure_intersect_field (GQuark id, GValue *val1, gpointer data)
|
|
|
|
{
|
|
|
|
IntersectData *idata = (IntersectData *) data;
|
|
|
|
GValue dest_value = { 0 };
|
|
|
|
const GValue *val2 = gst_structure_id_get_value (idata->intersect, id);
|
|
|
|
|
|
|
|
if (val2 == NULL) {
|
|
|
|
gst_structure_id_set_value (idata->dest, id, val1);
|
|
|
|
} else if (idata->first_run) {
|
|
|
|
if (gst_value_intersect (&dest_value, val1, val2)) {
|
|
|
|
gst_structure_id_set_value (idata->dest, id, &dest_value);
|
|
|
|
g_value_unset (&dest_value);
|
2003-11-11 19:14:14 +00:00
|
|
|
} else {
|
2003-12-22 01:39:35 +00:00
|
|
|
return FALSE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
2003-12-22 01:39:35 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static GstStructure *gst_caps_structure_intersect (const GstStructure *struct1,
|
|
|
|
const GstStructure *struct2)
|
|
|
|
{
|
|
|
|
IntersectData data;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
g_return_val_if_fail(struct1 != NULL, NULL);
|
|
|
|
g_return_val_if_fail(struct2 != NULL, NULL);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (struct1->name != struct2->name) return NULL;
|
|
|
|
|
|
|
|
data.dest = gst_structure_id_empty_new (struct1->name);
|
|
|
|
data.intersect = struct2;
|
|
|
|
data.first_run = TRUE;
|
|
|
|
if (!gst_structure_foreach ((GstStructure *) struct1,
|
|
|
|
gst_caps_structure_intersect_field, &data))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
data.intersect = struct1;
|
|
|
|
data.first_run = FALSE;
|
|
|
|
if (!gst_structure_foreach ((GstStructure *) struct2,
|
|
|
|
gst_caps_structure_intersect_field, &data))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
return data.dest;
|
|
|
|
|
|
|
|
error:
|
|
|
|
gst_structure_free (data.dest);
|
|
|
|
return NULL;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
2003-12-22 01:39:35 +00:00
|
|
|
static GstStructure *gst_caps_structure_union (const GstStructure *struct1,
|
2003-11-11 19:14:14 +00:00
|
|
|
const GstStructure *struct2)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
GstStructure *dest;
|
|
|
|
const GstStructureField *field1;
|
|
|
|
const GstStructureField *field2;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* FIXME this doesn't actually work */
|
|
|
|
|
|
|
|
if (struct1->name != struct2->name) return NULL;
|
|
|
|
|
|
|
|
dest = gst_structure_id_empty_new (struct1->name);
|
|
|
|
|
|
|
|
for(i=0;i<struct1->fields->len;i++){
|
|
|
|
GValue dest_value = { 0 };
|
|
|
|
|
|
|
|
field1 = GST_STRUCTURE_FIELD (struct1, i);
|
|
|
|
field2 = gst_structure_id_get_field (struct2, field1->name);
|
|
|
|
|
|
|
|
if (field2 == NULL) {
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
if (gst_value_union (&dest_value, &field1->value, &field2->value)) {
|
|
|
|
gst_structure_set_value (dest, g_quark_to_string(field1->name),
|
|
|
|
&dest_value);
|
|
|
|
} else {
|
|
|
|
ret = gst_value_compare (&field1->value, &field2->value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return dest;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* operations */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_intersect (const GstCaps *caps1, const GstCaps *caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-07 15:37:21 +00:00
|
|
|
int i,j;
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *struct1;
|
|
|
|
GstStructure *struct2;
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *dest;
|
2004-01-06 21:39:53 +00:00
|
|
|
#if 0
|
|
|
|
GstCaps *caps;
|
|
|
|
#endif
|
2003-12-22 01:39:35 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (caps1 != NULL, NULL);
|
|
|
|
g_return_val_if_fail (caps2 != NULL, NULL);
|
|
|
|
|
|
|
|
if (gst_caps_is_empty (caps1) || gst_caps_is_empty (caps2)){
|
|
|
|
return gst_caps_new_empty ();
|
|
|
|
}
|
|
|
|
if (gst_caps_is_any (caps1)) return gst_caps_copy (caps2);
|
|
|
|
if (gst_caps_is_any (caps2)) return gst_caps_copy (caps1);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
dest = gst_caps_new_empty();
|
2003-11-11 19:14:14 +00:00
|
|
|
for(i=0;i<caps1->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
struct1 = gst_caps_get_structure (caps1, i);
|
|
|
|
for(j=0;j<caps2->structs->len;j++){
|
|
|
|
GstStructure *istruct;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
struct2 = gst_caps_get_structure (caps2, j);
|
|
|
|
istruct = gst_caps_structure_intersect (struct1, struct2);
|
|
|
|
|
|
|
|
gst_caps_append_structure(dest, istruct);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-01-01 02:17:44 +00:00
|
|
|
#if 0
|
|
|
|
caps = gst_caps_simplify (dest);
|
|
|
|
gst_caps_free (dest);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-01-01 02:17:44 +00:00
|
|
|
return caps;
|
|
|
|
#else
|
2003-11-11 19:14:14 +00:00
|
|
|
return dest;
|
2004-01-01 02:17:44 +00:00
|
|
|
#endif
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_union:
|
|
|
|
* @caps1: a #GstCaps to union
|
|
|
|
* @caps2: a #GstCaps to union
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that contains all the formats that are in
|
|
|
|
* either @caps1 and @caps2.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_union (const GstCaps *caps1, const GstCaps *caps2)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *dest1;
|
|
|
|
GstCaps *dest2;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
dest1 = gst_caps_copy (caps1);
|
|
|
|
dest2 = gst_caps_copy (caps2);
|
|
|
|
gst_caps_append (dest1, dest2);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
/* FIXME: need a simplify function */
|
|
|
|
|
|
|
|
return dest1;
|
|
|
|
}
|
|
|
|
|
2004-01-01 02:17:44 +00:00
|
|
|
typedef struct _NormalizeForeach {
|
|
|
|
GstCaps *caps;
|
|
|
|
GstStructure *structure;
|
|
|
|
} NormalizeForeach;
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
_gst_caps_normalize_foreach (GQuark field_id, GValue *value, gpointer ptr)
|
|
|
|
{
|
|
|
|
NormalizeForeach *nf = (NormalizeForeach *) ptr;
|
|
|
|
GValue val = { 0 };
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2004-01-01 02:17:44 +00:00
|
|
|
|
|
|
|
if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
|
|
|
|
for (i=1; i<gst_value_list_get_size (value); i++) {
|
|
|
|
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);
|
|
|
|
gst_caps_append_structure (nf->caps, structure);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_value_init_and_copy (&val, gst_value_list_get_value (value, 0));
|
|
|
|
gst_structure_id_set_value (nf->structure, field_id, &val);
|
|
|
|
g_value_unset (&val);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_normalize:
|
|
|
|
* @caps: a #GstCaps to normalize
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that represents the same set of formats as
|
|
|
|
* @caps, but contains no lists. Each list is expanded into separate
|
|
|
|
* @GstStructures.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_normalize (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-01-01 02:17:44 +00:00
|
|
|
NormalizeForeach nf;
|
|
|
|
GstCaps *newcaps;
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
2004-01-01 02:17:44 +00:00
|
|
|
g_return_val_if_fail(caps != NULL, NULL);
|
|
|
|
|
|
|
|
newcaps = gst_caps_copy (caps);
|
|
|
|
nf.caps = newcaps;
|
|
|
|
|
|
|
|
for(i=0;i<newcaps->structs->len;i++){
|
|
|
|
nf.structure = gst_caps_get_structure (newcaps, i);
|
|
|
|
|
|
|
|
while (!gst_structure_foreach (nf.structure, _gst_caps_normalize_foreach,
|
|
|
|
&nf));
|
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-30 04:59:48 +00:00
|
|
|
static gboolean
|
|
|
|
simplify_foreach (GQuark field_id, GValue *value, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstStructure *s2 = (GstStructure *) user_data;
|
|
|
|
const GValue *v2;
|
|
|
|
|
|
|
|
v2 = gst_structure_id_get_value (s2, field_id);
|
|
|
|
if (v2 == NULL) return FALSE;
|
|
|
|
|
|
|
|
if (gst_value_compare (value, v2) == GST_VALUE_EQUAL) return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_caps_structure_simplify (GstStructure *struct1, const GstStructure *struct2)
|
|
|
|
{
|
|
|
|
/* FIXME this is just a simple compare. Better would be to merge
|
|
|
|
* the two structures */
|
|
|
|
if (struct1->name != struct2->name) return FALSE;
|
|
|
|
if (struct1->fields->len != struct2->fields->len) return FALSE;
|
|
|
|
|
|
|
|
return gst_structure_foreach (struct1, simplify_foreach, (void *)struct2);
|
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_simplify:
|
|
|
|
* @caps: a #GstCaps to simplify
|
|
|
|
*
|
|
|
|
* Creates a new #GstCaps that represents the same set of formats as
|
|
|
|
* @caps, but simpler. Component structures that are identical are
|
|
|
|
* merged. Component structures that have ranges or lists that can
|
|
|
|
* be merged are also merged.
|
|
|
|
*
|
|
|
|
* Returns: the new #GstCaps
|
|
|
|
*/
|
2003-12-30 04:59:48 +00:00
|
|
|
GstCaps *gst_caps_simplify (const GstCaps *caps)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
GstCaps *newcaps;
|
|
|
|
GstStructure *structure;
|
|
|
|
GstStructure *struct2;
|
|
|
|
|
|
|
|
if (gst_caps_get_size (caps) < 2) {
|
|
|
|
return gst_caps_copy (caps);
|
|
|
|
}
|
|
|
|
|
|
|
|
newcaps = gst_caps_new_empty ();
|
|
|
|
|
|
|
|
for(i=0;i<gst_caps_get_size (caps);i++){
|
|
|
|
structure = gst_caps_get_structure (caps, i);
|
|
|
|
|
|
|
|
for(j=0;j<gst_caps_get_size (newcaps);j++){
|
|
|
|
struct2 = gst_caps_get_structure (caps, i);
|
|
|
|
if (gst_caps_structure_simplify (struct2, structure)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (j==gst_caps_get_size (newcaps)) {
|
|
|
|
gst_caps_append_structure (newcaps, gst_structure_copy(structure));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
2003-11-11 19:14:14 +00:00
|
|
|
#ifndef GST_DISABLE_LOADSAVE
|
2003-12-22 01:39:35 +00:00
|
|
|
xmlNodePtr gst_caps_save_thyself (const GstCaps *caps, xmlNodePtr parent)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *gst_caps_load_thyself (xmlNodePtr parent)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* utility */
|
2004-01-15 09:03:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_caps_replace:
|
|
|
|
* @caps: a pointer to #GstCaps
|
|
|
|
* @newcaps: a #GstCaps to replace *caps
|
|
|
|
*
|
|
|
|
* Replaces *caps with @newcaps. Frees the #GstCaps in the location
|
|
|
|
* pointed to by @caps, if applicable, then modifies @caps to point to
|
|
|
|
* @newcaps.
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
void gst_caps_replace (GstCaps **caps, GstCaps *newcaps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-01-06 21:39:53 +00:00
|
|
|
#if 0 /* disable this, since too many plugins rely on undefined behavior */
|
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
|
|
|
#ifdef USE_POISONING
|
2004-01-06 21:39:53 +00:00
|
|
|
//if (newcaps) CAPS_POISON (newcaps);
|
|
|
|
#endif
|
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
|
|
|
#endif
|
2003-12-22 01:39:35 +00:00
|
|
|
if (*caps) gst_caps_free(*caps);
|
|
|
|
*caps = newcaps;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_to_string:
|
|
|
|
* @caps: a #GstCaps
|
|
|
|
*
|
|
|
|
* Converts @caps to a string representation. This string representation
|
|
|
|
* can be converted back to a #GstCaps by #gst_caps_from_string().
|
|
|
|
*
|
|
|
|
* Returns: a string representing @caps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
gchar *gst_caps_to_string (const GstCaps *caps)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-07 15:37:21 +00:00
|
|
|
int i;
|
2003-11-11 19:14:14 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
GString *s;
|
2004-02-02 20:25:02 +00:00
|
|
|
char *sstr;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
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-11-11 19:14:14 +00:00
|
|
|
/* FIXME does this leak? */
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
if (caps == NULL) {
|
|
|
|
return g_strdup("NULL");
|
|
|
|
}
|
|
|
|
if(gst_caps_is_any(caps)){
|
2003-11-11 19:14:14 +00:00
|
|
|
return g_strdup("ANY");
|
|
|
|
}
|
2003-12-22 01:39:35 +00:00
|
|
|
if(gst_caps_is_empty(caps)){
|
2003-11-11 19:14:14 +00:00
|
|
|
return g_strdup("EMPTY");
|
|
|
|
}
|
|
|
|
s = g_string_new("");
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
2004-02-02 20:25:02 +00:00
|
|
|
sstr = gst_structure_to_string(structure);
|
|
|
|
g_string_append(s, sstr);
|
|
|
|
g_free(sstr);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
for(i=1;i<caps->structs->len;i++){
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_caps_get_structure (caps, i);
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
g_string_append(s, "; ");
|
2004-02-02 20:25:02 +00:00
|
|
|
sstr = gst_structure_to_string(structure);
|
|
|
|
g_string_append(s, sstr);
|
|
|
|
g_free(sstr);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return g_string_free(s, FALSE);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static gboolean _gst_caps_from_string_inplace (GstCaps *caps,
|
2003-11-11 19:14:14 +00:00
|
|
|
const gchar *string)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
2003-12-22 01:39:35 +00:00
|
|
|
gchar *s;
|
2003-11-11 19:14:14 +00:00
|
|
|
|
|
|
|
if (strcmp("ANY", string)==0) {
|
2003-12-22 01:39:35 +00:00
|
|
|
caps->flags = GST_CAPS_FLAGS_ANY;
|
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
if (strcmp("NONE", string)==0) {
|
2003-12-22 01:39:35 +00:00
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
structure = gst_structure_from_string(string, &s);
|
|
|
|
if (structure == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gst_caps_append_structure (caps, structure);
|
|
|
|
|
|
|
|
while (*s == ';') {
|
|
|
|
s++;
|
|
|
|
while (g_ascii_isspace(*s))s++;
|
|
|
|
structure = gst_structure_from_string(s, &s);
|
|
|
|
if (structure == NULL) {
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
gst_caps_append_structure (caps, structure);
|
|
|
|
while (g_ascii_isspace(*s))s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*s != 0){
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-01-15 09:03:42 +00:00
|
|
|
/**
|
|
|
|
* gst_caps_from_string:
|
|
|
|
* @caps: a string to convert to #GstCaps
|
|
|
|
*
|
|
|
|
* Converts @caps from a string representation.
|
|
|
|
*
|
|
|
|
* Returns: a new #GstCaps
|
|
|
|
*/
|
2003-12-22 01:39:35 +00:00
|
|
|
GstCaps *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
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
caps = gst_caps_new_empty();
|
|
|
|
if (_gst_caps_from_string_inplace (caps, string)) {
|
|
|
|
return caps;
|
|
|
|
} else {
|
|
|
|
gst_caps_free (caps);
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
static void _gst_caps_transform_to_string (const GValue *src_value,
|
2003-11-11 19:14:14 +00:00
|
|
|
GValue *dest_value)
|
|
|
|
{
|
|
|
|
g_return_if_fail (src_value != NULL);
|
|
|
|
g_return_if_fail (dest_value != NULL);
|
|
|
|
|
|
|
|
dest_value->data[0].v_pointer =
|
2003-12-22 01:39:35 +00:00
|
|
|
gst_caps_to_string (src_value->data[0].v_pointer);
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2004-02-18 05:26:59 +00:00
|
|
|
static GstCaps * gst_caps_copy_conditional (const GstCaps *src)
|
2003-11-11 19:14:14 +00:00
|
|
|
{
|
2004-02-18 05:26:59 +00:00
|
|
|
if (src) {
|
|
|
|
return gst_caps_copy (src);
|
2003-12-22 01:39:35 +00:00
|
|
|
} else {
|
2004-02-18 05:26:59 +00:00
|
|
|
return NULL;
|
2003-12-22 01:39:35 +00:00
|
|
|
}
|
2003-11-11 19:14:14 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:39:35 +00:00
|
|
|
/* fixate utility functions */
|
|
|
|
|
|
|
|
gboolean gst_caps_structure_fixate_field_nearest_int (GstStructure *structure,
|
|
|
|
const char *field_name, int target)
|
|
|
|
{
|
|
|
|
const GValue *value;
|
|
|
|
|
|
|
|
g_return_val_if_fail(gst_structure_has_field (structure, field_name), FALSE);
|
|
|
|
|
|
|
|
value = gst_structure_get_value (structure, field_name);
|
|
|
|
|
|
|
|
if (G_VALUE_TYPE (value) == G_TYPE_INT) {
|
|
|
|
/* already fixed */
|
|
|
|
return FALSE;
|
|
|
|
} else if (G_VALUE_TYPE (value) == GST_TYPE_INT_RANGE) {
|
|
|
|
int x;
|
|
|
|
x = gst_value_get_int_range_min (value);
|
|
|
|
if (target < x) target = x;
|
|
|
|
x = gst_value_get_int_range_max (value);
|
|
|
|
if (target > x) target = x;
|
|
|
|
gst_structure_set (structure, field_name, G_TYPE_INT, target, NULL);
|
|
|
|
return TRUE;
|
|
|
|
} else if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
|
|
|
|
const GValue *list_value;
|
|
|
|
int i, n;
|
|
|
|
int best = 0;
|
|
|
|
int best_index = -1;
|
|
|
|
|
|
|
|
n = gst_value_list_get_size (value);
|
|
|
|
for(i=0;i<n;i++){
|
|
|
|
list_value = gst_value_list_get_value (value, i);
|
|
|
|
if (G_VALUE_TYPE (list_value) == G_TYPE_INT) {
|
|
|
|
int x = g_value_get_int (list_value);
|
|
|
|
if (best_index == -1 || (ABS(target-x) < ABS(best-x))) {
|
|
|
|
best_index = i;
|
|
|
|
best = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(best_index != -1) {
|
|
|
|
gst_structure_set (structure, field_name, G_TYPE_INT, best, NULL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean gst_caps_structure_fixate_field_nearest_double (GstStructure
|
|
|
|
*structure, const char *field_name, double target)
|
|
|
|
{
|
|
|
|
const GValue *value;
|
|
|
|
|
|
|
|
g_return_val_if_fail(gst_structure_has_field (structure, field_name), FALSE);
|
|
|
|
|
|
|
|
value = gst_structure_get_value (structure, field_name);
|
|
|
|
|
|
|
|
if (G_VALUE_TYPE (value) == G_TYPE_DOUBLE) {
|
|
|
|
/* already fixed */
|
|
|
|
return FALSE;
|
|
|
|
} else if (G_VALUE_TYPE (value) == GST_TYPE_DOUBLE_RANGE) {
|
|
|
|
double x;
|
|
|
|
x = gst_value_get_double_range_min (value);
|
|
|
|
if (target < x) target = x;
|
|
|
|
x = gst_value_get_double_range_max (value);
|
|
|
|
if (target > x) target = x;
|
|
|
|
gst_structure_set (structure, field_name, G_TYPE_DOUBLE, target, NULL);
|
|
|
|
return TRUE;
|
|
|
|
} else if (G_VALUE_TYPE (value) == GST_TYPE_LIST) {
|
|
|
|
const GValue *list_value;
|
|
|
|
int i, n;
|
|
|
|
double best = 0;
|
|
|
|
int best_index = -1;
|
|
|
|
|
|
|
|
n = gst_value_list_get_size (value);
|
|
|
|
for(i=0;i<n;i++){
|
|
|
|
list_value = gst_value_list_get_value (value, i);
|
|
|
|
if (G_VALUE_TYPE (list_value) == G_TYPE_DOUBLE) {
|
|
|
|
double x = g_value_get_double (list_value);
|
|
|
|
if (best_index == -1 || (ABS(target-x) < ABS(best-x))) {
|
|
|
|
best_index = i;
|
|
|
|
best = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(best_index != -1) {
|
|
|
|
gst_structure_set (structure, field_name, G_TYPE_DOUBLE, best, NULL);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
}
|
|
|
|
|