session: store more in the PacketInfo structure

This commit is contained in:
Wim Taymans 2013-09-13 11:32:52 +02:00
parent 47662f9ca4
commit e5c789abd6
2 changed files with 59 additions and 28 deletions

View file

@ -1550,6 +1550,36 @@ rtp_session_create_source (RTPSession * sess)
return source; return source;
} }
static gboolean
update_packet (GstBuffer ** buffer, guint idx, RTPPacketInfo * pinfo)
{
GstNetAddressMeta *meta;
/* get packet size including header overhead */
pinfo->bytes += gst_buffer_get_size (*buffer) + pinfo->header_len;
if (pinfo->rtp) {
GstRTPBuffer rtpb = { NULL };
gst_rtp_buffer_map (*buffer, GST_MAP_READ, &rtpb);
pinfo->payload_len += gst_rtp_buffer_get_payload_len (&rtpb);
gst_rtp_buffer_unmap (&rtpb);
}
if (idx == 0) {
/* for netbuffer we can store the IP address to check for collisions */
meta = gst_buffer_get_net_address_meta (*buffer);
if (pinfo->address)
g_object_unref (pinfo->address);
if (meta) {
pinfo->address = G_SOCKET_ADDRESS (g_object_ref (meta->addr));
} else {
pinfo->address = NULL;
}
}
return TRUE;
}
/* update the RTPPacketInfo structure with the current time and other bits /* update the RTPPacketInfo structure with the current time and other bits
* about the current buffer we are handling. * about the current buffer we are handling.
* This function is typically called when a validated packet is received. * This function is typically called when a validated packet is received.
@ -1557,36 +1587,26 @@ rtp_session_create_source (RTPSession * sess)
*/ */
static void static void
update_packet_info (RTPSession * sess, RTPPacketInfo * pinfo, update_packet_info (RTPSession * sess, RTPPacketInfo * pinfo,
gboolean rtp, GstBuffer * buffer, GstClockTime current_time, gboolean send, gboolean rtp, gboolean is_list, gpointer data,
GstClockTime running_time, guint64 ntpnstime) GstClockTime current_time, GstClockTime running_time, guint64 ntpnstime)
{ {
GstNetAddressMeta *meta; pinfo->send = send;
GstRTPBuffer rtpb = { NULL }; pinfo->rtp = rtp;
pinfo->is_list = is_list;
/* get time of pinfo */ pinfo->data = data;
pinfo->current_time = current_time; pinfo->current_time = current_time;
pinfo->running_time = running_time; pinfo->running_time = running_time;
pinfo->ntpnstime = ntpnstime; pinfo->ntpnstime = ntpnstime;
pinfo->header_len = sess->header_len;
pinfo->bytes = 0;
pinfo->payload_len = 0;
/* get packet size including header overhead */ if (is_list) {
pinfo->bytes = gst_buffer_get_size (buffer) + sess->header_len; GstBufferList *list = GST_BUFFER_LIST_CAST (data);
gst_buffer_list_foreach (list, (GstBufferListFunc) update_packet, pinfo);
if (rtp) {
gst_rtp_buffer_map (buffer, GST_MAP_READ, &rtpb);
pinfo->payload_len = gst_rtp_buffer_get_payload_len (&rtpb);
gst_rtp_buffer_unmap (&rtpb);
} else { } else {
pinfo->payload_len = 0; GstBuffer *buffer = GST_BUFFER_CAST (data);
} update_packet (&buffer, 0, pinfo);
/* for netbuffer we can store the IP address to check for collisions */
meta = gst_buffer_get_net_address_meta (buffer);
if (pinfo->address)
g_object_unref (pinfo->address);
if (meta) {
pinfo->address = G_SOCKET_ADDRESS (g_object_ref (meta->addr));
} else {
pinfo->address = NULL;
} }
} }
@ -1666,7 +1686,7 @@ rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
RTPSource *source; RTPSource *source;
gboolean created; gboolean created;
gboolean prevsender, prevactive; gboolean prevsender, prevactive;
RTPPacketInfo pinfo = { NULL, }; RTPPacketInfo pinfo = { 0, };
guint32 csrcs[16]; guint32 csrcs[16];
guint8 i, count; guint8 i, count;
guint64 oldrate; guint64 oldrate;
@ -1694,7 +1714,7 @@ rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
RTP_SESSION_LOCK (sess); RTP_SESSION_LOCK (sess);
/* update pinfo stats */ /* update pinfo stats */
update_packet_info (sess, &pinfo, TRUE, buffer, current_time, update_packet_info (sess, &pinfo, FALSE, TRUE, FALSE, buffer, current_time,
running_time, -1); running_time, -1);
source = obtain_source (sess, ssrc, &created, &pinfo, TRUE); source = obtain_source (sess, ssrc, &created, &pinfo, TRUE);
@ -2292,7 +2312,7 @@ rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
{ {
GstRTCPPacket packet; GstRTCPPacket packet;
gboolean more, is_bye = FALSE, do_sync = FALSE; gboolean more, is_bye = FALSE, do_sync = FALSE;
RTPPacketInfo pinfo = { NULL, }; RTPPacketInfo pinfo = { 0, };
GstFlowReturn result = GST_FLOW_OK; GstFlowReturn result = GST_FLOW_OK;
GstRTCPBuffer rtcp = { NULL, }; GstRTCPBuffer rtcp = { NULL, };
@ -2306,7 +2326,8 @@ rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
RTP_SESSION_LOCK (sess); RTP_SESSION_LOCK (sess);
/* update pinfo stats */ /* update pinfo stats */
update_packet_info (sess, &pinfo, FALSE, buffer, current_time, -1, ntpnstime); update_packet_info (sess, &pinfo, FALSE, FALSE, FALSE, buffer, current_time,
-1, ntpnstime);
/* start processing the compound packet */ /* start processing the compound packet */
gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp); gst_rtcp_buffer_map (buffer, GST_MAP_READ, &rtcp);

View file

@ -57,20 +57,30 @@ typedef struct {
/** /**
* RTPPacketInfo: * RTPPacketInfo:
* @send: if this is a packet for sending
* @rtp: if this info is about an RTP packet
* @is_list: if this is a bufferlist
* @data: a #GstBuffer or #GstBufferList
* @address: address of the sender of the packet * @address: address of the sender of the packet
* @current_time: current time according to the system clock * @current_time: current time according to the system clock
* @running_time: time of a packet as buffer running_time * @running_time: time of a packet as buffer running_time
* @ntpnstime: time of a packet NTP time in nanoseconds * @ntpnstime: time of a packet NTP time in nanoseconds
* @header_len: number of overhead bytes per packet
* @bytes: bytes of the packet including lowlevel overhead * @bytes: bytes of the packet including lowlevel overhead
* @payload_len: bytes of the RTP payload * @payload_len: bytes of the RTP payload
* *
* Structure holding information about the packet. * Structure holding information about the packet.
*/ */
typedef struct { typedef struct {
gboolean send;
gboolean rtp;
gboolean is_list;
gpointer data;
GSocketAddress *address; GSocketAddress *address;
GstClockTime current_time; GstClockTime current_time;
GstClockTime running_time; GstClockTime running_time;
guint64 ntpnstime; guint64 ntpnstime;
guint header_len;
guint bytes; guint bytes;
guint payload_len; guint payload_len;
} RTPPacketInfo; } RTPPacketInfo;