Home
last modified time | relevance | path

Searched refs:ext_comment (Results 1 – 3 of 3) sorted by relevance

/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/
Dtags.c274 gst_tag_parse_extended_comment (const gchar * ext_comment, gchar ** key, in gst_tag_parse_extended_comment() argument
279 g_return_val_if_fail (ext_comment != NULL, FALSE); in gst_tag_parse_extended_comment()
280 g_return_val_if_fail (g_utf8_validate (ext_comment, -1, NULL), FALSE); in gst_tag_parse_extended_comment()
287 div = strchr (ext_comment, '='); in gst_tag_parse_extended_comment()
288 bop = strchr (ext_comment, '['); in gst_tag_parse_extended_comment()
289 bcl = strchr (ext_comment, ']'); in gst_tag_parse_extended_comment()
295 *value = g_strdup (ext_comment); in gst_tag_parse_extended_comment()
303 *key = g_strndup (ext_comment, bop - ext_comment); in gst_tag_parse_extended_comment()
308 *key = g_strndup (ext_comment, div - ext_comment); in gst_tag_parse_extended_comment()
Dgstvorbistag.c208 gchar *ext_comment; in gst_vorbis_tag_add() local
210 ext_comment = g_strdup_printf ("%s=%s", tag, value); in gst_vorbis_tag_add()
212 ext_comment, NULL); in gst_vorbis_tag_add()
213 g_free (ext_comment); in gst_vorbis_tag_add()
Dtag.h574 gboolean gst_tag_parse_extended_comment (const gchar * ext_comment,