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

📄 rtpappsession.h

📁 利用RTP协议实现的客户端例程
💻 H
字号:
/*---------------------------------------------------------------------------*/
/* RtpSessionWrapper.h
/* Since the RTPSession class creates a background thread that processes
/*  incomming RTP & RTCP packets, the class is derived from so that the
/*  callback methods can be overridden.
/*---------------------------------------------------------------------------*/
#ifndef _RTPAPPSESSION_H_
#define _RTPAPPSESSION_H_

#include "RTPSession.h"
#include "RTPPacket.h"

/*------------------------------------------*/
/* RTPAppSession
/*------------------------------------------*/
class RTPAppSession : public RTPSession
{
public:
	virtual void OnRTPPacket(RTPPacket *pack, const RTPTime &receivetime, const RTPAddress *senderaddress);
};
#endif

⌨️ 快捷键说明

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