mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
[MOVED FROM BAD 51/57] flv: Fix parsing of tags and add new mappings
We shouldn't register a new GstTag for every unknown tag we find as this might lead to conflicts and also those tags are essentially unknown. Add mappings for some known tags and also convert string dates to GDate, as found in many FLV files.
This commit is contained in:
parent
046311d3ea
commit
32c2364ff2
1 changed files with 81 additions and 48 deletions
|
@ -71,6 +71,57 @@ gst_flv_demux_query_types (GstPad * pad)
|
||||||
return query_types;
|
return query_types;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
parse_flv_date_string (GDate * date, const gchar * s)
|
||||||
|
{
|
||||||
|
g_date_set_parse (date, s);
|
||||||
|
if (g_date_valid (date))
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* "Fri Oct 15 15:13:16 2004" needs to be parsed */
|
||||||
|
{
|
||||||
|
static const gchar *months[] = {
|
||||||
|
"Jan", "Feb", "Mar", "Apr",
|
||||||
|
"May", "Jun", "Jul", "Aug",
|
||||||
|
"Sep", "Oct", "Nov", "Dec"
|
||||||
|
};
|
||||||
|
gchar **tokens = g_strsplit (s, " ", -1);
|
||||||
|
guint64 d;
|
||||||
|
gchar *endptr;
|
||||||
|
gint i;
|
||||||
|
|
||||||
|
if (g_strv_length (tokens) != 5)
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
if (strlen (tokens[1]) != 3)
|
||||||
|
goto out;
|
||||||
|
for (i = 0; i < 12; i++) {
|
||||||
|
if (!strcmp (tokens[1], months[i])) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (i == 12)
|
||||||
|
goto out;
|
||||||
|
g_date_set_month (date, i + 1);
|
||||||
|
|
||||||
|
d = g_ascii_strtoull (tokens[2], &endptr, 10);
|
||||||
|
if (d == 0 && *endptr != '\0')
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
g_date_set_day (date, d);
|
||||||
|
|
||||||
|
d = g_ascii_strtoull (tokens[4], &endptr, 10);
|
||||||
|
if (d == 0 && *endptr != '\0')
|
||||||
|
goto out;
|
||||||
|
|
||||||
|
g_date_set_year (date, d);
|
||||||
|
|
||||||
|
out:
|
||||||
|
if (tokens)
|
||||||
|
g_strfreev (tokens);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
||||||
gboolean * end_marker)
|
gboolean * end_marker)
|
||||||
|
@ -109,28 +160,14 @@ gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
||||||
|
|
||||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||||
GST_TAG_DURATION, demux->duration, NULL);
|
GST_TAG_DURATION, demux->duration, NULL);
|
||||||
|
} else if (!strcmp (tag_name, "AspectRatioX")) {
|
||||||
|
demux->par_x = d;
|
||||||
|
demux->got_par = TRUE;
|
||||||
|
} else if (!strcmp (tag_name, "AspectRatioY")) {
|
||||||
|
demux->par_y = d;
|
||||||
|
demux->got_par = TRUE;
|
||||||
} else {
|
} else {
|
||||||
if (tag_name) {
|
GST_INFO_OBJECT (demux, "Tag \'%s\' not handled", tag_name);
|
||||||
if (!strcmp (tag_name, "AspectRatioX")) {
|
|
||||||
demux->par_x = d;
|
|
||||||
demux->got_par = TRUE;
|
|
||||||
} else if (!strcmp (tag_name, "AspectRatioY")) {
|
|
||||||
demux->par_y = d;
|
|
||||||
demux->got_par = TRUE;
|
|
||||||
}
|
|
||||||
if (!gst_tag_exists (tag_name)) {
|
|
||||||
gst_tag_register (tag_name, GST_TAG_FLAG_META, G_TYPE_DOUBLE,
|
|
||||||
tag_name, tag_name, gst_tag_merge_use_first);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gst_tag_get_type (tag_name) == G_TYPE_DOUBLE) {
|
|
||||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
|
||||||
tag_name, d, NULL);
|
|
||||||
} else {
|
|
||||||
GST_WARNING_OBJECT (demux, "tag %s already registered with a "
|
|
||||||
"different type", tag_name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -144,20 +181,7 @@ gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (demux, "%s => (boolean) %d", tag_name, b);
|
GST_DEBUG_OBJECT (demux, "%s => (boolean) %d", tag_name, b);
|
||||||
|
|
||||||
if (tag_name) {
|
GST_INFO_OBJECT (demux, "Tag \'%s\' not handled", tag_name);
|
||||||
if (!gst_tag_exists (tag_name)) {
|
|
||||||
gst_tag_register (tag_name, GST_TAG_FLAG_META, G_TYPE_BOOLEAN,
|
|
||||||
tag_name, tag_name, gst_tag_merge_use_first);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gst_tag_get_type (tag_name) == G_TYPE_BOOLEAN) {
|
|
||||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
|
||||||
tag_name, b, NULL);
|
|
||||||
} else {
|
|
||||||
GST_WARNING_OBJECT (demux, "tag %s already registered with a "
|
|
||||||
"different type", tag_name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -171,19 +195,25 @@ gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (demux, "%s => (string) %s", tag_name, s);
|
GST_DEBUG_OBJECT (demux, "%s => (string) %s", tag_name, s);
|
||||||
|
|
||||||
if (tag_name) {
|
if (!strcmp (tag_name, "creationdate")) {
|
||||||
if (!gst_tag_exists (tag_name)) {
|
GDate *date = g_date_new ();
|
||||||
gst_tag_register (tag_name, GST_TAG_FLAG_META, G_TYPE_STRING,
|
|
||||||
tag_name, tag_name, gst_tag_merge_strings_with_comma);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (gst_tag_get_type (tag_name) == G_TYPE_STRING) {
|
parse_flv_date_string (date, s);
|
||||||
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
if (!g_date_valid (date)) {
|
||||||
tag_name, s, NULL);
|
GST_DEBUG_OBJECT (demux, "Failed to parse string as date");
|
||||||
} else {
|
} else {
|
||||||
GST_WARNING_OBJECT (demux, "tag %s already registered with a "
|
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||||
"different type", tag_name);
|
GST_TAG_DATE, date, NULL);
|
||||||
}
|
}
|
||||||
|
g_date_free (date);
|
||||||
|
} else if (!strcmp (tag_name, "creator")) {
|
||||||
|
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||||
|
GST_TAG_ARTIST, s, NULL);
|
||||||
|
} else if (!strcmp (tag_name, "metadatacreator")) {
|
||||||
|
gst_tag_list_add (demux->taglist, GST_TAG_MERGE_REPLACE,
|
||||||
|
GST_TAG_ENCODER, s, NULL);
|
||||||
|
} else {
|
||||||
|
GST_INFO_OBJECT (demux, "Tag \'%s\' not handled", tag_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_free (s);
|
g_free (s);
|
||||||
|
@ -297,15 +327,18 @@ gst_flv_parse_metadata_item (GstFLVDemux * demux, GstByteReader * reader,
|
||||||
case 11: // Date
|
case 11: // Date
|
||||||
{
|
{
|
||||||
gdouble d;
|
gdouble d;
|
||||||
|
gint16 i;
|
||||||
|
|
||||||
if (!gst_byte_reader_get_float64_be (reader, &d))
|
if (!gst_byte_reader_get_float64_be (reader, &d))
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
/* There are 2 additional bytes */
|
if (!gst_byte_reader_get_int16_be (reader, &i))
|
||||||
if (!gst_byte_reader_skip (reader, 2))
|
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (demux, "%s => (date as a double) %f", tag_name, d);
|
GST_DEBUG_OBJECT (demux,
|
||||||
|
"%s => (date as a double) %f, timezone offset %d", tag_name, d, i);
|
||||||
|
|
||||||
|
GST_INFO_OBJECT (demux, "Tag \'%s\' not handled", tag_name);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue