mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
v4l2codecs: h264: Fix a memory leak on renegotiation
We only use this anchor when streaming, in which case output_state is set and needs to get unreffed. This is in line with how it is handled for all other codecs. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/6134>
This commit is contained in:
parent
44faeb532d
commit
2f1b123f7f
1 changed files with 1 additions and 1 deletions
|
@ -367,10 +367,10 @@ gst_v4l2_codec_h264_dec_negotiate (GstVideoDecoder * decoder)
|
||||||
}
|
}
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
|
|
||||||
|
done:
|
||||||
if (self->output_state)
|
if (self->output_state)
|
||||||
gst_video_codec_state_unref (self->output_state);
|
gst_video_codec_state_unref (self->output_state);
|
||||||
|
|
||||||
done:
|
|
||||||
self->output_state =
|
self->output_state =
|
||||||
gst_video_decoder_set_output_state (GST_VIDEO_DECODER (self),
|
gst_video_decoder_set_output_state (GST_VIDEO_DECODER (self),
|
||||||
self->vinfo.finfo->format, self->display_width,
|
self->vinfo.finfo->format, self->display_width,
|
||||||
|
|
Loading…
Reference in a new issue