X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstcaps.c;h=2ada66fc296f36f4deea61be0cfcb3fc563d0abc;hb=ded0ea049edbd7026901f4f6b68fdac6d20f6c98;hp=f95356bbab438e0116e84209d6bd83da3c13da97;hpb=148bf27ce36a2abf88f431bf83214779db771a64;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstcaps.c b/gst/gstcaps.c index f95356b..2ada66f 100644 --- a/gst/gstcaps.c +++ b/gst/gstcaps.c @@ -44,7 +44,7 @@ * * GstCaps *caps; * caps = gst_caps_new_simple ("video/x-raw", - * "format", G_TYPE_STRING, "I420"), + * "format", G_TYPE_STRING, "I420", * "framerate", GST_TYPE_FRACTION, 25, 1, * "pixel-aspect-ratio", GST_TYPE_FRACTION, 1, 1, * "width", G_TYPE_INT, 320, @@ -75,8 +75,14 @@ #define DEBUG_REFCOUNT +typedef struct _GstCapsImpl +{ + GstCaps caps; + + GPtrArray *array; +} GstCapsImpl; -#define GST_CAPS_ARRAY(c) ((GPtrArray *)((c)->priv)) +#define GST_CAPS_ARRAY(c) (((GstCapsImpl *)(c))->array) #define GST_CAPS_LEN(c) (GST_CAPS_ARRAY(c)->len) @@ -191,7 +197,7 @@ gst_caps_init (GstCaps * caps, gsize size) * in practise * GST_CAPS_ARRAY (caps) = g_ptr_array_sized_new (32); */ - caps->priv = g_ptr_array_new (); + GST_CAPS_ARRAY (caps) = g_ptr_array_new (); } /** @@ -208,9 +214,9 @@ gst_caps_new_empty (void) { GstCaps *caps; - caps = g_slice_new (GstCaps); + caps = (GstCaps *) g_slice_new (GstCapsImpl); - gst_caps_init (caps, sizeof (GstCaps)); + gst_caps_init (caps, sizeof (GstCapsImpl)); #ifdef DEBUG_REFCOUNT GST_CAT_TRACE (GST_CAT_CAPS, "created caps %p", caps); @@ -356,7 +362,6 @@ gst_static_caps_get_type (void) return staticcaps_type; } - /** * gst_static_caps_get: * @static_caps: the #GstStaticCaps to convert @@ -370,20 +375,19 @@ gst_static_caps_get_type (void) GstCaps * gst_static_caps_get (GstStaticCaps * static_caps) { - GstCaps *caps; + GstCaps **caps; g_return_val_if_fail (static_caps != NULL, NULL); - caps = (GstCaps *) static_caps; + caps = &static_caps->caps; /* refcount is 0 when we need to convert */ - if (G_UNLIKELY (GST_CAPS_REFCOUNT_VALUE (caps) == 0)) { + if (G_UNLIKELY (*caps == NULL)) { const char *string; - GstCaps temp; G_LOCK (static_caps_lock); /* check if other thread already updated */ - if (G_UNLIKELY (GST_CAPS_REFCOUNT_VALUE (caps) > 0)) + if (G_UNLIKELY (*caps != NULL)) goto done; string = static_caps->string; @@ -391,30 +395,22 @@ gst_static_caps_get (GstStaticCaps * static_caps) if (G_UNLIKELY (string == NULL)) goto no_string; - GST_CAT_TRACE (GST_CAT_CAPS, "creating %p", static_caps); - - /* we construct the caps on the stack, then copy over the struct into our - * real caps, refcount last. We do this because we must leave the refcount - * of the result caps to 0 so that other threads don't run away with the - * caps while we are constructing it. */ - gst_caps_init (&temp, sizeof (GstCaps)); + *caps = gst_caps_from_string (string); /* convert to string */ - if (G_UNLIKELY (!gst_caps_from_string_inplace (&temp, string))) + if (G_UNLIKELY (*caps == NULL)) g_critical ("Could not convert static caps \"%s\"", string); - GST_MINI_OBJECT_REFCOUNT (&temp) = 0; - memcpy (caps, &temp, sizeof (GstCaps)); - gst_caps_ref (caps); - - GST_CAT_TRACE (GST_CAT_CAPS, "created %p", static_caps); + GST_CAT_TRACE (GST_CAT_CAPS, "created %p from string %s", static_caps, + string); done: G_UNLOCK (static_caps_lock); } /* ref the caps, makes it not writable */ - gst_caps_ref (caps); + if (G_LIKELY (*caps != NULL)) + gst_caps_ref (*caps); - return caps; + return *caps; /* ERRORS */ no_string: @@ -427,30 +423,16 @@ no_string: /** * gst_static_caps_cleanup: - * @static_caps: the #GstStaticCaps to convert + * @static_caps: the #GstStaticCaps to clean * - * Clean up the caps contained in @static_caps when the refcount is 0. + * Clean up the cached caps contained in @static_caps. */ void gst_static_caps_cleanup (GstStaticCaps * static_caps) { - GstCaps *caps = (GstCaps *) static_caps; - - /* FIXME: this is not threadsafe */ - if (GST_CAPS_REFCOUNT_VALUE (caps) == 1) { - GstStructure *structure; - guint i, clen; - - clen = GST_CAPS_LEN (caps); - - for (i = 0; i < clen; i++) { - structure = (GstStructure *) gst_caps_get_structure (caps, i); - gst_structure_set_parent_refcount (structure, NULL); - gst_structure_free (structure); - } - g_ptr_array_free (GST_CAPS_ARRAY (caps), TRUE); - GST_CAPS_REFCOUNT (caps) = 0; - } + G_LOCK (static_caps_lock); + gst_caps_replace (&static_caps->caps, NULL); + G_UNLOCK (static_caps_lock); } /* manipulation */ @@ -811,10 +793,6 @@ gst_caps_set_simple_valist (GstCaps * caps, const char *field, va_list varargs) type = va_arg (varargs, GType); - if (G_UNLIKELY (type == G_TYPE_DATE)) { - g_warning ("Don't use G_TYPE_DATE, use GST_TYPE_DATE instead\n"); - type = GST_TYPE_DATE; - } G_VALUE_COLLECT_INIT (&value, type, varargs, 0, &err); if (G_UNLIKELY (err)) { g_critical ("%s", err);