Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
ce04a727
Commit
ce04a727
authored
Apr 05, 2021
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化代码
parent
3c935e7f
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
13 行增加
和
7 行删除
+13
-7
webrtc/WebRtcTransport.cpp
+2
-2
webrtc/WebRtcTransport.h
+11
-5
没有找到文件。
webrtc/WebRtcTransport.cpp
查看文件 @
ce04a727
...
...
@@ -102,7 +102,7 @@ void WebRtcTransport::setRemoteDtlsFingerprint(const RtcSession &remote){
_dtls_transport
->
SetRemoteFingerprint
(
remote_fingerprint
);
}
void
WebRtcTransport
::
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
)
const
{
void
WebRtcTransport
::
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
){
for
(
auto
&
m
:
sdp
.
media
)
{
if
(
m
.
type
!=
TrackApplication
&&
!
m
.
rtcp_mux
)
{
throw
std
::
invalid_argument
(
"只支持rtcp-mux模式"
);
...
...
@@ -292,7 +292,7 @@ void WebRtcTransportImp::onStartWebRTC() {
}
}
void
WebRtcTransportImp
::
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
)
const
{
void
WebRtcTransportImp
::
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
){
WebRtcTransport
::
onCheckSdp
(
type
,
sdp
);
if
(
type
!=
SdpType
::
answer
||
!
canSendRtp
())
{
return
;
...
...
webrtc/WebRtcTransport.h
查看文件 @
ce04a727
...
...
@@ -79,7 +79,7 @@ protected:
protected
:
virtual
void
onStartWebRTC
()
=
0
;
virtual
void
onRtcConfigure
(
RtcConfigure
&
configure
)
const
{}
virtual
void
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
)
const
;
virtual
void
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
);
virtual
void
onSendSockData
(
const
char
*
buf
,
size_t
len
,
struct
sockaddr_in
*
dst
,
bool
flush
=
true
)
=
0
;
virtual
void
onRtp
(
const
char
*
buf
,
size_t
len
)
=
0
;
...
...
@@ -125,7 +125,7 @@ public:
protected
:
void
onStartWebRTC
()
override
;
void
onSendSockData
(
const
char
*
buf
,
size_t
len
,
struct
sockaddr_in
*
dst
,
bool
flush
=
true
)
override
;
void
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
)
const
override
;
void
onCheckSdp
(
SdpType
type
,
RtcSession
&
sdp
)
override
;
void
onRtcConfigure
(
RtcConfigure
&
configure
)
const
override
;
void
onRtp
(
const
char
*
buf
,
size_t
len
)
override
;
...
...
@@ -153,14 +153,20 @@ private:
void
onBeforeSortedRtp
(
const
RtpPayloadInfo
&
info
,
const
RtpPacket
::
Ptr
&
rtp
);
private
:
uint32_t
_recv_video_ssrc
;
mutable
uint8_t
_send_rtp_pt
[
2
]
=
{
0
,
0
};
//pli rtcp计时器
Ticker
_pli_ticker
;
//rtc rtp推流的视频ssrc
uint32_t
_recv_video_ssrc
;
//记录协商的rtp的pt类型
uint8_t
_send_rtp_pt
[
2
]
=
{
0
,
0
};
//复合udp端口,接收一切rtp与rtcp
Socket
::
Ptr
_socket
;
RtcSession
_answer_sdp
;
//推流或播放的rtsp源
RtspMediaSource
::
Ptr
_src
;
RtspMediaSource
::
RingType
::
RingReader
::
Ptr
_reader
;
//根据rtp的pt获取相关信息
unordered_map
<
uint8_t
,
RtpPayloadInfo
>
_rtp_info_pt
;
//根据推流端rtp的ssrc获取相关信息
unordered_map
<
uint32_t
,
RtpPayloadInfo
*>
_rtp_info_ssrc
;
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论