You are on page 1of 2

Imp Sites

http://niviuk.free.fr/lte_band.php [to check lte frequency]


http://rfmw.org/wireless_communication_systems_link_equation_and_link_budget_link_budg
et_calculators.html#!
http://www.artizanetworks.com/lte_tut_rrc_pro.html
http://niviuk.free.fr/lte_event.php
http://www.wireshark.org/lists/wireshark-users/200911/msg00126.html
ithout reading the source code, it looks to me to be pretty
much a sum of the size (in kilobits) of the previous 1 seconds worth of
RTP packets in that direction on that stream. (I *think* it is just the
IP size (header + payload) but not the layer 2 frame. So effective it
shows a moving average bit rate over a one second window. You can tell
it is done this way as see the IP BW "ramp up" at the beginning of each
session. (Of course you should read the code to confirm this exactly).
/* Calculate the BW in Kbps adding the IP+UDP header to the RTP
-> 20bytes(IP)+8bytes(UDP) = 28bytes */
statinfo->bw_history[statinfo->bw_index].bytes =
rtpinfo->info_data_len + 28;
statinfo->bw_history[statinfo->bw_index].time = current_time;

/* Check if there are more than 1sec in the history buffer to


calculate BW in bps. If so, remove those for the calculation */
while
((statinfo->bw_history[statinfo->bw_start_index].time+1000/* ms
*/)<current_time){
statinfo->total_bytes -=
statinfo->bw_history[statinfo->bw_start_index].bytes;
statinfo->bw_start_index++;
if (statinfo->bw_start_index == BUFF_BW)

statinfo->bw_start_index=0;
};
statinfo->total_bytes += rtpinfo->info_data_len + 28;
statinfo->bandwidth = (double)(statinfo->total_bytes*8)/1000;
statinfo->bw_index++;
if (statinfo->bw_index == BUFF_BW) statinfo->bw_index = 0;

Lars

How bandwidth (BW) is calculated


The BW column in RTP Streams and RTP Statistics dialogs shows the bandwidth at IP level for the
given RTP stream. It is the sum of all octets, including IP and UDP headers (20+8 bytes), from all the
packets of the given RTP stream over the last second.

http://4g-lte-world.blogspot.in/2013/01/quality-of-service-qos-in-lte.html

http://www.gsacom.com/gsm_3g/info_papers.php4

You might also like