mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
videoaggregator: Don't leak string
The result of gst_video_colorimetry_to_string () needs to be free'd
This commit is contained in:
parent
c27bb822a8
commit
f0ba09d10e
1 changed files with 4 additions and 2 deletions
|
@ -618,6 +618,7 @@ gst_video_aggregator_default_update_caps (GstVideoAggregator * vagg,
|
|||
gboolean at_least_one_alpha = FALSE;
|
||||
GstVideoFormat best_format;
|
||||
GstVideoInfo best_info;
|
||||
gchar *color_name;
|
||||
|
||||
best_format = GST_VIDEO_FORMAT_UNKNOWN;
|
||||
gst_video_info_init (&best_info);
|
||||
|
@ -641,11 +642,12 @@ gst_video_aggregator_default_update_caps (GstVideoAggregator * vagg,
|
|||
gst_video_colorimetry_to_string (&best_info.colorimetry));
|
||||
|
||||
best_format_caps = gst_caps_copy (caps);
|
||||
color_name = gst_video_colorimetry_to_string (&best_info.colorimetry);
|
||||
gst_caps_set_simple (best_format_caps, "format", G_TYPE_STRING,
|
||||
gst_video_format_to_string (best_format), "chroma-site", G_TYPE_STRING,
|
||||
gst_video_chroma_to_string (best_info.chroma_site), "colorimetry",
|
||||
G_TYPE_STRING, gst_video_colorimetry_to_string (&best_info.colorimetry),
|
||||
NULL);
|
||||
G_TYPE_STRING, color_name, NULL);
|
||||
g_free (color_name);
|
||||
ret = gst_caps_merge (best_format_caps, gst_caps_ref (caps));
|
||||
|
||||
return ret;
|
||||
|
|
Loading…
Reference in a new issue