资源简介
开源jrtp代码,rtp协议代码,支持视频单播组播技术,视频会议系统常用的协议
代码片段和文件信息
/*
Here‘s a small IPv4 example: it asks for a portbase and a destination and
starts sending packets to that destination.
*/
#include “rtpsession.h“
#include “rtpudpv4transmitter.h“
#include “rtpipv4address.h“
#include “rtpsessionparams.h“
#include “rtperrors.h“
#ifndef WIN32
#include
#include
#else
#include
#endif // WIN32
#include
#include
#include
#include
using namespace jrtplib;
//
// This function checks if there was a RTP error. If so it displays an error
// message and exists.
//
void checkerror(int rtperr)
{
if (rtperr < 0)
{
std::cout << “ERROR: “ << RTPGetErrorString(rtperr) << std::endl;
exit(-1);
}
}
//
// The main routine
//
int main(void)
{
#ifdef WIN32
WSADATA dat;
WSAStartup(MAKEWORD(22)&dat);
#endif // WIN32
RTPSession sess;
uint16_t portbasedestport;
uint32_t destip;
std::string ipstr;
int statusinum;
// First we‘ll ask for the necessary information
std::cout << “Enter local portbase:“ << std::endl;
std::cin >> portbase;
std::cout << std::endl;
std::cout << “Enter the destination IP address“ << std::endl;
std::cin >> ipstr;
destip = inet_addr(ipstr.c_str());
if (destip == INADDR_NONE)
{
std::cerr << “Bad IP address specified“ << std::endl;
return -1;
}
// The inet_addr function returns a value in network byte order but
// we need the IP address in host byte order so we use a call to
// ntohl
destip = ntohl(destip);
std::cout << “Enter the destination port“ << std::endl;
std::cin >> destport;
std::cout << std::endl;
std::cout << “Number of packets you wish to be sent:“ << std::endl;
std::cin >> num;
// Now we‘ll create a RTP session set the destination send some
// packets and poll for incoming data.
RTPUDPv4TransmissionParams transparams;
RTPSessionParams sessparams;
// IMPORTANT: The local timestamp unit MUST be set otherwise
// RTCP Sender Report info will be calculated wrong
// In this case we‘ll be sending 10 samples each second so we‘ll
// put the timestamp unit to (1.0/10.0)
sessparams.SetOwnTimestampUnit(1.0/10.0);
sessparams.SetAcceptOwnPackets(true);
transparams.SetPortbase(portbase);
status = sess.Create(sessparams&transparams);
checkerror(status);
RTPIPv4Address addr(destipdestport);
status = sess.AddDestination(addr);
checkerror(status);
for (i = 1 ; i <= num ; i++)
{
printf(“\nSending packet %d/%d\n“inum);
// send the packet
status = sess.SendPacket((void *)“1234567890“100false10);
checkerror(status);
sess.BeginDataAccess();
// check incoming packets
if (sess.GotoFirstSourceWithData())
{
do
{
RTPPacket *pack;
while ((pack = sess.GetNextPacket()) != NULL)
{
// You can examine the data here
printf(“Got packet !\n“);
// we don‘t longer need the packet so
// we‘ll delete it
sess.DeletePacket(pack);
}
} while (ses
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-07-29 08:17 jrtplib-3.9.0\
文件 0 2011-07-25 14:53 jrtplib-3.9.0\TODO
文件 7340 2006-02-21 09:29 jrtplib-3.9.0\aboutrfc3550
目录 0 2011-07-29 08:17 jrtplib-3.9.0\cmake\
文件 1191 2011-07-25 14:53 jrtplib-3.9.0\cmake\FindJThread.cmake
文件 109 2011-07-25 14:53 jrtplib-3.9.0\cmake\JRTPLIBConfig.cmake.in
文件 3861 2011-07-25 14:53 jrtplib-3.9.0\cmake\Macros.cmake
目录 0 2011-07-29 08:17 jrtplib-3.9.0\doc\
文件 13846 2011-07-25 14:53 jrtplib-3.9.0\doc\jrtplib.h
目录 0 2011-07-29 08:17 jrtplib-3.9.0\tools\
文件 475 2011-07-25 14:53 jrtplib-3.9.0\tools\ipv6mcasttest.cpp
文件 442 2011-07-25 14:53 jrtplib-3.9.0\tools\ipv4mcasttest.cpp
文件 338 2011-07-25 14:53 jrtplib-3.9.0\tools\salentest.cpp
文件 876 2010-09-30 08:38 jrtplib-3.9.0\tools\gettypes.cpp
文件 90 2011-07-25 14:53 jrtplib-3.9.0\tools\getloginrtest.cpp
文件 359 2011-07-25 14:53 jrtplib-3.9.0\tools\ipv6test.cpp
文件 385 2011-07-25 14:53 jrtplib-3.9.0\tools\socklentest.cpp
目录 0 2011-07-29 08:17 jrtplib-3.9.0\src\
文件 2790 2011-07-22 21:08 jrtplib-3.9.0\src\rtcpunknownpacket.h
文件 2734 2011-07-22 21:08 jrtplib-3.9.0\src\rtpipv4address.cpp
文件 7574 2011-07-22 21:08 jrtplib-3.9.0\src\rtppacket.h
文件 10972 2011-07-22 21:08 jrtplib-3.9.0\src\rtperrors.h
文件 3374 2011-07-22 21:08 jrtplib-3.9.0\src\rtprandomrand48.cpp
文件 5896 2011-07-22 21:08 jrtplib-3.9.0\src\rtcpcompoundpacket.cpp
文件 4451 2011-07-22 21:08 jrtplib-3.9.0\src\rtcpsdesinfo.cpp
文件 10936 2011-07-22 21:08 jrtplib-3.9.0\src\rtpsessionparams.h
文件 18851 2011-07-22 21:08 jrtplib-3.9.0\src\rtcppacketbuilder.cpp
文件 11442 2011-07-25 14:53 jrtplib-3.9.0\src\rtpudpv6transmitter.h
文件 4669 2011-07-22 21:08 jrtplib-3.9.0\src\rtpinternalsourcedata.h
文件 26464 2011-07-25 14:53 jrtplib-3.9.0\src\rtpsession.h
文件 7317 2011-07-22 21:08 jrtplib-3.9.0\src\rtcpscheduler.h
............此处省略92个文件信息
- 上一篇:IOS五子棋小
- 下一篇:MicroMouse_高级实验
相关资源
- WEBRTC多人视频通话
- 视频编解码器JM8.6
- JMF的音视频实时交互及存储的具体实
- camshift与kalman结合实现视频序列中目标
- 国立交通大学线性代数前三章视频.
- Webpack4.0视频教程-百度网盘链接.txt
- 树莓派实现无线实时视频传输
- 毕向东全集视频
- 微信支付小程序视频教程资源信息.
- 视频行为识别数据库包括hmdb51、ucf1
- 视频墙控制系统V3.0.5
- 最新微信视频打赏源码与视频教程.
- 千兆以太网视频传输实验
- 蓝桥杯《数据结构不难》、《计蒜客
- 价值600块的希赛软件设计师视频教材
- 2018软考网络工程师视频教程
- PR安装包以及安装步骤
- 视频压缩代码
- 吴恩达coursera机器学习吴恩达全套视频
- 视频人脸js包.zip
- 淘淘商城完整版源码+视频+软件
- Qt编写调用网络摄像头完成视频录制、
- 尚硅谷最新前端全部资源视频
- 全网在线无水印解析源码支持抖音快
- 云熙软件教程
- 三期视频网上买的,带课件,安装包
- Axure RP8.0 项目视频教程
- 51单片机读写SD卡+播放视频
- SSH企业案例erp_项目整合-完整高清视频
- SSM分布式案例-电商商城-完整高清视频
评论
共有 条评论