From: Youness Alaoui Date: Fri, 26 Jul 2013 00:54:50 +0000 (-0400) Subject: rtpgstpay: Add a create_from_adapter API and use a list of GstBufferList X-Git-Tag: 1.1.4~48 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d53289b6b1372e641a0ddf0b540a2819539cc26;p=platform%2Fupstream%2Fgst-plugins-good.git rtpgstpay: Add a create_from_adapter API and use a list of GstBufferList This is necessary to fix event/caps sending. If we send a STREAM_START packet, it will cause an error because the stream didn't receive its caps and new-segment events, so we must wait for the first buffer before sending the stream-start event buffer. However, the caps will be sent at the same time and so the 'inline caps' will be set for the event. We need to be able to payload individual packets (data, caps or events) and only send them when we call flush. --- diff --git a/gst/rtp/gstrtpgstpay.c b/gst/rtp/gstrtpgstpay.c index e6e4634..a6c6c41 100644 --- a/gst/rtp/gstrtpgstpay.c +++ b/gst/rtp/gstrtpgstpay.c @@ -120,6 +120,7 @@ static void gst_rtp_gst_pay_init (GstRtpGSTPay * rtpgstpay) { rtpgstpay->adapter = gst_adapter_new (); + rtpgstpay->pending_buffers = NULL; gst_rtp_base_payload_set_options (GST_RTP_BASE_PAYLOAD (rtpgstpay), "application", TRUE, "X-GST", 90000); } @@ -132,24 +133,28 @@ gst_rtp_gst_pay_finalize (GObject * obj) rtpgstpay = GST_RTP_GST_PAY (obj); g_object_unref (rtpgstpay->adapter); + if (rtpgstpay->pending_buffers) + g_list_free_full (rtpgstpay->pending_buffers, + (GDestroyNotify) gst_buffer_list_unref); + rtpgstpay->pending_buffers = NULL; G_OBJECT_CLASS (parent_class)->finalize (obj); } -static GstFlowReturn -gst_rtp_gst_pay_flush (GstRtpGSTPay * rtpgstpay, GstClockTime timestamp) +static gboolean +gst_rtp_gst_pay_create_from_adapter (GstRtpGSTPay * rtpgstpay, + GstClockTime timestamp) { - GstFlowReturn ret; guint avail; guint frag_offset; GstBufferList *list; - frag_offset = 0; avail = gst_adapter_available (rtpgstpay->adapter); if (avail == 0) - return GST_FLOW_OK; + return FALSE; list = gst_buffer_list_new (); + frag_offset = 0; while (avail) { guint towrite; @@ -219,11 +224,34 @@ gst_rtp_gst_pay_flush (GstRtpGSTPay * rtpgstpay, GstClockTime timestamp) /* and add to list */ gst_buffer_list_insert (list, -1, outbuf); } - /* push the whole buffer list at once */ - ret = gst_rtp_base_payload_push_list (GST_RTP_BASE_PAYLOAD (rtpgstpay), list); rtpgstpay->flags &= 0x70; rtpgstpay->etype = 0; + rtpgstpay->pending_buffers = g_list_append (rtpgstpay->pending_buffers, list); + + return TRUE; +} + +static GstFlowReturn +gst_rtp_gst_pay_flush (GstRtpGSTPay * rtpgstpay, GstClockTime timestamp) +{ + GstFlowReturn ret = GST_FLOW_OK; + GList *iter, *next; + + gst_rtp_gst_pay_create_from_adapter (rtpgstpay, timestamp); + for (iter = rtpgstpay->pending_buffers; iter; iter = next) { + GstBufferList *list = iter->data; + + next = iter->next; + rtpgstpay->pending_buffers = g_list_remove_link (rtpgstpay->pending_buffers, + iter); + + /* push the whole buffer list at once */ + ret = gst_rtp_base_payload_push_list (GST_RTP_BASE_PAYLOAD (rtpgstpay), + list); + if (ret != GST_FLOW_OK) + break; + } return ret; } diff --git a/gst/rtp/gstrtpgstpay.h b/gst/rtp/gstrtpgstpay.h index bb50085..2e6db00 100644 --- a/gst/rtp/gstrtpgstpay.h +++ b/gst/rtp/gstrtpgstpay.h @@ -44,6 +44,7 @@ struct _GstRtpGSTPay { GstRTPBasePayload payload; + GList *pending_buffers; // GstBufferList GstAdapter *adapter; guint8 flags; guint8 etype;