interval.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hlxclib/stdlib.h"
  36. #include "interval.h"
  37. /*
  38. * Minimum average time between RTCP packets from this site (in
  39. * seconds).  This time prevents the reports from `clumping' when
  40. * sessions are small and the law of large numbers isn't helping
  41. * to smooth out the traffic.  It also keeps the report interval
  42. * from becoming ridiculously small during transient outages like
  43. * a network partition.
  44. */
  45. double const RTCP_MIN_TIME = 5.0;
  46. /*
  47. * Fraction of the RTCP bandwidth to be shared among active
  48. * senders.  (This fraction was chosen so that in a typical
  49. * session with one or two active senders, the computed report
  50. * time would be roughly equal to the minimum report time so that
  51. * we don't unnecessarily slow down receiver reports.) The
  52. * receiver fraction must be 1 - the sender fraction.
  53. */
  54. double const RTCP_SENDER_BW_FRACTION = 0.25;
  55. double const RTCP_RCVR_BW_FRACTION = (1-RTCP_SENDER_BW_FRACTION);
  56. /* To compensate for "unconditional reconsideration" converging to a
  57. * value below the intended average.
  58. */
  59. double const COMPENSATION = 2.71828 - 1.5;
  60. double rtcp_interval(INT32 members,
  61.                      INT32 senders,
  62.                      double rs_byterate,
  63.      double rr_byterate,
  64.                      BOOL we_sent,
  65.                      double avg_rtcp_size,
  66.                      BOOL initial,
  67.      double rtcp_min_time)
  68. {
  69.     double rtcp_byterate = rr_byterate + rs_byterate;
  70.     double t;                   /* interval */
  71.     INT32 n = members;          /* no. of members for computation */
  72.     /*
  73.     * Very first call at application start-up uses half the min
  74.     * delay for quicker notification while still allowing some time
  75.     * before reporting for randomization and to learn about other
  76.     * sources so the report interval will converge to the correct
  77.     * interval more quickly.
  78.     */
  79.     if (initial) 
  80.     {
  81. rtcp_min_time /= 2;
  82.     }
  83.     /*
  84.     * If there were active senders, give them at least a minimum
  85.     * share of the RTCP bandwidth.  Otherwise all participants share
  86.     * the RTCP bandwidth equally.
  87.     */
  88.     if (senders > 0 && senders < members * RTCP_SENDER_BW_FRACTION) 
  89.     {
  90. if (we_sent) 
  91. {
  92.     rtcp_byterate = rs_byterate;
  93.     n = senders;
  94. else 
  95. {
  96.     rtcp_byterate = rr_byterate;
  97.     n -= senders;
  98. }
  99.     }
  100.     /*
  101.     * The effective number of sites times the average packet size is
  102.     * the total number of octets sent when each site sends a report.
  103.     * Dividing this by the effective bandwidth gives the time
  104.     * interval over which those packets must be sent in order to
  105.     * meet the bandwidth target, with a minimum enforced.  In that
  106.     * time interval we send one report so this time is also our
  107.     * average time between reports.
  108.     */
  109.     t = avg_rtcp_size * n / rtcp_byterate;
  110.     if (t < rtcp_min_time) 
  111.     {
  112. t = rtcp_min_time;
  113.     }
  114.     /*
  115.     * To avoid traffic bursts from unintended synchronization with
  116.     * other sites, we then pick our actual next report interval as a
  117.     * random number uniformly distributed between 0.5*t and 1.5*t.
  118.     */
  119.     t = t * (((double)rand() / (double)RAND_MAX) + 0.5);
  120.     t = t / COMPENSATION;
  121.     return t;
  122. }