rtsp.h

来自「最基本的rtsp client 程序」· C头文件 代码 · 共 50 行

H
50
字号
/*--------------------------------------------------------		COPYRIGHT 2007 (C) DVN (Holdings) Ltd (Hongkong)	AUTHOR:		wangry@dvnchina.com	PURPOSE:	kasenna simple rtsp lib	CREATED:	2007-12-10  	MODIFICATION HISTORY	Date        By     Details	----------  -----  ---------------------------------------------------------------*/#ifndef _RTSP_SOCK_H_#define _RTSP_SOCK_H_ #ifdef __cplusplusextern "C" {#endif/*----------------------------------------------------------	本系统函数返回值规则:	0 为成功	非0 为失败类型----------------------------------------------------------*/#define VERSION 1.0/*-----------------------------------------------------------  type = 0: 退出命令  type = 1: 数据  type = 2: 网络忙-------------------------------------------------------------*/typedef int (*rtsp_callback_func_t)(int type, char* data, int len);int rtsp_open(char* url, int* clip_len, rtsp_callback_func_t func);int	rtsp_play(int pos);int	rtsp_pause();int rtsp_trip(int mode);int rtsp_keepalive();int rtsp_get_position();void rtsp_close();#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

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