hust_rtpremovestream.c

来自「实现基于ip2022的MPEG2 TS的IP组播接收」· C语言 代码 · 共 22 行

C
22
字号
/*------------------------------------------------------------------------- * rtpremovestream.c - rtpremovestream *------------------------------------------------------------------------- */#include "hust_util.h"#include "hust_rtp.h"#include "hust_rtcp.h"#include "hust_hash.h"/*------------------------------------------------------------------------ * rtpremovestream - remove stream from a session. This call sets the  * stream's zombie flag. Rtprelease stream will actually remove the state * once the stream's reference count reaches zero. *------------------------------------------------------------------------ */intrtpremovestream(struct session *psn, struct stream *pstm){	pstm->stm_zombie =TRUE;   	return OK;}

⌨️ 快捷键说明

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