mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 13:06:23 +00:00
dash: mpdparser: do not cleanup xml lib too early
The xmlCleanupParser function seems to cleanup all statically allocated libxml variables, making it unusable. We can't guarantee that dashdemux won't need it anymore, so better not call it.
This commit is contained in:
parent
14feeb3ccb
commit
d9baed8302
1 changed files with 0 additions and 4 deletions
|
@ -2676,10 +2676,6 @@ gst_mpd_parse (GstMpdClient * client, const gchar * data, gint size)
|
|||
}
|
||||
/* free the document */
|
||||
xmlFreeDoc (doc);
|
||||
/* cleanup function for the XML library */
|
||||
xmlCleanupParser ();
|
||||
/* dump XML library memory for debugging */
|
||||
xmlMemoryDump ();
|
||||
}
|
||||
GST_MPD_CLIENT_UNLOCK (client);
|
||||
|
||||
|
|
Loading…
Reference in a new issue