clock.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * clock.c: Clock/System date convertions, stream management
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2008 the VideoLAN team
  5.  * Copyright (C) 2008 Laurent Aimar
  6.  * $Id: a26b9c4bb0b325a7eabe2914e02a5a7c187caaaf $
  7.  *
  8.  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  9.  *          Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. /*****************************************************************************
  26.  * Preamble
  27.  *****************************************************************************/
  28. #ifdef HAVE_CONFIG_H
  29. # include "config.h"
  30. #endif
  31. #include <vlc_common.h>
  32. #include <vlc_input.h>
  33. #include "clock.h"
  34. #include <assert.h>
  35. /* TODO:
  36.  * - clean up locking once clock code is stable
  37.  *
  38.  */
  39. /*
  40.  * DISCUSSION : SYNCHRONIZATION METHOD
  41.  *
  42.  * In some cases we can impose the pace of reading (when reading from a
  43.  * file or a pipe), and for the synchronization we simply sleep() until
  44.  * it is time to deliver the packet to the decoders. When reading from
  45.  * the network, we must be read at the same pace as the server writes,
  46.  * otherwise the kernel's buffer will trash packets. The risk is now to
  47.  * overflow the input buffers in case the server goes too fast, that is
  48.  * why we do these calculations :
  49.  *
  50.  * We compute a mean for the pcr because we want to eliminate the
  51.  * network jitter and keep the low frequency variations. The mean is
  52.  * in fact a low pass filter and the jitter is a high frequency signal
  53.  * that is why it is eliminated by the filter/average.
  54.  *
  55.  * The low frequency variations enable us to synchronize the client clock
  56.  * with the server clock because they represent the time variation between
  57.  * the 2 clocks. Those variations (ie the filtered pcr) are used to compute
  58.  * the presentation dates for the audio and video frames. With those dates
  59.  * we can decode (or trash) the MPEG2 stream at "exactly" the same rate
  60.  * as it is sent by the server and so we keep the synchronization between
  61.  * the server and the client.
  62.  *
  63.  * It is a very important matter if you want to avoid underflow or overflow
  64.  * in all the FIFOs, but it may be not enough.
  65.  */
  66. /* i_cr_average : Maximum number of samples used to compute the
  67.  * dynamic average value.
  68.  * We use the following formula :
  69.  * new_average = (old_average * c_average + new_sample_value) / (c_average +1)
  70.  */
  71. /*****************************************************************************
  72.  * Constants
  73.  *****************************************************************************/
  74. /* Maximum gap allowed between two CRs. */
  75. #define CR_MAX_GAP (INT64_C(2000000)*100/9)
  76. /* Latency introduced on DVDs with CR == 0 on chapter change - this is from
  77.  * my dice --Meuuh */
  78. #define CR_MEAN_PTS_GAP (300000)
  79. /* Rate (in 1/256) at which we will read faster to try to increase our
  80.  * internal buffer (if we control the pace of the source).
  81.  */
  82. #define CR_BUFFERING_RATE (48)
  83. /* Extra internal buffer value (in CLOCK_FREQ)
  84.  * It is 60s max, remember as it is limited by the size it takes by es_out.c
  85.  * it can be really large.
  86.  */
  87. //#define CR_BUFFERING_TARGET (60000000)
  88. /* Due to some problems in es_out, we cannot use a large value yet */
  89. #define CR_BUFFERING_TARGET (100000)
  90. /*****************************************************************************
  91.  * Structures
  92.  *****************************************************************************/
  93. /**
  94.  * This structure holds long term average
  95.  */
  96. typedef struct
  97. {
  98.     mtime_t i_value;
  99.     int     i_residue;
  100.     int     i_count;
  101.     int     i_divider;
  102. } average_t;
  103. static void    AvgInit( average_t *, int i_divider );
  104. static void    AvgClean( average_t * );
  105. static void    AvgReset( average_t * );
  106. static void    AvgUpdate( average_t *, mtime_t i_value );
  107. static mtime_t AvgGet( average_t * );
  108. static void    AvgRescale( average_t *, int i_divider );
  109. /* */
  110. typedef struct
  111. {
  112.     mtime_t i_stream;
  113.     mtime_t i_system;
  114. } clock_point_t;
  115. static inline clock_point_t clock_point_Create( mtime_t i_stream, mtime_t i_system )
  116. {
  117.     clock_point_t p = { .i_stream = i_stream, .i_system = i_system };
  118.     return p;
  119. }
  120. /* */
  121. #define INPUT_CLOCK_LATE_COUNT (3)
  122. /* */
  123. struct input_clock_t
  124. {
  125.     /* */
  126.     vlc_mutex_t lock;
  127.     /* Reference point */
  128.     bool          b_has_reference;
  129.     clock_point_t ref;
  130.     /* Last point
  131.      * It is used to detect unexpected stream discontinuities */
  132.     clock_point_t last;
  133.     /* Maximal timestamp returned by input_clock_ConvertTS (in system unit) */
  134.     mtime_t i_ts_max;
  135.     /* Amount of extra buffering expressed in stream clock */
  136.     mtime_t i_buffering_duration;
  137.     /* Clock drift */
  138.     mtime_t i_next_drift_update;
  139.     average_t drift;
  140.     /* Late statistics */
  141.     struct
  142.     {
  143.         mtime_t  pi_value[INPUT_CLOCK_LATE_COUNT];
  144.         unsigned i_index;
  145.     } late;
  146.     /* Current modifiers */
  147.     int     i_rate;
  148.     mtime_t i_pts_delay;
  149.     bool    b_paused;
  150.     mtime_t i_pause_date;
  151. };
  152. static mtime_t ClockStreamToSystem( input_clock_t *, mtime_t i_stream );
  153. static mtime_t ClockSystemToStream( input_clock_t *, mtime_t i_system );
  154. static mtime_t ClockGetTsOffset( input_clock_t * );
  155. /*****************************************************************************
  156.  * input_clock_New: create a new clock
  157.  *****************************************************************************/
  158. input_clock_t *input_clock_New( int i_rate )
  159. {
  160.     input_clock_t *cl = malloc( sizeof(*cl) );
  161.     if( !cl )
  162.         return NULL;
  163.     vlc_mutex_init( &cl->lock );
  164.     cl->b_has_reference = false;
  165.     cl->ref = clock_point_Create( VLC_TS_INVALID, VLC_TS_INVALID );
  166.     cl->last = clock_point_Create( VLC_TS_INVALID, VLC_TS_INVALID );
  167.     cl->i_ts_max = VLC_TS_INVALID;
  168.     cl->i_buffering_duration = 0;
  169.     cl->i_next_drift_update = VLC_TS_INVALID;
  170.     AvgInit( &cl->drift, 10 );
  171.     cl->late.i_index = 0;
  172.     for( int i = 0; i < INPUT_CLOCK_LATE_COUNT; i++ )
  173.         cl->late.pi_value[i] = 0;
  174.     cl->i_rate = i_rate;
  175.     cl->i_pts_delay = 0;
  176.     cl->b_paused = false;
  177.     cl->i_pause_date = VLC_TS_INVALID;
  178.     return cl;
  179. }
  180. /*****************************************************************************
  181.  * input_clock_Delete: destroy a new clock
  182.  *****************************************************************************/
  183. void input_clock_Delete( input_clock_t *cl )
  184. {
  185.     AvgClean( &cl->drift );
  186.     vlc_mutex_destroy( &cl->lock );
  187.     free( cl );
  188. }
  189. /*****************************************************************************
  190.  * input_clock_Update: manages a clock reference
  191.  *
  192.  *  i_ck_stream: date in stream clock
  193.  *  i_ck_system: date in system clock
  194.  *****************************************************************************/
  195. void input_clock_Update( input_clock_t *cl, vlc_object_t *p_log,
  196.                          bool *pb_late,
  197.                          bool b_can_pace_control, bool b_buffering_allowed,
  198.                          mtime_t i_ck_stream, mtime_t i_ck_system )
  199. {
  200.     bool b_reset_reference = false;
  201.     assert( i_ck_stream > VLC_TS_INVALID && i_ck_system > VLC_TS_INVALID );
  202.     vlc_mutex_lock( &cl->lock );
  203.     if( !cl->b_has_reference )
  204.     {
  205.         /* */
  206.         b_reset_reference= true;
  207.     }
  208.     else if( cl->last.i_stream > VLC_TS_INVALID &&
  209.              ( (cl->last.i_stream - i_ck_stream) > CR_MAX_GAP ||
  210.                (cl->last.i_stream - i_ck_stream) < -CR_MAX_GAP ) )
  211.     {
  212.         /* Stream discontinuity, for which we haven't received a
  213.          * warning from the stream control facilities (dd-edited
  214.          * stream ?). */
  215.         msg_Warn( p_log, "clock gap, unexpected stream discontinuity" );
  216.         cl->i_ts_max = VLC_TS_INVALID;
  217.         /* */
  218.         msg_Warn( p_log, "feeding synchro with a new reference point trying to recover from clock gap" );
  219.         b_reset_reference= true;
  220.     }
  221.     /* */
  222.     if( b_reset_reference )
  223.     {
  224.         cl->i_next_drift_update = VLC_TS_INVALID;
  225.         AvgReset( &cl->drift );
  226.         /* Feed synchro with a new reference point. */
  227.         cl->b_has_reference = true;
  228.         cl->ref = clock_point_Create( i_ck_stream,
  229.                                       __MAX( cl->i_ts_max + CR_MEAN_PTS_GAP, i_ck_system ) );
  230.     }
  231.     /* Compute the drift between the stream clock and the system clock
  232.      * when we don't control the source pace */
  233.     if( !b_can_pace_control && cl->i_next_drift_update < i_ck_system )
  234.     {
  235.         const mtime_t i_converted = ClockSystemToStream( cl, i_ck_system );
  236.         AvgUpdate( &cl->drift, i_converted - i_ck_stream );
  237.         cl->i_next_drift_update = i_ck_system + CLOCK_FREQ/5; /* FIXME why that */
  238.     }
  239.     /* Update the extra buffering value */
  240.     if( !b_can_pace_control || b_reset_reference )
  241.     {
  242.         cl->i_buffering_duration = 0;
  243.     }
  244.     else if( b_buffering_allowed )
  245.     {
  246.         /* Try to bufferize more than necessary by reading
  247.          * CR_BUFFERING_RATE/256 faster until we have CR_BUFFERING_TARGET.
  248.          */
  249.         const mtime_t i_duration = __MAX( i_ck_stream - cl->last.i_stream, 0 );
  250.         cl->i_buffering_duration += ( i_duration * CR_BUFFERING_RATE + 255 ) / 256;
  251.         if( cl->i_buffering_duration > CR_BUFFERING_TARGET )
  252.             cl->i_buffering_duration = CR_BUFFERING_TARGET;
  253.     }
  254.     //fprintf( stderr, "input_clock_Update: %d :: %lldn", b_buffering_allowed, cl->i_buffering_duration/1000 );
  255.     /* */
  256.     cl->last = clock_point_Create( i_ck_stream, i_ck_system );
  257.     /* It does not take the decoder latency into account but it is not really
  258.      * the goal of the clock here */
  259.     const mtime_t i_system_expected = ClockStreamToSystem( cl, i_ck_stream + AvgGet( &cl->drift ) );
  260.     const mtime_t i_late = ( i_ck_system - cl->i_pts_delay ) - i_system_expected;
  261.     *pb_late = i_late > 0;
  262.     if( i_late > 0 )
  263.     {
  264.         cl->late.pi_value[cl->late.i_index] = i_late;
  265.         cl->late.i_index = ( cl->late.i_index + 1 ) % INPUT_CLOCK_LATE_COUNT;
  266.     }
  267.     vlc_mutex_unlock( &cl->lock );
  268. }
  269. /*****************************************************************************
  270.  * input_clock_Reset:
  271.  *****************************************************************************/
  272. void input_clock_Reset( input_clock_t *cl )
  273. {
  274.     vlc_mutex_lock( &cl->lock );
  275.     cl->b_has_reference = false;
  276.     cl->ref = clock_point_Create( VLC_TS_INVALID, VLC_TS_INVALID );
  277.     cl->i_ts_max = VLC_TS_INVALID;
  278.     vlc_mutex_unlock( &cl->lock );
  279. }
  280. /*****************************************************************************
  281.  * input_clock_ChangeRate:
  282.  *****************************************************************************/
  283. void input_clock_ChangeRate( input_clock_t *cl, int i_rate )
  284. {
  285.     vlc_mutex_lock( &cl->lock );
  286.     if( cl->b_has_reference )
  287.     {
  288.         /* Move the reference point (as if we were playing at the new rate
  289.          * from the start */
  290.         cl->ref.i_system = cl->last.i_system - (cl->last.i_system - cl->ref.i_system) * i_rate / cl->i_rate;
  291.     }
  292.     cl->i_rate = i_rate;
  293.     vlc_mutex_unlock( &cl->lock );
  294. }
  295. /*****************************************************************************
  296.  * input_clock_ChangePause:
  297.  *****************************************************************************/
  298. void input_clock_ChangePause( input_clock_t *cl, bool b_paused, mtime_t i_date )
  299. {
  300.     vlc_mutex_lock( &cl->lock );
  301.     assert( (!cl->b_paused) != (!b_paused) );
  302.     if( cl->b_paused )
  303.     {
  304.         const mtime_t i_duration = i_date - cl->i_pause_date;
  305.         if( cl->b_has_reference && i_duration > 0 )
  306.         {
  307.             cl->ref.i_system += i_duration;
  308.             cl->last.i_system += i_duration;
  309.         }
  310.     }
  311.     cl->i_pause_date = i_date;
  312.     cl->b_paused = b_paused;
  313.     vlc_mutex_unlock( &cl->lock );
  314. }
  315. /*****************************************************************************
  316.  * input_clock_GetWakeup
  317.  *****************************************************************************/
  318. mtime_t input_clock_GetWakeup( input_clock_t *cl )
  319. {
  320.     mtime_t i_wakeup = 0;
  321.     vlc_mutex_lock( &cl->lock );
  322.     /* Synchronized, we can wait */
  323.     if( cl->b_has_reference )
  324.         i_wakeup = ClockStreamToSystem( cl, cl->last.i_stream + AvgGet( &cl->drift ) - cl->i_buffering_duration );
  325.     vlc_mutex_unlock( &cl->lock );
  326.     return i_wakeup;
  327. }
  328. /*****************************************************************************
  329.  * input_clock_ConvertTS
  330.  *****************************************************************************/
  331. int input_clock_ConvertTS( input_clock_t *cl,
  332.                            int *pi_rate, mtime_t *pi_ts0, mtime_t *pi_ts1,
  333.                            mtime_t i_ts_bound )
  334. {
  335.     assert( pi_ts0 );
  336.     vlc_mutex_lock( &cl->lock );
  337.     if( pi_rate )
  338.         *pi_rate = cl->i_rate;
  339.     if( !cl->b_has_reference )
  340.     {
  341.         vlc_mutex_unlock( &cl->lock );
  342.         *pi_ts0 = VLC_TS_INVALID;
  343.         if( pi_ts1 )
  344.             *pi_ts1 = VLC_TS_INVALID;
  345.         return VLC_EGENERIC;
  346.     }
  347.     /* */
  348.     const mtime_t i_ts_buffering = cl->i_buffering_duration * cl->i_rate / INPUT_RATE_DEFAULT;
  349.     const mtime_t i_ts_delay = cl->i_pts_delay + ClockGetTsOffset( cl );
  350.     /* */
  351.     if( *pi_ts0 > VLC_TS_INVALID )
  352.     {
  353.         *pi_ts0 = ClockStreamToSystem( cl, *pi_ts0 + AvgGet( &cl->drift ) );
  354.         if( *pi_ts0 > cl->i_ts_max )
  355.             cl->i_ts_max = *pi_ts0;
  356.         *pi_ts0 += i_ts_delay;
  357.     }
  358.     /* XXX we do not ipdate i_ts_max on purpose */
  359.     if( pi_ts1 && *pi_ts1 > VLC_TS_INVALID )
  360.     {
  361.         *pi_ts1 = ClockStreamToSystem( cl, *pi_ts1 + AvgGet( &cl->drift ) ) +
  362.                   i_ts_delay;
  363.     }
  364.     vlc_mutex_unlock( &cl->lock );
  365.     /* Check ts validity */
  366.     if( i_ts_bound != INT64_MAX &&
  367.         *pi_ts0 > VLC_TS_INVALID && *pi_ts0 >= mdate() + i_ts_delay + i_ts_buffering + i_ts_bound )
  368.         return VLC_EGENERIC;
  369.     return VLC_SUCCESS;
  370. }
  371. /*****************************************************************************
  372.  * input_clock_GetRate: Return current rate
  373.  *****************************************************************************/
  374. int input_clock_GetRate( input_clock_t *cl )
  375. {
  376.     int i_rate;
  377.     vlc_mutex_lock( &cl->lock );
  378.     i_rate = cl->i_rate;
  379.     vlc_mutex_unlock( &cl->lock );
  380.     return i_rate;
  381. }
  382. int input_clock_GetState( input_clock_t *cl,
  383.                           mtime_t *pi_stream_start, mtime_t *pi_system_start,
  384.                           mtime_t *pi_stream_duration, mtime_t *pi_system_duration )
  385. {
  386.     vlc_mutex_lock( &cl->lock );
  387.     if( !cl->b_has_reference )
  388.     {
  389.         vlc_mutex_unlock( &cl->lock );
  390.         return VLC_EGENERIC;
  391.     }
  392.     *pi_stream_start = cl->ref.i_stream;
  393.     *pi_system_start = cl->ref.i_system;
  394.     *pi_stream_duration = cl->last.i_stream - cl->ref.i_stream;
  395.     *pi_system_duration = cl->last.i_system - cl->ref.i_system;
  396.     vlc_mutex_unlock( &cl->lock );
  397.     return VLC_SUCCESS;
  398. }
  399. void input_clock_ChangeSystemOrigin( input_clock_t *cl, mtime_t i_system )
  400. {
  401.     vlc_mutex_lock( &cl->lock );
  402.     assert( cl->b_has_reference );
  403.     const mtime_t i_offset = i_system - cl->ref.i_system - ClockGetTsOffset( cl );
  404.     cl->ref.i_system += i_offset;
  405.     cl->last.i_system += i_offset;
  406.     vlc_mutex_unlock( &cl->lock );
  407. }
  408. #warning "input_clock_SetJitter needs more work"
  409. void input_clock_SetJitter( input_clock_t *cl,
  410.                             mtime_t i_pts_delay, int i_cr_average )
  411. {
  412.     vlc_mutex_lock( &cl->lock );
  413.     /* Update late observations */
  414.     const mtime_t i_delay_delta = i_pts_delay - cl->i_pts_delay;
  415.     mtime_t pi_late[INPUT_CLOCK_LATE_COUNT];
  416.     for( int i = 0; i < INPUT_CLOCK_LATE_COUNT; i++ )
  417.         pi_late[i] = __MAX( cl->late.pi_value[(cl->late.i_index + 1 + i)%INPUT_CLOCK_LATE_COUNT] - i_delay_delta, 0 );
  418.     for( int i = 0; i < INPUT_CLOCK_LATE_COUNT; i++ )
  419.         cl->late.pi_value[i] = 0;
  420.     cl->late.i_index = 0;
  421.     for( int i = 0; i < INPUT_CLOCK_LATE_COUNT; i++ )
  422.     {
  423.         if( pi_late[i] <= 0 )
  424.             continue;
  425.         cl->late.pi_value[cl->late.i_index] = pi_late[i];
  426.         cl->late.i_index = ( cl->late.i_index + 1 ) % INPUT_CLOCK_LATE_COUNT;
  427.     }
  428.     /* TODO always save the value, and when rebuffering use the new one if smaller
  429.      * TODO when increasing -> force rebuffering
  430.      */
  431.     if( cl->i_pts_delay < i_pts_delay )
  432.         cl->i_pts_delay = i_pts_delay;
  433.     /* */
  434.     if( i_cr_average < 10 )
  435.         i_cr_average = 10;
  436.     if( cl->drift.i_divider != i_cr_average )
  437.         AvgRescale( &cl->drift, i_cr_average );
  438.     vlc_mutex_unlock( &cl->lock );
  439. }
  440. mtime_t input_clock_GetJitter( input_clock_t *cl )
  441. {
  442.     vlc_mutex_lock( &cl->lock );
  443. #if INPUT_CLOCK_LATE_COUNT != 3
  444. #   error "unsupported INPUT_CLOCK_LATE_COUNT"
  445. #endif
  446.     /* Find the median of the last late values
  447.      * It works pretty well at rejecting bad values
  448.      *
  449.      * XXX we only increase pts_delay over time, decreasing it is
  450.      * not that easy if we want to be robust.
  451.      */
  452.     const mtime_t *p = cl->late.pi_value;
  453.     mtime_t i_late_median = p[0] + p[1] + p[2] - __MIN(__MIN(p[0],p[1]),p[2]) - __MAX(__MAX(p[0],p[1]),p[2]);
  454.     mtime_t i_pts_delay = cl->i_pts_delay ;
  455.     vlc_mutex_unlock( &cl->lock );
  456.     return i_pts_delay + i_late_median;
  457. }
  458. /*****************************************************************************
  459.  * ClockStreamToSystem: converts a movie clock to system date
  460.  *****************************************************************************/
  461. static mtime_t ClockStreamToSystem( input_clock_t *cl, mtime_t i_stream )
  462. {
  463.     if( !cl->b_has_reference )
  464.         return VLC_TS_INVALID;
  465.     return ( i_stream - cl->ref.i_stream ) * cl->i_rate / INPUT_RATE_DEFAULT +
  466.            cl->ref.i_system;
  467. }
  468. /*****************************************************************************
  469.  * ClockSystemToStream: converts a system date to movie clock
  470.  *****************************************************************************
  471.  * Caution : a valid reference point is needed for this to operate.
  472.  *****************************************************************************/
  473. static mtime_t ClockSystemToStream( input_clock_t *cl, mtime_t i_system )
  474. {
  475.     assert( cl->b_has_reference );
  476.     return ( i_system - cl->ref.i_system ) * INPUT_RATE_DEFAULT / cl->i_rate +
  477.             cl->ref.i_stream;
  478. }
  479. /**
  480.  * It returns timestamp display offset due to ref/last modfied on rate changes
  481.  * It ensures that currently converted dates are not changed.
  482.  */
  483. static mtime_t ClockGetTsOffset( input_clock_t *cl )
  484. {
  485.     return cl->i_pts_delay * ( cl->i_rate - INPUT_RATE_DEFAULT ) / INPUT_RATE_DEFAULT;
  486. }
  487. /*****************************************************************************
  488.  * Long term average helpers
  489.  *****************************************************************************/
  490. static void AvgInit( average_t *p_avg, int i_divider )
  491. {
  492.     p_avg->i_divider = i_divider;
  493.     AvgReset( p_avg );
  494. }
  495. static void AvgClean( average_t *p_avg )
  496. {
  497.     VLC_UNUSED(p_avg);
  498. }
  499. static void AvgReset( average_t *p_avg )
  500. {
  501.     p_avg->i_value = 0;
  502.     p_avg->i_residue = 0;
  503.     p_avg->i_count = 0;
  504. }
  505. static void AvgUpdate( average_t *p_avg, mtime_t i_value )
  506. {
  507.     const int i_f0 = __MIN( p_avg->i_divider - 1, p_avg->i_count );
  508.     const int i_f1 = p_avg->i_divider - i_f0;
  509.     const mtime_t i_tmp = i_f0 * p_avg->i_value + i_f1 * i_value + p_avg->i_residue;
  510.     p_avg->i_value   = i_tmp / p_avg->i_divider;
  511.     p_avg->i_residue = i_tmp % p_avg->i_divider;
  512.     p_avg->i_count++;
  513. }
  514. static mtime_t AvgGet( average_t *p_avg )
  515. {
  516.     return p_avg->i_value;
  517. }
  518. static void AvgRescale( average_t *p_avg, int i_divider )
  519. {
  520.     const mtime_t i_tmp = p_avg->i_value * p_avg->i_divider + p_avg->i_residue;
  521.     p_avg->i_divider = i_divider;
  522.     p_avg->i_value   = i_tmp / p_avg->i_divider;
  523.     p_avg->i_residue = i_tmp % p_avg->i_divider;
  524. }