3 Star 8 Fork 10

474807898/rv1106_1103_rtsp模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rtputils.h 683 Bytes
一键复制 编辑 原始数据 按行查看 历史
474807898 提交于 2024-03-13 11:50 . 第一次提交
#ifndef _RTPUTILS_H
#define _RTPUTILS_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#ifdef __cplusplus
extern "C" {
#endif
#define MAX_RTP_PKT_LENGTH 1400
#define H264 96
#define G711 97
typedef enum
{
_h264 = 0x100,
_h264nalu,
_mjpeg,
_g711 = 0x200,
}EmRtpPayload;
enum H264_FRAME_TYPE {FRAME_TYPE_I, FRAME_TYPE_P, FRAME_TYPE_B};
unsigned int RtpCreate(unsigned int u32IP, int s32Port, EmRtpPayload emPayload);
void RtpDelete(unsigned int u32Rtp);
unsigned int RtpSend(unsigned int u32Rtp, char *pData, int s32DataSize, unsigned int u32TimeStamp);
#ifdef __cplusplus
}
#endif
#endif /* _RTPUTILS_H */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aiprogrammer/rv11061103rtsp-module.git
git@gitee.com:aiprogrammer/rv11061103rtsp-module.git
aiprogrammer
rv11061103rtsp-module
rv1106_1103_rtsp模块
master

搜索帮助