mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
video-converter: free dither_lines
Avoid a memory leak
This commit is contained in:
parent
11dc06fb3e
commit
5db596495b
1 changed files with 2 additions and 0 deletions
|
@ -1803,6 +1803,8 @@ gst_video_converter_free (GstVideoConverter * convert)
|
|||
gst_line_cache_free (convert->to_YUV_lines);
|
||||
if (convert->downsample_lines)
|
||||
gst_line_cache_free (convert->downsample_lines);
|
||||
if (convert->dither_lines)
|
||||
gst_line_cache_free (convert->dither_lines);
|
||||
|
||||
if (convert->dither)
|
||||
gst_video_dither_free (convert->dither);
|
||||
|
|
Loading…
Reference in a new issue