Exemple #1
0
/*
 * Class method: get_description(tag)
 * tag: the name of the tag.
 *
 * Returns: the human-readable description of this tag.
 */
static VALUE
rg_s_get_description (G_GNUC_UNUSED VALUE self, VALUE tag)
{
    return CSTR2RVAL (gst_tag_get_description (RVAL2CSTR (tag)));
}
Exemple #2
0
/*
 * Class method: get_description(tag)
 * tag: the name of the tag.
 *
 * Returns: the human-readable description of this tag.
 */
static VALUE
rb_gst_tag_get_description (VALUE self, VALUE tag)
{
    return CSTR2RVAL (gst_tag_get_description (RVAL2CSTR (tag)));
}