/* transform functions */
static void gst_caps_transform_to_string (const GValue *src_value, GValue *dest_value);
+static void gst_caps_destroy (GstCaps *caps);
+
+
static void
gst_caps_transform_to_string (const GValue *src_value, GValue *dest_value)
{
* Frees the memory used by this caps structure and all
* the chained caps and properties.
*/
-void
+static void
gst_caps_destroy (GstCaps *caps)
{
GstCaps *next;
GstCaps* gst_caps_unref (GstCaps *caps);
GstCaps* gst_caps_ref (GstCaps *caps);
void gst_caps_sink (GstCaps *caps);
-void gst_caps_destroy (GstCaps *caps);
/* write debug lines to the log */
void gst_caps_debug (GstCaps *caps, const gchar *label);
static GstPropsEntry* gst_props_alloc_entry (void);
+static void gst_props_destroy (GstProps *props);
+
static gchar *
gst_props_entry_to_string (GstPropsEntry *entry)
{
* Destroy the property, freeing all the memory that
* was allocated.
*/
-void
+static void
gst_props_destroy (GstProps *props)
{
if (props == NULL)
GstProps* gst_props_unref (GstProps *props);
GstProps* gst_props_ref (GstProps *props);
void gst_props_sink (GstProps *props);
-void gst_props_destroy (GstProps *props);
/* dump property debug info to the log */
void gst_props_debug (GstProps *props);