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
a84bcec4
Commit
a84bcec4
authored
May 16, 2021
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善rtp ext处理相关逻辑
parent
bda378c3
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
26 行增加
和
16 行删除
+26
-16
webrtc/Sdp.cpp
+4
-2
webrtc/WebRtcTransport.cpp
+21
-14
webrtc/WebRtcTransport.h
+1
-0
没有找到文件。
webrtc/Sdp.cpp
查看文件 @
a84bcec4
...
...
@@ -1412,7 +1412,8 @@ void RtcConfigure::RtcTrackConfigure::setDefaultSetting(TrackType type){
RtpExtType
::
csrc_audio_level
,
RtpExtType
::
abs_send_time
,
RtpExtType
::
transport_cc
,
RtpExtType
::
sdes_mid
,
//rtx重传rtp时,忽略sdes_mid类型的rtp ext,实测发现Firefox在接收rtx时,如果存在sdes_mid的ext,将导致无法播放
//RtpExtType::sdes_mid,
RtpExtType
::
sdes_rtp_stream_id
,
RtpExtType
::
sdes_repaired_rtp_stream_id
};
...
...
@@ -1425,7 +1426,8 @@ void RtcConfigure::RtcTrackConfigure::setDefaultSetting(TrackType type){
extmap
=
{
RtpExtType
::
abs_send_time
,
RtpExtType
::
transport_cc
,
RtpExtType
::
sdes_mid
,
//rtx重传rtp时,忽略sdes_mid类型的rtp ext,实测发现Firefox在接收rtx时,如果存在sdes_mid的ext,将导致无法播放
//RtpExtType::sdes_mid,
RtpExtType
::
sdes_rtp_stream_id
,
RtpExtType
::
sdes_repaired_rtp_stream_id
,
RtpExtType
::
video_timing
,
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
a84bcec4
...
...
@@ -668,24 +668,30 @@ void WebRtcTransportImp::onRtcp(const char *buf, size_t len) {
///////////////////////////////////////////////////////////////////
static
void
setExtType
(
RtpExt
&
ext
,
uint8_t
tp
)
{}
static
void
setExtType
(
RtpExt
&
ext
,
RtpExtType
tp
)
{
ext
.
setType
(
tp
);
}
template
<
typename
Type
>
static
void
changeRtpExtId
(
const
RtpHeader
*
header
,
const
Type
&
map
)
{
void
WebRtcTransportImp
::
changeRtpExtId
(
const
RtpHeader
*
header
,
bool
is_recv
,
bool
is_rtx
)
const
{
auto
ext_map
=
RtpExt
::
getExtValue
(
header
);
for
(
auto
&
pr
:
ext_map
)
{
auto
it
=
map
.
find
((
typename
Type
::
key_type
)
(
pr
.
first
));
if
(
it
==
map
.
end
())
{
WarnL
<<
"未处理的rtp ext, 类型不识别:"
<<
(
int
)
pr
.
first
;
if
(
is_recv
)
{
auto
it
=
_rtp_ext_id_to_type
.
find
(
pr
.
first
);
if
(
it
==
_rtp_ext_id_to_type
.
end
())
{
WarnL
<<
"接收rtp时,忽略不识别的rtp ext, id="
<<
(
int
)
pr
.
first
;
pr
.
second
.
clearExt
();
continue
;
}
setExtType
(
pr
.
second
,
it
->
first
);
setExtType
(
pr
.
second
,
it
->
second
);
pr
.
second
.
setType
(
it
->
second
);
//重新赋值ext id为 ext type,作为后面处理ext的统一中间类型
pr
.
second
.
setExtId
((
uint8_t
)
it
->
second
);
}
else
{
pr
.
second
.
setType
((
RtpExtType
)
pr
.
first
);
auto
it
=
_rtp_ext_type_to_id
.
find
((
RtpExtType
)
pr
.
first
);
if
(
it
==
_rtp_ext_type_to_id
.
end
())
{
WarnL
<<
"发送rtp时, 忽略不被客户端支持rtp ext:"
<<
pr
.
second
.
dumpString
();
pr
.
second
.
clearExt
();
continue
;
}
//重新赋值ext id为客户端sdp声明的类型
pr
.
second
.
setExtId
(
it
->
second
);
}
}
}
...
...
@@ -726,7 +732,7 @@ void WebRtcTransportImp::onRtp_l(const char *buf, size_t len, bool rtx) {
info
->
rtcp_context_recv
->
onRtp
(
seq
,
stamp_ms
,
len
);
}
//修改ext id至统一
changeRtpExtId
(
rtp
,
_rtp_ext_id_to_typ
e
);
changeRtpExtId
(
rtp
,
tru
e
);
//解析并排序rtp
info
->
receiver
->
inputRtp
(
info
->
media
->
type
,
info
->
plan_rtp
->
sample_rate
,
(
uint8_t
*
)
buf
,
len
);
return
;
...
...
@@ -808,14 +814,15 @@ void WebRtcTransportImp::onSendRtp(const RtpPacket::Ptr &rtp, bool flush, bool r
void
WebRtcTransportImp
::
onBeforeEncryptRtp
(
const
char
*
buf
,
size_t
&
len
,
void
*
ctx
)
{
auto
pr
=
(
pair
<
bool
/*rtx*/
,
RtpPayloadInfo
*>
*
)
ctx
;
auto
header
=
(
RtpHeader
*
)
buf
;
changeRtpExtId
(
header
,
_rtp_ext_type_to_id
);
if
(
!
pr
->
first
||
!
pr
->
second
->
plan_rtx
)
{
//普通的rtp,或者不支持rtx, 修改目标pt和ssrc
changeRtpExtId
(
header
,
false
,
false
);
header
->
pt
=
pr
->
second
->
plan_rtp
->
pt
;
header
->
ssrc
=
htonl
(
pr
->
second
->
answer_ssrc_rtp
);
}
else
{
//重传的rtp, rtx
changeRtpExtId
(
header
,
false
,
true
);
header
->
pt
=
pr
->
second
->
plan_rtx
->
pt
;
if
(
pr
->
second
->
answer_ssrc_rtx
)
{
//有rtx单独的ssrc,有些情况下,浏览器支持rtx,但是未指定rtx单独的ssrc
...
...
webrtc/WebRtcTransport.h
查看文件 @
a84bcec4
...
...
@@ -338,6 +338,7 @@ private:
SdpAttrCandidate
::
Ptr
getIceCandidate
()
const
;
bool
canSendRtp
()
const
;
bool
canRecvRtp
()
const
;
void
changeRtpExtId
(
const
RtpHeader
*
header
,
bool
is_recv
,
bool
is_rtx
=
false
)
const
;
class
RtpPayloadInfo
{
public
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论