ntp.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:1k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * FILE:    ntp.h
  3.  * AUTHOR:  O.Hodson
  4.  * 
  5.  * NTP utility functions to make rtp and rtp round time calculation
  6.  * a little less painful.
  7.  *
  8.  * Copyright (c) 2000 University College London
  9.  * All rights reserved.
  10.  *
  11.  * $Id: ntp.c,v 1.2 2001/10/03 23:40:29 wmay Exp $
  12.  */
  13. #include "config_unix.h"
  14. #include "config_win32.h"
  15. #include "gettimeofday.h"
  16. #include "ntp.h"
  17. #define SECS_BETWEEN_1900_1970 2208988800u
  18. void 
  19. ntp64_time(uint32_t *ntp_sec, uint32_t *ntp_frac)
  20. {
  21.         struct timeval now;
  22.         gettimeofday(&now, NULL);
  23.         /* NB ntp_frac is in units of 1 / (2^32 - 1) secs. */
  24.         *ntp_sec  = now.tv_sec + SECS_BETWEEN_1900_1970;
  25.         *ntp_frac = (now.tv_usec << 12) + (now.tv_usec << 8) - ((now.tv_usec * 3650) >> 6);
  26. }