c0d3a5129ecd3feb1330b9577a6e1f29d04b85e6
[platform/upstream/gst-plugins-good.git] / gst / rtpmanager / rtpstats.h
1 /* GStreamer
2  * Copyright (C) <2007> Wim Taymans <wim.taymans@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __RTP_STATS_H__
21 #define __RTP_STATS_H__
22
23 #include <gst/gst.h>
24 #include <gst/netbuffer/gstnetbuffer.h>
25
26 /**
27  * RTPSenderReport:
28  *
29  * A sender report structure.
30  */
31 typedef struct {
32   gboolean is_valid;
33   guint64 ntptime;
34   guint32 rtptime;
35   guint32 packet_count;
36   guint32 octet_count;
37   GstClockTime time;
38 } RTPSenderReport;
39
40 /**
41  * RTPReceiverReport:
42  *
43  * A receiver report structure.
44  */
45 typedef struct {
46   gboolean is_valid;
47   guint32 ssrc; /* who the report is from */
48   guint8  fractionlost;
49   guint32 packetslost;
50   guint32 exthighestseq;
51   guint32 jitter;
52   guint32 lsr;
53   guint32 dlsr;
54   guint32 round_trip;
55 } RTPReceiverReport;
56
57 /**
58  * RTPArrivalStats:
59  * @time: arrival time of a packet
60  * @address: address of the sender of the packet
61  * @bytes: bytes of the packet including lowlevel overhead
62  * @payload_len: bytes of the RTP payload
63  *
64  * Structure holding information about the arrival stats of a packet.
65  */
66 typedef struct {
67   GstClockTime  time;
68   guint64       ntpnstime;
69   gboolean      have_address;
70   GstNetAddress address;
71   guint         bytes;
72   guint         payload_len;
73 } RTPArrivalStats;
74
75 /**
76  * RTPSourceStats:
77  * @packetsreceived: number of received packets in total
78  * @prevpacketsreceived: number of packets received in previous reporting
79  *                       interval
80  * @octetsreceived: number of payload bytes received
81  * @bytesreceived: number of total bytes received including headers and lower
82  *                 protocol level overhead
83  * @max_seqnr: highest sequence number received
84  * @transit: previous transit time used for calculating @jitter
85  * @jitter: current jitter
86  * @prev_rtptime: previous time when an RTP packet was received
87  * @prev_rtcptime: previous time when an RTCP packet was received
88  * @last_rtptime: time when last RTP packet received
89  * @last_rtcptime: time when last RTCP packet received
90  * @curr_rr: index of current @rr block
91  * @rr: previous and current receiver report block
92  * @curr_sr: index of current @sr block
93  * @sr: previous and current sender report block
94  *
95  * Stats about a source.
96  */
97 typedef struct {
98   guint64      packets_received;
99   guint64      octets_received;
100   guint64      bytes_received;
101
102   guint32      prev_expected;
103   guint32      prev_received;
104
105   guint16      max_seq;
106   guint64      cycles;
107   guint32      base_seq;
108   guint32      bad_seq;
109   guint32      transit;
110   guint32      jitter;
111
112   guint64      packets_sent;
113   guint64      octets_sent;
114
115   /* when we received stuff */
116   GstClockTime prev_rtptime;
117   GstClockTime prev_rtcptime;
118   GstClockTime last_rtptime;
119   GstClockTime last_rtcptime;
120
121   /* sender and receiver reports */
122   gint              curr_rr;
123   RTPReceiverReport rr[2];
124   gint              curr_sr;
125   RTPSenderReport   sr[2];
126 } RTPSourceStats;
127
128 #define RTP_STATS_BANDWIDTH           64000.0
129 #define RTP_STATS_RTCP_BANDWIDTH      3000.0
130 /*
131  * Minimum average time between RTCP packets from this site (in
132  * seconds).  This time prevents the reports from `clumping' when
133  * sessions are small and the law of large numbers isn't helping
134  * to smooth out the traffic.  It also keeps the report interval
135  * from becoming ridiculously small during transient outages like
136  * a network partition.
137  */
138 #define RTP_STATS_MIN_INTERVAL      5.0
139 /*
140  * Fraction of the RTCP bandwidth to be shared among active
141  * senders.  (This fraction was chosen so that in a typical
142  * session with one or two active senders, the computed report
143  * time would be roughly equal to the minimum report time so that
144  * we don't unnecessarily slow down receiver reports.) The
145  * receiver fraction must be 1 - the sender fraction.
146  */
147 #define RTP_STATS_SENDER_FRACTION       (0.25)
148 #define RTP_STATS_RECEIVER_FRACTION     (1.0 - RTP_STATS_SENDER_FRACTION)
149
150 /*
151  * When receiving a BYE from a source, remove the source fomr the database
152  * after this timeout.
153  */
154 #define RTP_STATS_BYE_TIMEOUT           (2 * GST_SECOND)
155
156 /**
157  * RTPSessionStats:
158  *
159  * Stats kept for a session and used to produce RTCP packet timeouts.
160  */
161 typedef struct {
162   gdouble       bandwidth;
163   gdouble       sender_fraction;
164   gdouble       receiver_fraction;
165   gdouble       rtcp_bandwidth;
166   gdouble       min_interval;
167   GstClockTime  bye_timeout;
168   guint         sender_sources;
169   guint         active_sources;
170   guint         avg_rtcp_packet_size;
171   guint         bye_members;
172 } RTPSessionStats;
173
174 void           rtp_stats_init_defaults               (RTPSessionStats *stats);
175
176 GstClockTime   rtp_stats_calculate_rtcp_interval    (RTPSessionStats *stats, gboolean sender, gboolean first);
177 GstClockTime   rtp_stats_add_rtcp_jitter            (RTPSessionStats *stats, GstClockTime interval);
178 GstClockTime   rtp_stats_calculate_bye_interval     (RTPSessionStats *stats);
179
180 #endif /* __RTP_STATS_H__ */