mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/rtp/gstrtph264depay.c: Fix small leak. Fixes #497017.
Original commit message from CVS: Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com> * gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps): Fix small leak. Fixes #497017.
This commit is contained in:
parent
a4540bca1e
commit
b026306147
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2007-11-15 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
|
||||
|
||||
* gst/rtp/gstrtph264depay.c: (gst_rtp_h264_depay_setcaps):
|
||||
Fix small leak. Fixes #497017.
|
||||
|
||||
2007-11-15 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
|
||||
|
|
|
@ -257,6 +257,7 @@ gst_rtp_h264_depay_setcaps (GstBaseRTPDepayload * depayload, GstCaps * caps)
|
|||
b64 += len;
|
||||
}
|
||||
GST_BUFFER_SIZE (codec_data) = total;
|
||||
g_strfreev (params);
|
||||
|
||||
/* keep the codec_data, we need to send it as the first buffer. We cannot
|
||||
* push it in the adapter because the adapter might be flushed on discont.
|
||||
|
|
Loading…
Reference in a new issue