mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-03 06:39:51 +00:00
dashdemux: When clearing the sidx parser, reset all state
And especially don't keep entry count and index around, we have no entries anymore after clearing.
This commit is contained in:
parent
644192aafe
commit
b84f530a9a
1 changed files with 3 additions and 1 deletions
|
@ -363,7 +363,9 @@ void
|
|||
gst_isoff_sidx_parser_clear (GstSidxParser * parser)
|
||||
{
|
||||
g_free (parser->sidx.entries);
|
||||
parser->sidx.entries = NULL;
|
||||
memset (parser, 0, sizeof (*parser));
|
||||
|
||||
gst_isoff_sidx_parser_init (parser);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue