mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
metadata: Remove _XMP_GEO_* tags
Removes GST_TAG_XMP_GEO_LOCATION_COUNTRY, GST_TAG_XMP_GEO_LOCATION_CITY and GST_TAG_XMP_GEO_LOCATION_SUBLOCATION from metadata's private tags as those are now present at -core tags. Fixes #612410
This commit is contained in:
parent
af5565a62b
commit
c5034a716d
4 changed files with 4 additions and 20 deletions
|
@ -50,7 +50,7 @@ AC_LIBTOOL_WIN32_DLL
|
|||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=0.10.27
|
||||
GST_REQ=0.10.28.1
|
||||
GSTPB_REQ=0.10.27
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
|
|
@ -446,17 +446,5 @@ metadata_tags_iptc_register (void)
|
|||
static void
|
||||
metadata_tags_xmp_register (void)
|
||||
{
|
||||
gst_tag_register (GST_TAG_XMP_GEO_LOCATION_COUNTRY, GST_TAG_FLAG_META,
|
||||
G_TYPE_STRING, GST_TAG_XMP_GEO_LOCATION_COUNTRY,
|
||||
"human readable english country name of where the media has been recorded or produced",
|
||||
NULL);
|
||||
gst_tag_register (GST_TAG_XMP_GEO_LOCATION_CITY, GST_TAG_FLAG_META,
|
||||
G_TYPE_STRING, GST_TAG_XMP_GEO_LOCATION_CITY,
|
||||
"human readable english city name of where the media has been recorded or produced",
|
||||
NULL);
|
||||
gst_tag_register (GST_TAG_XMP_GEO_LOCATION_SUBLOCATION, GST_TAG_FLAG_META,
|
||||
G_TYPE_STRING, GST_TAG_XMP_GEO_LOCATION_SUBLOCATION,
|
||||
"human readable location detail of where the media has been recorded or produced",
|
||||
NULL);
|
||||
|
||||
}
|
||||
|
|
|
@ -126,10 +126,6 @@ typedef enum {
|
|||
#define GST_TAG_GPS_SPEED ""
|
||||
#define GST_TAG_GPS_TRACK ""
|
||||
|
||||
#define GST_TAG_XMP_GEO_LOCATION_COUNTRY "geo-location-country"
|
||||
#define GST_TAG_XMP_GEO_LOCATION_CITY "geo-location-city"
|
||||
#define GST_TAG_XMP_GEO_LOCATION_SUBLOCATION "geo-location-sublocation"
|
||||
|
||||
/* *INDENT-ON* */
|
||||
|
||||
/*
|
||||
|
|
|
@ -168,13 +168,13 @@ static const SchemaTagMap schema_map_dublin_tags_map[] = {
|
|||
};
|
||||
|
||||
static const SchemaTagMap schema_map_photoshop_tags_map[] = {
|
||||
{"Country", GST_TAG_XMP_GEO_LOCATION_COUNTRY },
|
||||
{"City", GST_TAG_XMP_GEO_LOCATION_CITY },
|
||||
{"Country", GST_TAG_GEO_LOCATION_COUNTRY },
|
||||
{"City", GST_TAG_GEO_LOCATION_CITY },
|
||||
{NULL, NULL}
|
||||
};
|
||||
|
||||
static const SchemaTagMap schema_map_iptc4xmpcore_tags_map[] = {
|
||||
{"location", GST_TAG_XMP_GEO_LOCATION_SUBLOCATION },
|
||||
{"location", GST_TAG_GEO_LOCATION_SUBLOCATION },
|
||||
{NULL, NULL}
|
||||
};
|
||||
/* *INDENT-ON* */
|
||||
|
|
Loading…
Reference in a new issue