Diff for /multiplexer/global.c between versions 1.1 and 1.2

version 1.1, 2001/03/19 20:52:34 version 1.2, 2001/03/29 13:27:43
Line 22  long logtpc; Line 22  long logtpc;
 timepoll *ltp;  timepoll *ltp;
 #endif  #endif
   
 /*  
 int secusec2msec (struct timeval *s)  
 {  
 }  
   
 void secusec2clockref (struct timeval *s, clockref *d)  
 {  
 }  
   
 void msec2clockref (int s, clockref *d)  
 {  
 }  
   
 int clockref2msec (clockref *s)  
 {  
 }  
 */  
   
 int msec_now (void)  int msec_now (void)
 {  {
   static long last;    static long last;
Line 64  int msec_now (void) Line 46  int msec_now (void)
   return (now + global_delta);    return (now + global_delta);
 }  }
   
   void cref2msec (conversion_base *b,
       clockref c,
       int *m)
   {
   #define CREF2MSEC_LIMIT (90 * 1024 * 16) /* 16 sec */
     unsigned long d;
     d = c.base - b->base;
     if (d >= (2 * CREF2MSEC_LIMIT)) {
       if (d >= (3 * CREF2MSEC_LIMIT)) {
         b->base = c.base - CREF2MSEC_LIMIT;
         b->msec = b->base / 90;
       } else {
         b->base += CREF2MSEC_LIMIT;
         b->msec += CREF2MSEC_LIMIT / 90;
       }
       d = c.base - b->base;
     }
     *m = (d / 90) + b->msec;
   }
    
   void msec2cref (conversion_base *b,
       int m,
       clockref *c)
   {
   #define MSEC2CREF_LIMIT (1024 * 10) /* 10 sec */
     unsigned int d;
     d = m - b->msec;
     if (d >= (2 * MSEC2CREF_LIMIT)) {
       if (d >= (3 * MSEC2CREF_LIMIT)) {
         b->msec = m - MSEC2CREF_LIMIT;
         b->base = b->msec * 45;
       } else {
         b->msec += MSEC2CREF_LIMIT;
         b->base += MSEC2CREF_LIMIT * 45;
       }
       d = m - b->msec;
     }
     d = (d * 45) + b->base;
     c->base = d * 2;
     c->ba33 = (d >> 31) & 0x01;
     c->ext = 0;
     c->valid = TRUE;
   }
   
 void global_init (void)  void global_init (void)
 {  {
 #ifdef DEBUG_TIMEPOLL  #ifdef DEBUG_TIMEPOLL

Removed from v.1.1  
changed lines
  Added in v.1.2


LinuxTV legacy CVS <linuxtv.org/cvs>