mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
h265parse: Fix the memory freeing of stored VPS nals
https://bugzilla.gnome.org/show_bug.cgi?id=747613
This commit is contained in:
parent
a70c4f319d
commit
5770a96c8d
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,7 @@ gst_h265_parse_stop (GstBaseParse * parse)
|
|||
GST_DEBUG_OBJECT (parse, "stop");
|
||||
gst_h265_parse_reset (h265parse);
|
||||
|
||||
for (i = 0; i < GST_H265_MAX_SPS_COUNT; i++)
|
||||
for (i = 0; i < GST_H265_MAX_VPS_COUNT; i++)
|
||||
gst_buffer_replace (&h265parse->vps_nals[i], NULL);
|
||||
for (i = 0; i < GST_H265_MAX_SPS_COUNT; i++)
|
||||
gst_buffer_replace (&h265parse->sps_nals[i], NULL);
|
||||
|
|
Loading…
Reference in a new issue