rtph264pay: If the adapter is empty on EOS don't try to map its content

https://bugzilla.gnome.org/show_bug.cgi?id=699314
This commit is contained in:
Sebastian Dröge 2013-05-01 15:49:45 +02:00
parent 0584d5c4c9
commit ae05ed4f05

View file

@ -1073,6 +1073,9 @@ gst_rtp_h264_pay_handle_buffer (GstRTPBasePayload * basepayload,
gst_adapter_push (rtph264pay->adapter, buffer);
}
size = gst_adapter_available (rtph264pay->adapter);
/* Nothing to do here if the adapter is empty, e.g. on EOS */
if (size == 0)
return GST_FLOW_OK;
data = gst_adapter_map (rtph264pay->adapter, size);
GST_DEBUG_OBJECT (basepayload,
"got %" G_GSIZE_FORMAT " bytes (%" G_GSIZE_FORMAT ")", size,