rtpsession: Initialise the address pointer to NULL
authorOlivier Crête <olivier.crete@collabora.com>
Thu, 26 Jan 2012 17:35:27 +0000 (18:35 +0100)
committerOlivier Crête <olivier.crete@collabora.com>
Fri, 27 Jan 2012 18:05:23 +0000 (19:05 +0100)
gst/rtpmanager/rtpsession.c
gst/rtpmanager/rtpstats.h

index 74dac38..63e9189 100644 (file)
@@ -1691,7 +1691,7 @@ rtp_session_process_rtp (RTPSession * sess, GstBuffer * buffer,
   RTPSource *source;
   gboolean created;
   gboolean prevsender, prevactive;
-  RTPArrivalStats arrival;
+  RTPArrivalStats arrival = { NULL, };
   guint32 csrcs[16];
   guint8 i, count;
   guint64 oldrate;
@@ -2305,7 +2305,7 @@ rtp_session_process_rtcp (RTPSession * sess, GstBuffer * buffer,
 {
   GstRTCPPacket packet;
   gboolean more, is_bye = FALSE, do_sync = FALSE;
-  RTPArrivalStats arrival;
+  RTPArrivalStats arrival = { NULL, };
   GstFlowReturn result = GST_FLOW_OK;
   GstRTCPBuffer rtcp = { NULL, };
 
index d56b4ea..147ab1e 100644 (file)
@@ -57,21 +57,20 @@ typedef struct {
 
 /**
  * RTPArrivalStats:
+ * @address: address of the sender of the packet
  * @current_time: current time according to the system clock
  * @running_time: arrival time of a packet as buffer running_time
  * @ntpnstime: arrival time of a packet NTP time in nanoseconds
- * @have_address: if the @address field contains a valid address
- * @address: address of the sender of the packet
  * @bytes: bytes of the packet including lowlevel overhead
  * @payload_len: bytes of the RTP payload
  *
  * Structure holding information about the arrival stats of a packet.
  */
 typedef struct {
+  GSocketAddress *address;
   GstClockTime  current_time;
   GstClockTime  running_time;
   guint64       ntpnstime;
-  GSocketAddress *address;
   guint         bytes;
   guint         payload_len;
 } RTPArrivalStats;