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
26432695
Commit
26432695
authored
Mar 29, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加部分对象定义
parent
7726caa7
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
79 行增加
和
11 行删除
+79
-11
webrtc/Sdp.cpp
+8
-8
webrtc/Sdp.h
+71
-3
没有找到文件。
webrtc/Sdp.cpp
查看文件 @
26432695
...
...
@@ -161,9 +161,9 @@ const char* getRtpDirectionString(RtpDirection val){
//////////////////////////////////////////////////////////////////////////////////////////
void
RtcSdp
::
parse
(
const
string
&
str
)
{
void
RtcS
essionS
dp
::
parse
(
const
string
&
str
)
{
static
auto
flag
=
registerAllItem
();
RtcMedia
*
media
=
nullptr
;
RtcMedia
Sdp
*
media
=
nullptr
;
auto
lines
=
split
(
str
,
"
\n
"
);
for
(
auto
&
line
:
lines
){
trim
(
line
);
...
...
@@ -173,7 +173,7 @@ void RtcSdp::parse(const string &str) {
auto
key
=
line
.
substr
(
0
,
1
);
auto
value
=
line
.
substr
(
2
);
if
(
key
==
"m"
)
{
medias
.
emplace_back
(
RtcMedia
());
medias
.
emplace_back
(
RtcMedia
Sdp
());
media
=
&
medias
.
back
();
}
...
...
@@ -193,7 +193,7 @@ void RtcSdp::parse(const string &str) {
}
}
string
RtcSdp
::
toString
()
const
{
string
RtcS
essionS
dp
::
toString
()
const
{
_StrPrinter
printer
;
for
(
auto
&
item
:
items
)
{
printer
<<
item
->
getKey
()
<<
"="
<<
item
->
toString
()
<<
"
\r\n
"
;
...
...
@@ -207,7 +207,7 @@ string RtcSdp::toString() const {
//////////////////////////////////////////////////////////////////////
string
RtcMedia
::
toString
()
const
{
string
RtcMedia
Sdp
::
toString
()
const
{
_StrPrinter
printer
;
for
(
auto
&
item
:
items
)
{
printer
<<
item
->
getKey
()
<<
"="
<<
item
->
toString
()
<<
"
\r\n
"
;
...
...
@@ -215,7 +215,7 @@ string RtcMedia::toString() const {
return
std
::
move
(
printer
);
}
RtpDirection
RtcMedia
::
getDirection
()
const
{
RtpDirection
RtcMedia
Sdp
::
getDirection
()
const
{
for
(
auto
&
item
:
items
)
{
auto
attr
=
dynamic_pointer_cast
<
SdpAttr
>
(
item
);
if
(
attr
)
{
...
...
@@ -790,10 +790,10 @@ void test_sdp(){
"a=sctpmap:5000 webrtc-datachannel 1024
\n
"
"a=sctp-port:5000"
;
RtcSdp
sdp1
;
RtcS
essionS
dp
sdp1
;
sdp1
.
parse
(
str1
);
RtcSdp
sdp2
;
RtcS
essionS
dp
sdp2
;
sdp2
.
parse
(
str2
);
for
(
auto
media
:
sdp1
.
medias
)
{
...
...
webrtc/Sdp.h
查看文件 @
26432695
...
...
@@ -421,7 +421,7 @@ public:
const
char
*
getKey
()
const
override
{
return
"candidate"
;}
};
class
RtcMedia
{
class
RtcMedia
Sdp
{
public
:
vector
<
SdpItem
::
Ptr
>
items
;
string
toString
()
const
;
...
...
@@ -430,15 +430,83 @@ public:
RtpDirection
getDirection
()
const
;
};
class
RtcSdp
{
class
RtcS
essionS
dp
{
public
:
vector
<
SdpItem
::
Ptr
>
items
;
vector
<
RtcMedia
>
medias
;
vector
<
RtcMedia
Sdp
>
medias
;
void
parse
(
const
string
&
str
);
string
toString
()
const
;
};
//////////////////////////////////////////////////////////////////
//ssrc类型
enum
class
RtcSSRCType
{
rtp
=
0
,
rtx
,
sim_low
,
sim_mid
,
ssrc_high
};
//ssrc相关信息
class
RtcSSRC
{
public
:
RtcSSRCType
type
;
string
cname
;
string
msid
;
string
mslabel
;
string
label
;
};
//rtc传输编码方案
class
RtcPlan
{
public
:
uint8_t
pt
;
string
codec
;
uint32_t
sample_rate
;
//音频时有效
uint32_t
channel
=
0
;
vector
<
std
::
pair
<
string
/*key*/
,
string
/*value*/
>
>
fmtp
;
vector
<
string
>
rtcp_fb
;
};
//rtc 媒体描述
class
RtcCodec
{
public
:
TrackType
type
;
string
mid
;
uint16_t
port
;
string
proto
;
//////// rtp ////////
vector
<
RtcPlan
>
plan
;
SdpConnection
rtp_addr
;
RtpDirection
direction
;
RtcSSRC
ssrc
;
//////// rtx - rtcp ////////
bool
rtcp_mux
;
bool
rtcp_rsize
;
uint32_t
rtx_ssrc
;
SdpAttrRtcp
rtcp_addr
;
//////// ice ////////
bool
ice_trickle
;
bool
ice_lite
;
bool
ice_renomination
;
string
ice_ufrag
;
string
ice_pwd
;
std
::
vector
<
SdpAttrCandidate
>
candidate
;
//////// dtls ////////
DtlsRole
role
;
SdpAttrFingerprint
fingerprint
;
//////// extmap ////////
vector
<
SdpAttrExtmap
>
extmap
;
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论