⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ntp.h

📁 网络MPEG4IP流媒体开发源代码
💻 H
字号:
/* * FILE:    ntp.h * AUTHOR:  O.Hodson *  * NTP utility functions to make rtp and rtp round time calculation * a little less painful. * * Copyright (c) 2000 University College London * All rights reserved. * * $Id$ */#ifndef _NTP_H#define _NTP_H#if defined(__cplusplus)extern "C" {#endif        #define  ntp64_to_ntp32(ntp_sec, ntp_frac)          \               ((((ntp_sec)  & 0x0000ffff) << 16) | \                (((ntp_frac) & 0xffff0000) >> 16))#define  ntp32_sub(now, then) ((now) > (then)) ? ((now) - (then)) : (((now) - (then)) + 0x7fffffff)void     ntp64_time(uint32_t *ntp_sec, uint32_t *ntp_frac);#if defined(__cplusplus)}#endif#endif /* _NTP_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -