mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
rtp: rtpbasedepayload: add process_rtp_packet() vfunc
Add process_rtp_packet() vfunc that works just like the existing process() vfunc only that it takes the GstRTPBuffer that the base class has already mapped (with MAP_READ), which means that the subclass doesn't have to map it again, which allows more performant processing of input buffers for most RTP depayloaders. https://bugzilla.gnome.org/show_bug.cgi?id=750235
This commit is contained in:
parent
f99a24f8b3
commit
bc14cdf529
2 changed files with 31 additions and 6 deletions
|
@ -349,6 +349,9 @@ static GstFlowReturn
|
||||||
gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
|
gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
|
||||||
GstRTPBaseDepayloadClass * bclass, GstBuffer * in)
|
GstRTPBaseDepayloadClass * bclass, GstBuffer * in)
|
||||||
{
|
{
|
||||||
|
GstBuffer *(*process_rtp_packet_func) (GstRTPBaseDepayload * base,
|
||||||
|
GstRTPBuffer * rtp_buffer);
|
||||||
|
GstBuffer *(*process_func) (GstRTPBaseDepayload * base, GstBuffer * in);
|
||||||
GstRTPBaseDepayloadPrivate *priv;
|
GstRTPBaseDepayloadPrivate *priv;
|
||||||
GstFlowReturn ret = GST_FLOW_OK;
|
GstFlowReturn ret = GST_FLOW_OK;
|
||||||
GstBuffer *out_buf;
|
GstBuffer *out_buf;
|
||||||
|
@ -361,6 +364,9 @@ gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
|
||||||
|
|
||||||
priv = filter->priv;
|
priv = filter->priv;
|
||||||
|
|
||||||
|
process_func = bclass->process;
|
||||||
|
process_rtp_packet_func = bclass->process_rtp_packet;
|
||||||
|
|
||||||
/* we must have a setcaps first */
|
/* we must have a setcaps first */
|
||||||
if (G_UNLIKELY (!priv->negotiated))
|
if (G_UNLIKELY (!priv->negotiated))
|
||||||
goto not_negotiated;
|
goto not_negotiated;
|
||||||
|
@ -382,7 +388,6 @@ gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
|
||||||
|
|
||||||
seqnum = gst_rtp_buffer_get_seq (&rtp);
|
seqnum = gst_rtp_buffer_get_seq (&rtp);
|
||||||
rtptime = gst_rtp_buffer_get_timestamp (&rtp);
|
rtptime = gst_rtp_buffer_get_timestamp (&rtp);
|
||||||
gst_rtp_buffer_unmap (&rtp);
|
|
||||||
|
|
||||||
priv->last_seqnum = seqnum;
|
priv->last_seqnum = seqnum;
|
||||||
priv->last_rtptime = rtptime;
|
priv->last_rtptime = rtptime;
|
||||||
|
@ -442,11 +447,17 @@ gst_rtp_base_depayload_handle_buffer (GstRTPBaseDepayload * filter,
|
||||||
filter->need_newsegment = FALSE;
|
filter->need_newsegment = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (G_UNLIKELY (bclass->process == NULL))
|
if (process_rtp_packet_func != NULL) {
|
||||||
|
out_buf = process_rtp_packet_func (filter, &rtp);
|
||||||
|
gst_rtp_buffer_unmap (&rtp);
|
||||||
|
} else if (process_func != NULL) {
|
||||||
|
gst_rtp_buffer_unmap (&rtp);
|
||||||
|
out_buf = process_func (filter, in);
|
||||||
|
} else {
|
||||||
goto no_process;
|
goto no_process;
|
||||||
|
}
|
||||||
|
|
||||||
/* let's send it out to processing */
|
/* let's send it out to processing */
|
||||||
out_buf = bclass->process (filter, in);
|
|
||||||
if (out_buf) {
|
if (out_buf) {
|
||||||
ret = gst_rtp_base_depayload_push (filter, out_buf);
|
ret = gst_rtp_base_depayload_push (filter, out_buf);
|
||||||
}
|
}
|
||||||
|
@ -483,7 +494,7 @@ no_process:
|
||||||
{
|
{
|
||||||
/* this is not fatal but should be filtered earlier */
|
/* this is not fatal but should be filtered earlier */
|
||||||
GST_ELEMENT_ERROR (filter, STREAM, NOT_IMPLEMENTED, (NULL),
|
GST_ELEMENT_ERROR (filter, STREAM, NOT_IMPLEMENTED, (NULL),
|
||||||
("The subclass does not have a process method"));
|
("The subclass does not have a process or process_rtp_packet method"));
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,7 +80,8 @@ struct _GstRTPBaseDepayloadClass
|
||||||
/* virtuals, inform the subclass of the caps. */
|
/* virtuals, inform the subclass of the caps. */
|
||||||
gboolean (*set_caps) (GstRTPBaseDepayload *filter, GstCaps *caps);
|
gboolean (*set_caps) (GstRTPBaseDepayload *filter, GstCaps *caps);
|
||||||
|
|
||||||
/* pure virtual function, child must use this to process incoming
|
/* pure virtual function, child must implement either this method
|
||||||
|
* or the process_rtp_packet virtual method to process incoming
|
||||||
* rtp packets. If the child returns a buffer without a valid timestamp,
|
* rtp packets. If the child returns a buffer without a valid timestamp,
|
||||||
* the timestamp of @in will be applied to the result buffer and the
|
* the timestamp of @in will be applied to the result buffer and the
|
||||||
* buffer will be pushed. If this function returns %NULL, nothing is
|
* buffer will be pushed. If this function returns %NULL, nothing is
|
||||||
|
@ -96,8 +97,21 @@ struct _GstRTPBaseDepayloadClass
|
||||||
* implementation can override. */
|
* implementation can override. */
|
||||||
gboolean (*handle_event) (GstRTPBaseDepayload * filter, GstEvent * event);
|
gboolean (*handle_event) (GstRTPBaseDepayload * filter, GstEvent * event);
|
||||||
|
|
||||||
|
/* Optional. Same as the process virtual function, but slightly more
|
||||||
|
* efficient, since it is passed the rtp buffer structure that has already
|
||||||
|
* been mapped (with GST_MAP_READ) by the base class and thus does not have
|
||||||
|
* to be mapped again by the subclass. Can be used by the subclass to process
|
||||||
|
* incoming rtp packets. If the subclass returns a buffer without a valid
|
||||||
|
* timestamp, the timestamp of the input buffer will be applied to the result
|
||||||
|
* buffer and the output buffer will be pushed out. If this function returns
|
||||||
|
* %NULL, nothing is pushed out.
|
||||||
|
*
|
||||||
|
* Since: 1.6
|
||||||
|
*/
|
||||||
|
GstBuffer * (*process_rtp_packet) (GstRTPBaseDepayload *base, GstRTPBuffer * rtp_buffer);
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer _gst_reserved[GST_PADDING];
|
gpointer _gst_reserved[GST_PADDING - 1];
|
||||||
};
|
};
|
||||||
|
|
||||||
GType gst_rtp_base_depayload_get_type (void);
|
GType gst_rtp_base_depayload_get_type (void);
|
||||||
|
|
Loading…
Reference in a new issue