diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2018-01-26 16:33:21 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2018-02-16 11:06:27 +0200 |
commit | 7512120e5dff34a80c90989d51cb0ab8aff5576b (patch) | |
tree | e6ef235b09ee6a63e4bb929d3ccfa587721dba56 | |
parent | befa41cdf68ba5cde2ce7434c9d01260f998c348 (diff) |
rtspsrc: Implement ONVIF backchannel support via TCP
-rw-r--r-- | gst/rtsp/gstrtspsrc.c | 45 |
1 files changed, 42 insertions, 3 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index e424f4702..646251045 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -2851,9 +2851,48 @@ gst_rtspsrc_push_backchannel_buffer (GstRTSPSrc * src, guint id, goto out; } - g_signal_emit_by_name (stream->rtpsrc, "push-sample", sample, &res); - GST_DEBUG_OBJECT (src, "sent backchannel RTP sample %p: %s", sample, - gst_flow_get_name (res)); + if (src->interleaved) { + GstBuffer *buffer; + GstMapInfo map; + guint8 *data; + guint size; + GstRTSPResult ret; + GstRTSPMessage message = { 0 }; + GstRTSPConnInfo *conninfo; + + buffer = gst_sample_get_buffer (sample); + + gst_buffer_map (buffer, &map, GST_MAP_READ); + size = map.size; + data = map.data; + + gst_rtsp_message_init_data (&message, stream->channel[0]); + + /* lend the body data to the message */ + gst_rtsp_message_take_body (&message, data, size); + + if (stream->conninfo.connection) + conninfo = &stream->conninfo; + else + conninfo = &src->conninfo; + + GST_DEBUG_OBJECT (src, "sending %u bytes backchannel RTP", size); + ret = gst_rtspsrc_connection_send (src, conninfo, &message, NULL); + GST_DEBUG_OBJECT (src, "sent backchannel RTP, %d", ret); + + /* and steal it away again because we will free it when unreffing the + * buffer */ + gst_rtsp_message_steal_body (&message, &data, &size); + gst_rtsp_message_unset (&message); + + gst_buffer_unmap (buffer, &map); + + res = GST_FLOW_OK; + } else { + g_signal_emit_by_name (stream->rtpsrc, "push-sample", sample, &res); + GST_DEBUG_OBJECT (src, "sent backchannel RTP sample %p: %s", sample, + gst_flow_get_name (res)); + } out: gst_sample_unref (sample); |