X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gst%2Fgstformat.c;h=130fc77f1850e7ed0825a275826a1af08667027b;hb=53bf06c08814ff9ac3968d47daf11a395cf26a01;hp=0006e2cebab5b65cc53948ee162f0ceaa26d3bf8;hpb=24573211c6b0077c756c84edc62121d5b6822206;p=platform%2Fupstream%2Fgstreamer.git diff --git a/gst/gstformat.c b/gst/gstformat.c index 0006e2c..130fc77 100644 --- a/gst/gstformat.c +++ b/gst/gstformat.c @@ -17,12 +17,13 @@ * * 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. + * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301, USA. */ /** * SECTION:gstformat + * @title: GstFormat * @short_description: Dynamically register new data formats * @see_also: #GstPad, #GstElement * @@ -37,7 +38,7 @@ #include "gstformat.h" #include "gstenumtypes.h" -static GStaticMutex mutex = G_STATIC_MUTEX_INIT; +static GMutex mutex; static GList *_gst_formats = NULL; static GHashTable *_nick_to_format = NULL; static GHashTable *_format_to_nick = NULL; @@ -49,15 +50,15 @@ static GstFormatDefinition standard_definitions[] = { {GST_FORMAT_TIME, "time", "Time", 0}, {GST_FORMAT_BUFFERS, "buffers", "Buffers", 0}, {GST_FORMAT_PERCENT, "percent", "Percent", 0}, - {0, NULL, NULL, 0} + {GST_FORMAT_UNDEFINED, NULL, NULL, 0} }; void -_gst_format_initialize (void) +_priv_gst_format_initialize (void) { GstFormatDefinition *standards = standard_definitions; - g_static_mutex_lock (&mutex); + g_mutex_lock (&mutex); if (_nick_to_format == NULL) { _nick_to_format = g_hash_table_new (g_str_hash, g_str_equal); _format_to_nick = g_hash_table_new (NULL, NULL); @@ -76,7 +77,7 @@ _gst_format_initialize (void) } /* getting the type registers the enum */ g_type_class_ref (gst_format_get_type ()); - g_static_mutex_unlock (&mutex); + g_mutex_unlock (&mutex); } /** @@ -85,8 +86,8 @@ _gst_format_initialize (void) * * Get a printable name for the given format. Do not modify or free. * - * Returns: a reference to the static name of the format or NULL if - * the format is unknown. + * Returns: (nullable): a reference to the static name of the format + * or %NULL if the format is unknown. */ const gchar * gst_format_get_name (GstFormat format) @@ -151,9 +152,9 @@ gst_format_register (const gchar * nick, const gchar * description) if (query != GST_FORMAT_UNDEFINED) return query; - g_static_mutex_lock (&mutex); + g_mutex_lock (&mutex); format = g_slice_new (GstFormatDefinition); - format->value = _n_values; + format->value = (GstFormat) _n_values; format->nick = g_strdup (nick); format->description = g_strdup (description); format->quark = g_quark_from_static_string (format->nick); @@ -163,7 +164,7 @@ gst_format_register (const gchar * nick, const gchar * description) format); _gst_formats = g_list_append (_gst_formats, format); _n_values++; - g_static_mutex_unlock (&mutex); + g_mutex_unlock (&mutex); return format->value; } @@ -184,9 +185,9 @@ gst_format_get_by_nick (const gchar * nick) g_return_val_if_fail (nick != NULL, GST_FORMAT_UNDEFINED); - g_static_mutex_lock (&mutex); + g_mutex_lock (&mutex); format = g_hash_table_lookup (_nick_to_format, nick); - g_static_mutex_unlock (&mutex); + g_mutex_unlock (&mutex); if (format != NULL) return format->value; @@ -196,12 +197,12 @@ gst_format_get_by_nick (const gchar * nick) /** * gst_formats_contains: - * @formats: The format array to search + * @formats: (array zero-terminated=1): The format array to search * @format: the format to find * * See if the given format is inside the format array. * - * Returns: TRUE if the format is found inside the array + * Returns: %TRUE if the format is found inside the array */ gboolean gst_formats_contains (const GstFormat * formats, GstFormat format) @@ -225,7 +226,8 @@ gst_formats_contains (const GstFormat * formats, GstFormat format) * * Get details about the given format. * - * Returns: The #GstFormatDefinition for @format or NULL on failure. + * Returns: (nullable): The #GstFormatDefinition for @format or %NULL + * on failure. * * MT safe. */ @@ -234,9 +236,9 @@ gst_format_get_details (GstFormat format) { const GstFormatDefinition *result; - g_static_mutex_lock (&mutex); + g_mutex_lock (&mutex); result = g_hash_table_lookup (_format_to_nick, GINT_TO_POINTER (format)); - g_static_mutex_unlock (&mutex); + g_mutex_unlock (&mutex); return result; } @@ -254,11 +256,11 @@ gst_format_iterate_definitions (void) { GstIterator *result; - g_static_mutex_lock (&mutex); + g_mutex_lock (&mutex); /* FIXME: register a boxed type for GstFormatDefinition */ result = gst_iterator_new_list (G_TYPE_POINTER, - g_static_mutex_get_mutex (&mutex), &_n_values, &_gst_formats, NULL, NULL); - g_static_mutex_unlock (&mutex); + &mutex, &_n_values, &_gst_formats, NULL, NULL); + g_mutex_unlock (&mutex); return result; }