Ortp的使用(待续)

Ortp API:http://mirror.yongbok.net/nongnu/linphone/ortp/docs/index.html

一、安装

1.1 安装到Ubuntu

a)./configure --prefix=/usr

b)make

c)make install

1.2 移植到开发板

a)./configure --prefix=/YOUR_INSTALL_PATH_NAME --host=arm-linux --disable-static

b)make

c)make install

1.3注意

移植到开发板,配置参数时可以考虑加perf,这样可以去掉一些功能,从而在程序运行时降低CPU的损耗。


二、测试

ortp库自带有测试程序,在编译时记得加上参数-lortp

开发板运行:./rtpsend file REMOTE_IP_ADDRESS 5000

Ubuntu运行:./rtprecv file 5000

实际发送的字节数会比原始文件略大,因为要加RTP头嘛!

你可能感兴趣的:(api,File,测试,ubuntu,Path)