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
99a1d06d
Commit
99a1d06d
authored
Apr 22, 2021
by
xia-chu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修正TWCC错误理解
parent
90ad90cb
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
39 行增加
和
12 行删除
+39
-12
src/Rtcp/RtcpFCI.cpp
+38
-11
src/Rtcp/RtcpFCI.h
+1
-1
没有找到文件。
src/Rtcp/RtcpFCI.cpp
查看文件 @
99a1d06d
...
@@ -261,9 +261,35 @@ uint32_t FCI_TWCC::getReferenceTime() const {
...
@@ -261,9 +261,35 @@ uint32_t FCI_TWCC::getReferenceTime() const {
ret
|=
ref_time
[
2
];
ret
|=
ref_time
[
2
];
return
ret
;
return
ret
;
}
}
//3.1.5. Receive Delta
static
uint16_t
getRecvDelta
(
SymbolStatus
status
,
uint8_t
*&
ptr
,
const
uint8_t
*
end
){
//
uint16_t
delta
=
0
;
// Deltas are represented as multiples of 250us:
//
// o If the "Packet received, small delta" symbol has been appended to
// the status list, an 8-bit unsigned receive delta will be appended
// to recv delta list, representing a delta in the range [0, 63.75]
// ms.
//
// o If the "Packet received, large or negative delta" symbol has been
// appended to the status list, a 16-bit signed receive delta will be
// appended to recv delta list, representing a delta in the range
// [-8192.0, 8191.75] ms.
//
// o If the delta exceeds even the larger limits, a new feedback
// message must be used, where the 24-bit base receive delta can
// cover very large gaps.
//
// The smaller receive delta upper bound of 63.75 ms means that this is
// only viable at about 1000/25.5 ~= 16 packets per second and above.
// With a packet size of 1200 bytes/packet that amounts to a bitrate of
// about 150 kbit/s.
//
// The 0.25 ms resolution means that up to 4000 packets per second can
// be represented. With a 1200 bytes/packet payload, that amounts to
// 38.4 Mbit/s payload bandwidth.
static
int16_t
getRecvDelta
(
SymbolStatus
status
,
uint8_t
*&
ptr
,
const
uint8_t
*
end
){
int16_t
delta
=
0
;
switch
(
status
)
{
switch
(
status
)
{
case
SymbolStatus
:
:
not_received
:
{
case
SymbolStatus
:
:
not_received
:
{
//丢包, recv delta为0个字节
//丢包, recv delta为0个字节
...
@@ -298,29 +324,29 @@ map<uint16_t, std::pair<SymbolStatus, uint32_t/*stamp*/> > FCI_TWCC::getPacketCh
...
@@ -298,29 +324,29 @@ map<uint16_t, std::pair<SymbolStatus, uint32_t/*stamp*/> > FCI_TWCC::getPacketCh
auto
end
=
(
uint8_t
*
)
this
+
total_size
;
auto
end
=
(
uint8_t
*
)
this
+
total_size
;
CHECK
(
ptr
<
end
);
CHECK
(
ptr
<
end
);
auto
seq
=
base_seq
;
auto
seq
=
base_seq
;
auto
stamp
=
getReferenceTime
();
for
(
uint8_t
i
=
0
;
i
<
pkt_status_count
;)
{
for
(
uint8_t
i
=
0
;
i
<
pkt_status_count
;)
{
CHECK
(
ptr
+
RunLengthChunk
::
kSize
<=
end
)
CHECK
(
ptr
+
RunLengthChunk
::
kSize
<=
end
)
RunLengthChunk
*
chunk
=
(
RunLengthChunk
*
)
ptr
;
RunLengthChunk
*
chunk
=
(
RunLengthChunk
*
)
ptr
;
if
(
!
chunk
->
type
)
{
if
(
!
chunk
->
type
)
{
//RunLengthChunk
//RunLengthChunk
ptr
+=
RunLengthChunk
::
kSize
;
for
(
auto
j
=
0
;
j
<
chunk
->
getRunLength
();
++
j
)
{
for
(
auto
j
=
0
;
j
<
chunk
->
getRunLength
();
++
j
)
{
ret
.
emplace
(
seq
++
,
std
::
make_pair
((
SymbolStatus
)
chunk
->
symbol
,
stamp
));
ret
.
emplace
(
seq
++
,
std
::
make_pair
((
SymbolStatus
)
chunk
->
symbol
,
0
));
stamp
+=
getRecvDelta
((
SymbolStatus
)
chunk
->
symbol
,
ptr
,
end
);
++
i
;
++
i
;
}
}
}
else
{
}
else
{
//StatusVecChunk
//StatusVecChunk
StatusVecChunk
*
chunk
=
(
StatusVecChunk
*
)
ptr
;
StatusVecChunk
*
chunk
=
(
StatusVecChunk
*
)
ptr
;
ptr
+=
StatusVecChunk
::
kSize
;
for
(
auto
&
symbol
:
chunk
->
getSymbolList
())
{
for
(
auto
&
symbol
:
chunk
->
getSymbolList
())
{
ret
.
emplace
(
seq
++
,
std
::
make_pair
(
symbol
,
stamp
));
ret
.
emplace
(
seq
++
,
std
::
make_pair
(
symbol
,
0
));
stamp
+=
getRecvDelta
(
symbol
,
ptr
,
end
);
++
i
;
++
i
;
}
}
}
}
ptr
+=
2
;
}
for
(
auto
&
pr
:
ret
)
{
CHECK
(
ptr
<=
end
)
pr
.
second
.
second
=
250
*
getRecvDelta
(
pr
.
second
.
first
,
ptr
,
end
);
}
}
return
ret
;
return
ret
;
}
}
...
@@ -328,8 +354,9 @@ map<uint16_t, std::pair<SymbolStatus, uint32_t/*stamp*/> > FCI_TWCC::getPacketCh
...
@@ -328,8 +354,9 @@ map<uint16_t, std::pair<SymbolStatus, uint32_t/*stamp*/> > FCI_TWCC::getPacketCh
string
FCI_TWCC
::
dumpString
(
size_t
total_size
)
const
{
string
FCI_TWCC
::
dumpString
(
size_t
total_size
)
const
{
_StrPrinter
printer
;
_StrPrinter
printer
;
auto
map
=
getPacketChunkList
(
total_size
);
auto
map
=
getPacketChunkList
(
total_size
);
printer
<<
"twcc fci, base_seq:"
<<
base_seq
<<
",pkt_status_count:"
<<
pkt_status_count
<<
", ref time:"
<<
getReferenceTime
()
<<
", fb count:"
<<
(
int
)
fb_pkt_count
<<
"
\n
"
;
for
(
auto
&
pr
:
map
)
{
for
(
auto
&
pr
:
map
)
{
printer
<<
"
seq:"
<<
pr
.
first
<<
", packet status:"
<<
(
int
)(
pr
.
second
.
first
)
<<
", stamp
:"
<<
pr
.
second
.
second
<<
"
\n
"
;
printer
<<
"
rtp seq:"
<<
pr
.
first
<<
", packet status:"
<<
(
int
)(
pr
.
second
.
first
)
<<
", delta
:"
<<
pr
.
second
.
second
<<
"
\n
"
;
}
}
return
std
::
move
(
printer
);
return
std
::
move
(
printer
);
}
}
...
...
src/Rtcp/RtcpFCI.h
查看文件 @
99a1d06d
...
@@ -406,7 +406,7 @@ public:
...
@@ -406,7 +406,7 @@ public:
void
net2Host
(
size_t
total_size
);
void
net2Host
(
size_t
total_size
);
uint32_t
getReferenceTime
()
const
;
uint32_t
getReferenceTime
()
const
;
map
<
uint16_t
,
std
::
pair
<
SymbolStatus
,
uint32_t
/*
stamp
*/
>
>
getPacketChunkList
(
size_t
total_size
)
const
;
map
<
uint16_t
,
std
::
pair
<
SymbolStatus
,
uint32_t
/*
recv delta 微秒
*/
>
>
getPacketChunkList
(
size_t
total_size
)
const
;
string
dumpString
(
size_t
total_size
)
const
;
string
dumpString
(
size_t
total_size
)
const
;
}
PACKED
;
}
PACKED
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论