📄 rtsp.h
字号:
/*-------------------------------------------------------- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -