rtph264pay: Fixes buffer leak when using SPS/PPS

Fixes a buffer leak that would occurr if the pipeline was shutdown
while a SPS/PPS header was being created.

https://bugzilla.gnome.org/show_bug.cgi?id=741271
This commit is contained in:
Patrick Radizi 2014-12-08 21:26:18 +01:00 committed by Sebastian Dröge
parent a5694b213a
commit fef1a8d88a

View file

@ -835,9 +835,11 @@ gst_rtp_h264_pay_payload_nal (GstRTPBasePayload * basepayload,
* checking when we need to send SPS/PPS but convert to running_time first. */ * checking when we need to send SPS/PPS but convert to running_time first. */
rtph264pay->send_spspps = FALSE; rtph264pay->send_spspps = FALSE;
ret = gst_rtp_h264_pay_send_sps_pps (basepayload, rtph264pay, dts, pts); ret = gst_rtp_h264_pay_send_sps_pps (basepayload, rtph264pay, dts, pts);
if (ret != GST_FLOW_OK) if (ret != GST_FLOW_OK) {
gst_buffer_unref (paybuf);
return ret; return ret;
} }
}
packet_len = gst_rtp_buffer_calc_packet_len (size, 0, 0); packet_len = gst_rtp_buffer_calc_packet_len (size, 0, 0);