mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-16 11:15:31 +00:00
qtdemux: use older g_array_free
g_array_unref() is only since 2.22
This commit is contained in:
parent
2b81f913a4
commit
bd43ac854a
1 changed files with 4 additions and 4 deletions
|
@ -6109,7 +6109,7 @@ qtdemux_parse_trak (GstQTDemux * qtdemux, GNode * trak)
|
|||
}
|
||||
g_array_sort (durations, less_than);
|
||||
stream->min_duration = g_array_index (durations, guint32, samples / 2);
|
||||
g_array_unref (durations);
|
||||
g_array_free (durations, TRUE);
|
||||
}
|
||||
/* configure segments */
|
||||
if (!qtdemux_parse_segments (qtdemux, stream, trak))
|
||||
|
|
Loading…
Reference in a new issue