This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
av-frag-rssb/src/frag_send.h
2018-09-29 14:57:32 +08:00

24 lines
412 B
C

#ifndef _FRAG_SEND_H
#define _FRAG_SEND_H
/*通过sokcet接口发送本机*/
#define FRAG_SEND_SOCKET 0x01
/*多源通过bizman发送给其他frag_rssb*/
#define FRAG_SEND_BIZMAN 0x02
/*异常,数据丢失*/
#define FRAG_SEND_DROP 0x03
/*多源聚合的地址*/
#define MEDIA_SEND_DST_LOCAL 0x00 /*本机*/
#define MEDIA_SEND_DST_OTHER 0x01 /*其它粗拼装*/
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif