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

📄 rtplibcommon.h

📁 linux环境下用纯c写的RTP协议的通用开发库
💻 H
字号:
/*------------------------------------------------------------------------- * rtplibcommon.h *------------------------------------------------------------------------- */#ifndef RTPLIBCOMMON_H#define RTPLIBCOMMON_H#ifdef LINUX#include <linux.h>#endif /* LINUX */typedef char bool;typedef unsigned int ssrc_t;typedef unsigned int mediatime_t;typedef	unsigned short seq_t;#define min(a, b) (a < b ? a : b)#define max(a, b) (a < b ? b : a)#define TRUE		1#define FALSE		0#define OK		0#define ERROR		-1#ifndef NULL#define NULL		0#endif /* !NULL *//* * Uncomment the line below to include * experimental support for inter-stream * and inter-session synchronization. *//*#define RTPLIB_SYNCHRONIZE*/#endif /* !RTPLIBCOMMON_H */

⌨️ 快捷键说明

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