rtpappsession.h

来自「利用RTP协议实现的客户端例程」· C头文件 代码 · 共 21 行

H
21
字号
/*---------------------------------------------------------------------------*/
/* 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 + =
减小字号Ctrl + -
显示快捷键?