aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/Makefile.common
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-04-24 19:10:36 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-04-24 19:10:36 +0000
commit6b33d50f9054c02be28a846190d279b0a101f744 (patch)
tree2463fd66c1668bd359aca93a73e2cbaf51e36d0a /gtk/Makefile.common
parentde3b8195c53392f0158951540054e47cc832ee89 (diff)
From Miha Jemec:
With the new feature we can: 1. Measure how big the bursts are for a video streams (it uses sliding window algorithm) 2. Measure how big the output buffer should be that no packet drop will occur (it uses Leaky bucket algorithm) 3. Detect if we have loses inside the MPEG2 video stream (if there are already MPEG2 packets missing) - this part of code is not added yet, see Limitations The addition is called Multicast streams and works as follows: - it uses the TAP system - the main "stream" logic is taken from rtp_strems.* files - the TAP system checks for UDP packets where the destination MAC address starts with "01:00:5E" (ethernet multicast address) - it creates an entry for every new multicast stream - based on sliding window and leaky bucket algorithm it calculates for every stream average BW, max BW, burst size, max buffer needed, some alarms if the limits are exceeded,... - the same calculation is done for all streams together - inside the window dialog you can specify the burst interval, the alarm limits and output speeds To do & limitations: - Currently the analysis can be done only for multicast streams, it means that VoD (Video on demand) or PayTV streams, which are normally unicast can not be analysed. - since the MPEG2 is patended I don't know if decoding of MPEG2 packets is allowed? Can we look inside this packets and calculate packets drops based on some counter information inside the payload? Can someone please answer this question? If we can do this, I will post this part of code too. - some more flexibility will be added svn path=/trunk/; revision=17980
Diffstat (limited to 'gtk/Makefile.common')
-rw-r--r--gtk/Makefile.common2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/Makefile.common b/gtk/Makefile.common
index 2279a33503..59a58009e6 100644
--- a/gtk/Makefile.common
+++ b/gtk/Makefile.common
@@ -89,6 +89,7 @@ ETHEREAL_GTK_SRC = \
range_utils.c \
recent.c \
rtp_stream.c \
+ mcast_stream.c \
sctp_stat.c \
sctp_graph_dlg.c \
sctp_byte_graph_dlg.c \
@@ -157,6 +158,7 @@ ETHEREAL_TAP_SRC = \
rpc_stat.c \
rtp_analysis.c \
rtp_stream_dlg.c \
+ mcast_stream_dlg.c \
stats_tree_stat.c \
sctp_assoc_analyse.c \
sctp_chunk_stat_dlg.c \