mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
typefindfunctions: Check for the SVG namespace URL in addition to <svg
and the doctype
Finding the SVG namespace URL gives a clear indication that this is actually an SVG file while the `<svg>` tag only gives a likely indication as it's rather short. Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/1540 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3631>
This commit is contained in:
parent
5ff5f9fd5b
commit
401ea9f683
1 changed files with 12 additions and 4 deletions
|
@ -2162,21 +2162,29 @@ svg_type_find (GstTypeFind * tf, gpointer unused)
|
|||
{
|
||||
static const gchar svg_doctype[] = "!DOCTYPE svg";
|
||||
static const gchar svg_tag[] = "<svg";
|
||||
static const gchar svg_namespace[] = "http://www.w3.org/2000/svg";
|
||||
DataScanCtx c = { 0, NULL, 0 };
|
||||
guint probability = GST_TYPE_FIND_NONE;
|
||||
|
||||
while (c.offset <= 1024) {
|
||||
if (G_UNLIKELY (!data_scan_ctx_ensure_data (tf, &c, 12)))
|
||||
if (G_UNLIKELY (!data_scan_ctx_ensure_data (tf, &c,
|
||||
strlen (svg_namespace))))
|
||||
break;
|
||||
|
||||
if (memcmp (svg_doctype, c.data, 12) == 0) {
|
||||
if (memcmp (svg_doctype, c.data, 12) == 0
|
||||
|| memcmp (svg_namespace, c.data, strlen (svg_namespace)) == 0) {
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, SVG_CAPS);
|
||||
return;
|
||||
} else if (memcmp (svg_tag, c.data, 4) == 0) {
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, SVG_CAPS);
|
||||
return;
|
||||
// Check if we also find the SVG namespace later as that would be a
|
||||
// clearer indication
|
||||
probability = GST_TYPE_FIND_LIKELY;
|
||||
}
|
||||
data_scan_ctx_advance (tf, &c, 1);
|
||||
}
|
||||
|
||||
if (probability > GST_TYPE_FIND_NONE)
|
||||
gst_type_find_suggest (tf, probability, SVG_CAPS);
|
||||
}
|
||||
|
||||
/*** multipart/x-mixed-replace mimestream ***/
|
||||
|
|
Loading…
Reference in a new issue