ZLMediaKit/webrtc
2023-12-02 16:31:40 +08:00
..
answer.sdp answer sdp通过chrome校验 2021-04-01 11:42:40 +08:00
CMakeLists.txt Build without usrsctp 2022-12-30 08:51:37 +03:00
DtlsTransport.cpp webrtc dtls默认采用https证书,如果https证书不存在则随机生成 (#2928) 2023-10-25 17:50:29 +08:00
DtlsTransport.hpp webrtc dtls默认采用https证书,如果https证书不存在则随机生成 (#2928) 2023-10-25 17:50:29 +08:00
IceServer.cpp 修复编译问题 2023-04-28 23:08:59 +08:00
IceServer.hpp 初始化selectedTuple为nullptr, 修复webrtc ice建连状态错误 2023-03-03 15:25:15 +08:00
janus_answer.sdp answer sdp通过chrome校验 2021-04-01 11:42:40 +08:00
janus_offer.sdp answer sdp通过chrome校验 2021-04-01 11:42:40 +08:00
logger.h MS_ASSERT改成抛异常 2022-06-18 21:09:57 +08:00
Nack.cpp RTC: 修复一组丢包分多次nack发送时blp-vector没有被重置的问题 (#3016) 2023-11-23 21:35:23 +08:00
Nack.h 加大参数冗余,提高webrtc抗丢包能力 2023-03-07 10:37:44 +08:00
offer-simulcast.sdp 完善simulcast接收及处理 2021-06-24 11:39:55 +08:00
offer.sdp 适配webrtc AV1编码: #2091 2022-11-18 16:47:02 +08:00
readme.md 整理webrtc相关代码命名空间 2022-09-18 21:03:05 +08:00
RtpExt.cpp 统一设置单字节对齐方式 (#2716) 2023-07-29 13:07:22 +08:00
RtpExt.h 添加rtp ext: av1-rtp-spec (#2609) 2023-07-08 23:28:34 +08:00
SctpAssociation.cpp 批量替换tab为4个空格 2023-03-03 15:24:12 +08:00
SctpAssociation.hpp 批量替换tab为4个空格 2023-03-03 15:24:12 +08:00
Sdp.cpp 兼容webrtc offer sdp中重复行的情况 (#3038) 2023-12-01 10:44:59 +08:00
Sdp.h Header refactor (#2115) 2022-11-29 11:07:13 +08:00
SrtpSession.cpp 调整switch case语句缩进 2022-08-05 17:42:17 +08:00
SrtpSession.hpp 避免对外传递 srtp 依赖 2022-07-26 00:04:03 +08:00
StunPacket.cpp 批量替换tab为4个空格 2023-03-03 15:24:12 +08:00
StunPacket.hpp 批量替换tab为4个空格 2023-03-03 15:24:12 +08:00
TwccContext.cpp 整理webrtc相关代码命名空间 2022-09-18 21:03:05 +08:00
TwccContext.h Header refactor (#2115) 2022-11-29 11:07:13 +08:00
Utils.hpp Header refactor (#2115) 2022-11-29 11:07:13 +08:00
WebRtcEchoTest.cpp 整理webrtc相关代码命名空间 2022-09-18 21:03:05 +08:00
WebRtcEchoTest.h 整理webrtc相关代码命名空间 2022-09-18 21:03:05 +08:00
WebRtcPlayer.cpp 新增webrtc播放器datachannel消息广播机制和接口 2023-09-02 12:53:56 +08:00
WebRtcPlayer.h Make available the media_info variable for the class inherited from WebRtcSession and HttpSession. (#2505 #2461) 2023-05-29 14:48:13 +08:00
WebRtcPusher.cpp NoticeCenter支持安全类型转换,解决监听者参数类型不一致导致的bug 2023-09-02 11:22:28 +08:00
WebRtcPusher.h 修复webrtc推流互斥锁重入死锁bug (#2713) 2023-07-29 13:04:24 +08:00
WebRtcSession.cpp 使用static_pointer_cast优化性能 2023-04-28 22:04:38 +08:00
WebRtcSession.h Make available the media_info variable for the class inherited from WebRtcSession and HttpSession. (#2505 #2461) 2023-05-29 14:48:13 +08:00
WebRtcTransport.cpp 整理MediaSource协议类型 2023-12-02 16:31:40 +08:00
WebRtcTransport.h 新增webrtc播放器datachannel消息广播机制和接口 2023-09-02 12:53:56 +08:00

致谢与声明

本文件夹下部分文件提取自MediaSoup ,分别为:

  • ice相关功能

    • IceServer.cpp
    • IceServer.hpp
    • StunPacket.cpp
    • StunPacket.hpp
    • Utils.hpp
  • dtls相关功能

    • DtlsTransport.cpp
    • DtlsTransport.hpp
  • srtp相关功能

    • SrtpSession.cpp
    • SrtpSession.hpp
  • datachannel相关功能

    • SctpAssociation.cpp
    • SctpAssociation.hpp

以上源码有一定的修改和裁剪感谢MediaSoup开源项目及作者 用户在使用本项目的同时应该同时遵循MediaSoup的开源协议。

同时,在此也感谢开源项目easy_webrtc_server 及作者, 在集成MediaSoup相关代码前期主要参考这个项目。

另外,感谢big panda 开发并贡献的webrtc js测试客户端(www/webrtc目录下文件) 其开源项目地址为:https://gitee.com/xiongguangjie/zlmrtcclient.js