mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
tag: xmp: Add missing schema creation
tiff schema entries were being added to the previous schema (xap) because a new one wasn't being created for it.
This commit is contained in:
parent
103fb67d20
commit
75897c716f
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,6 @@ _xmp_tag_get_mapping (const gchar * gst_tag)
|
|||
|
||||
ret = (GPtrArray *) gst_xmp_schema_lookup (schema, GUINT_TO_POINTER (key));
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
@ -822,6 +821,7 @@ _init_xmp_tag_map ()
|
|||
_gst_xmp_add_schema ("xmp", schema);
|
||||
|
||||
/* tiff */
|
||||
schema = gst_xmp_schema_new ();
|
||||
_gst_xmp_schema_add_simple_mapping (schema,
|
||||
GST_TAG_DEVICE_MANUFACTURER, "tiff:Make", GST_XMP_TAG_TYPE_SIMPLE, NULL,
|
||||
NULL);
|
||||
|
|
Loading…
Reference in a new issue