mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
h264parse: free PPS NAL buffers on cleanup
Obviously a typo. Fixes bug #645502.
This commit is contained in:
parent
3e4e198c5e
commit
cfb22fe985
1 changed files with 1 additions and 1 deletions
|
@ -1040,7 +1040,7 @@ gst_h264_params_free (GstH264Params * params)
|
|||
for (i = 0; i < MAX_SPS_COUNT; i++)
|
||||
gst_buffer_replace (¶ms->sps_nals[i], NULL);
|
||||
for (i = 0; i < MAX_PPS_COUNT; i++)
|
||||
gst_buffer_replace (¶ms->sps_nals[i], NULL);
|
||||
gst_buffer_replace (¶ms->pps_nals[i], NULL);
|
||||
|
||||
g_free (params);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue