基于Linux开源VOIP系统LinPhone[二]

来源:互联网 发布:linux 移动整个文件夹 编辑:程序博客网 时间:2024/05/29 12:52
***************************************************************************************************************************
作者:EasyWave                                                                                 时间:2013.01.26

类别:Linux 应用LinPhone组件oRTP                                             声明:转载,请保留链接

注意:如有错误,欢迎指正。这些是我学习的日志文章......

***************************************************************************************************************************

在LinPhone这个系统中,第一个我们要介绍的第三方库组件:oRTP --a Real-time Transport Protocol (RTP,RFC3550) library,oRTP是基于LGPL下的开源的实时传输协议,对于RTP协议主要是用于音频和视频的网络实时传输。有两种方式:UDP和TCP。现在来简单介绍oRTP的基本功能,后续,还会将如何在ARM-Linux编译、Windows下如何编译都会弄出来哈。废话少说,进入oRTP功能介绍吧,主要功能如下:

  • 采用纯C写的代码,可以在Linux、Windows等运行以及移植
  • 基于RFC3550(RTP:实时应用程序传输协议),易于使用的API函数,高级别和低级别的访问
  • 包含多配置文件之后,AV profile (RFC3551)是默认支持的一个
  • 包含一个数据包调度程序,以准时的支持接收和发送包,根据他们的时间戳,调度是可选的,并且RTP会话能够保持而不scheduled.
  • 支持复用IO,使得数以百计的RTP会话能被单一的进程中调度
  • 自适应抖动算法的接收器,以适应发送端的时钟速率
  • 支持RFC2833中的telephone events
  • 使用doxygen的API文档
  • GNU通用公共许可证授权
  • RTCP messages sent periodically since 0.7.0 (compound packet including sender report or receiver report + SDES)[不好翻译,还是用原文吧]
  • 包含一个解析传入的RTCP包的API

Download

  • Releases of source tar.gz are here.
  • Use git, read only access:  

git clone git.linphone.org/ortp.git

Documentation

Read there: API documentation.

Authors

oRTP was written by Simon MORLAT (simon dot morlat at linphone dot org).
More information is availlable in the source tree, see the README file.

下次会将oRTP和LinPhone以及LinPhone所需的第三方库一个个的介绍,同时介绍如何移植到ARM Linux中来。

英文网址如下:http://www.linphone.org/eng/documentation/dev/ortp.html

源码下载:http://download.savannah.gnu.org/releases/linphone/ortp/sources/

API文档下载:http://download.savannah.gnu.org/releases/linphone/ortp/docs/

原创粉丝点击