mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
tag: xmp: Add Iptc4xmpExt schema support
Adds Iptc4xmpExt schema with country, city and sublocation tags mapped
This commit is contained in:
parent
12813fc10b
commit
2df57f289a
1 changed files with 21 additions and 0 deletions
|
@ -51,6 +51,7 @@ static const gchar *schema_list[] = {
|
||||||
"exif",
|
"exif",
|
||||||
"photoshop",
|
"photoshop",
|
||||||
"Iptc4xmpCore",
|
"Iptc4xmpCore",
|
||||||
|
"Iptc4xmpExt",
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1007,6 +1008,24 @@ _init_xmp_tag_map (gpointer user_data)
|
||||||
GstXmpTagTypeSimple, NULL, NULL);
|
GstXmpTagTypeSimple, NULL, NULL);
|
||||||
_gst_xmp_add_schema ("Iptc4xmpCore", schema);
|
_gst_xmp_add_schema ("Iptc4xmpCore", schema);
|
||||||
|
|
||||||
|
/* iptc4xmpext schema */
|
||||||
|
schema = gst_xmp_schema_new ();
|
||||||
|
xmpinfo = gst_xmp_tag_create (NULL, "Iptc4xmpExt:LocationShown",
|
||||||
|
GstXmpTagTypeStruct, NULL, NULL);
|
||||||
|
xmpinfo->children = g_slist_prepend (xmpinfo->children,
|
||||||
|
gst_xmp_tag_create (GST_TAG_GEO_LOCATION_SUBLOCATION,
|
||||||
|
"LocationDetails:Sublocation", GstXmpTagTypeSimple, NULL, NULL));
|
||||||
|
xmpinfo->children =
|
||||||
|
g_slist_prepend (xmpinfo->children,
|
||||||
|
gst_xmp_tag_create (GST_TAG_GEO_LOCATION_CITY,
|
||||||
|
"LocationDetails:City", GstXmpTagTypeSimple, NULL, NULL));
|
||||||
|
xmpinfo->children =
|
||||||
|
g_slist_prepend (xmpinfo->children,
|
||||||
|
gst_xmp_tag_create (GST_TAG_GEO_LOCATION_COUNTRY,
|
||||||
|
"LocationDetails:Country", GstXmpTagTypeSimple, NULL, NULL));
|
||||||
|
_gst_xmp_schema_add_mapping (schema, xmpinfo);
|
||||||
|
_gst_xmp_add_schema ("Iptc4xmpExt", schema);
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1031,6 +1050,7 @@ static const GstXmpNamespaceMatch ns_match[] = {
|
||||||
{"xap", "http://ns.adobe.com/xap/1.0/"},
|
{"xap", "http://ns.adobe.com/xap/1.0/"},
|
||||||
{"photoshop", "http://ns.adobe.com/photoshop/1.0/"},
|
{"photoshop", "http://ns.adobe.com/photoshop/1.0/"},
|
||||||
{"Iptc4xmpCore", "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"},
|
{"Iptc4xmpCore", "http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/"},
|
||||||
|
{"Iptc4xmpExt", "http://iptc.org/std/Iptc4xmpExt/2008-02-29/"},
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1251,6 +1271,7 @@ gst_tag_list_from_xmp_buffer (const GstBuffer * buffer)
|
||||||
{"xap", NULL},
|
{"xap", NULL},
|
||||||
{"photoshop", NULL},
|
{"photoshop", NULL},
|
||||||
{"Iptc4xmpCore", NULL},
|
{"Iptc4xmpCore", NULL},
|
||||||
|
{"Iptc4xmpExt", NULL},
|
||||||
{NULL, NULL}
|
{NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue