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
c70721a5
Commit
c70721a5
authored
Apr 04, 2021
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改rtp pt时,确保不影响其他播放器
parent
2abb5078
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
10 行增加
和
13 行删除
+10
-13
webrtc/SrtpSession.cpp
+2
-1
webrtc/SrtpSession.hpp
+1
-1
webrtc/WebRtcTransport.cpp
+6
-10
webrtc/WebRtcTransport.h
+1
-1
没有找到文件。
webrtc/SrtpSession.cpp
查看文件 @
c70721a5
...
@@ -213,7 +213,7 @@ namespace RTC
...
@@ -213,7 +213,7 @@ namespace RTC
}
}
}
}
bool
SrtpSession
::
EncryptRtp
(
const
uint8_t
**
data
,
size_t
*
len
)
bool
SrtpSession
::
EncryptRtp
(
const
uint8_t
**
data
,
size_t
*
len
,
uint8_t
pt
)
{
{
MS_TRACE
();
MS_TRACE
();
...
@@ -226,6 +226,7 @@ namespace RTC
...
@@ -226,6 +226,7 @@ namespace RTC
}
}
std
::
memcpy
(
EncryptBuffer
,
*
data
,
*
len
);
std
::
memcpy
(
EncryptBuffer
,
*
data
,
*
len
);
EncryptBuffer
[
1
]
|=
(
pt
&
0x7F
);
srtp_err_status_t
err
=
srtp_err_status_t
err
=
srtp_protect
(
this
->
session
,
static_cast
<
void
*>
(
EncryptBuffer
),
reinterpret_cast
<
int
*>
(
len
));
srtp_protect
(
this
->
session
,
static_cast
<
void
*>
(
EncryptBuffer
),
reinterpret_cast
<
int
*>
(
len
));
...
...
webrtc/SrtpSession.hpp
查看文件 @
c70721a5
...
@@ -46,7 +46,7 @@ namespace RTC
...
@@ -46,7 +46,7 @@ namespace RTC
~
SrtpSession
();
~
SrtpSession
();
public
:
public
:
bool
EncryptRtp
(
const
uint8_t
**
data
,
size_t
*
len
);
bool
EncryptRtp
(
const
uint8_t
**
data
,
size_t
*
len
,
uint8_t
pt
);
bool
DecryptSrtp
(
uint8_t
*
data
,
size_t
*
len
);
bool
DecryptSrtp
(
uint8_t
*
data
,
size_t
*
len
);
bool
EncryptRtcp
(
const
uint8_t
**
data
,
size_t
*
len
);
bool
EncryptRtcp
(
const
uint8_t
**
data
,
size_t
*
len
);
bool
DecryptSrtcp
(
uint8_t
*
data
,
size_t
*
len
);
bool
DecryptSrtcp
(
uint8_t
*
data
,
size_t
*
len
);
...
...
webrtc/WebRtcTransport.cpp
查看文件 @
c70721a5
...
@@ -179,11 +179,11 @@ void WebRtcTransport::inputSockData(char *buf, size_t len, RTC::TransportTuple *
...
@@ -179,11 +179,11 @@ void WebRtcTransport::inputSockData(char *buf, size_t len, RTC::TransportTuple *
}
}
}
}
void
WebRtcTransport
::
sendRtpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
)
{
void
WebRtcTransport
::
sendRtpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
,
uint8_t
pt
)
{
const
uint8_t
*
p
=
(
uint8_t
*
)
buf
;
const
uint8_t
*
p
=
(
uint8_t
*
)
buf
;
bool
ret
=
false
;
bool
ret
=
false
;
if
(
_srtp_session_send
)
{
if
(
_srtp_session_send
)
{
ret
=
_srtp_session_send
->
EncryptRtp
(
&
p
,
&
len
);
ret
=
_srtp_session_send
->
EncryptRtp
(
&
p
,
&
len
,
pt
);
}
}
if
(
ret
)
{
if
(
ret
)
{
onSendSockData
((
char
*
)
p
,
len
,
flush
);
onSendSockData
((
char
*
)
p
,
len
,
flush
);
...
@@ -467,16 +467,12 @@ void WebRtcTransportImp::onBeforeSortedRtp(const RtpPayloadInfo &info, const Rtp
...
@@ -467,16 +467,12 @@ void WebRtcTransportImp::onBeforeSortedRtp(const RtpPayloadInfo &info, const Rtp
}
}
void
WebRtcTransportImp
::
onSendRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
flush
){
void
WebRtcTransportImp
::
onSendRtp
(
const
RtpPacket
::
Ptr
&
rtp
,
bool
flush
){
if
(
!
_send_rtp_pt
[
rtp
->
type
])
{
auto
&
pt
=
_send_rtp_pt
[
rtp
->
type
];
if
(
!
pt
)
{
//忽略,对方不支持该编码类型
//忽略,对方不支持该编码类型
return
;
return
;
}
}
auto
tmp
=
rtp
->
getHeader
()
->
pt
;
sendRtpPacket
(
rtp
->
data
()
+
RtpPacket
::
kRtpTcpHeaderSize
,
rtp
->
size
()
-
RtpPacket
::
kRtpTcpHeaderSize
,
flush
,
pt
);
//设置pt
rtp
->
getHeader
()
->
pt
=
_send_rtp_pt
[
rtp
->
type
];
sendRtpPacket
(
rtp
->
data
()
+
RtpPacket
::
kRtpTcpHeaderSize
,
rtp
->
size
()
-
RtpPacket
::
kRtpTcpHeaderSize
,
flush
);
//统计rtp发送情况,好做sr汇报
//统计rtp发送情况,好做sr汇报
_rtp_receiver
[
_send_rtp_pt
[
rtp
->
type
]].
rtcp_context_send
->
onRtp
(
rtp
->
getSeq
(),
rtp
->
getStampMS
(),
rtp
->
size
()
-
RtpPacket
::
kRtpTcpHeaderSize
);
_rtp_receiver
[
pt
].
rtcp_context_send
->
onRtp
(
rtp
->
getSeq
(),
rtp
->
getStampMS
(),
rtp
->
size
()
-
RtpPacket
::
kRtpTcpHeaderSize
);
//还原pt
rtp
->
getHeader
()
->
pt
=
tmp
;
}
}
webrtc/WebRtcTransport.h
查看文件 @
c70721a5
...
@@ -45,7 +45,7 @@ public:
...
@@ -45,7 +45,7 @@ public:
* @param buf rtcp内容
* @param buf rtcp内容
* @param len rtcp长度
* @param len rtcp长度
*/
*/
void
sendRtpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
);
void
sendRtpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
,
uint8_t
pt
);
void
sendRtcpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
);
void
sendRtcpPacket
(
char
*
buf
,
size_t
len
,
bool
flush
);
protected
:
protected
:
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论