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
46722546
Commit
46722546
authored
Jul 20, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
4b34e58d
09d5fdaf
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
61 行增加
和
48 行删除
+61
-48
src/Http/HttpRequestSplitter.h
+2
-1
src/Rtp/Decoder.cpp
+2
-1
src/Rtp/GB28181Process.cpp
+1
-22
src/Rtp/GB28181Process.h
+1
-3
src/Rtp/PSDecoder.cpp
+26
-1
src/Rtp/PSDecoder.h
+10
-1
src/Rtsp/RtpReceiver.h
+19
-19
没有找到文件。
src/Http/HttpRequestSplitter.h
查看文件 @
46722546
...
...
@@ -27,8 +27,9 @@ public:
* 添加数据
* @param data 需要添加的数据
* @param len 数据长度
* @warning 实际内存需保证不小于 len + 1, 内部使用 strstr 进行查找, 为防止查找越界, 会在 @p len + 1 的位置设置 '\0' 结束符.
*/
virtual
void
input
(
const
char
*
data
,
size_t
len
);
virtual
void
input
(
const
char
*
data
,
size_t
len
);
protected
:
/**
...
...
src/Rtp/Decoder.cpp
查看文件 @
46722546
...
...
@@ -203,7 +203,8 @@ void DecoderImp::onDecode(int stream,int codecid,int flags,int64_t pts,int64_t d
}
default
:
if
(
codecid
!=
0
)
{
// 海康的 PS 流中会有 codecid 为 0xBD 的包
if
(
codecid
!=
0
&&
codecid
!=
0xBD
)
{
if
(
_last_unsported_print
.
elapsedTime
()
/
1000
>
5
)
{
_last_unsported_print
.
resetTime
();
WarnL
<<
"unsupported codec type:"
<<
getCodecName
(
codecid
)
<<
" "
<<
(
int
)
codecid
;
...
...
src/Rtp/GB28181Process.cpp
查看文件 @
46722546
...
...
@@ -150,27 +150,6 @@ bool GB28181Process::inputRtp(bool, const char *data, size_t data_len) {
return
ref
->
inputRtp
(
TrackVideo
,
(
unsigned
char
*
)
data
,
data_len
);
}
const
char
*
GB28181Process
::
onSearchPacketTail
(
const
char
*
packet
,
size_t
bytes
){
try
{
auto
ret
=
_decoder
->
input
((
uint8_t
*
)
packet
,
bytes
);
if
(
ret
>=
0
)
{
//解析成功全部或部分
return
packet
+
ret
;
}
//解析失败,丢弃所有数据
return
packet
+
bytes
;
}
catch
(
std
::
exception
&
ex
)
{
InfoL
<<
"解析ps或ts异常: bytes="
<<
bytes
<<
" ,exception="
<<
ex
.
what
()
<<
" ,hex="
<<
hexdump
((
uint8_t
*
)
packet
,
MIN
(
bytes
,
32
));
if
(
remainDataSize
()
>
256
*
1024
)
{
//缓存太多数据无法处理则上抛异常
throw
;
}
return
nullptr
;
}
}
void
GB28181Process
::
onRtpDecode
(
const
Frame
::
Ptr
&
frame
)
{
if
(
frame
->
getCodecId
()
!=
CodecInvalid
)
{
//这里不是ps或ts
...
...
@@ -197,7 +176,7 @@ void GB28181Process::onRtpDecode(const Frame::Ptr &frame) {
}
if
(
_decoder
)
{
HttpRequestSplitter
::
input
(
frame
->
data
(
),
frame
->
size
());
_decoder
->
input
(
reinterpret_cast
<
const
uint8_t
*>
(
frame
->
data
()
),
frame
->
size
());
}
}
...
...
src/Rtp/GB28181Process.h
查看文件 @
46722546
...
...
@@ -22,7 +22,7 @@
namespace
mediakit
{
class
RtpReceiverImp
;
class
GB28181Process
:
public
HttpRequestSplitter
,
public
ProcessInterface
{
class
GB28181Process
:
public
ProcessInterface
{
public
:
typedef
std
::
shared_ptr
<
GB28181Process
>
Ptr
;
GB28181Process
(
const
MediaInfo
&
media_info
,
MediaSinkInterface
*
interface
);
...
...
@@ -38,8 +38,6 @@ public:
protected
:
void
onRtpSorted
(
RtpPacket
::
Ptr
rtp
);
const
char
*
onSearchPacketTail
(
const
char
*
data
,
size_t
len
)
override
;
ssize_t
onRecvHeader
(
const
char
*
data
,
size_t
len
)
override
{
return
0
;
};
private
:
void
onRtpDecode
(
const
Frame
::
Ptr
&
frame
);
...
...
src/Rtp/PSDecoder.cpp
查看文件 @
46722546
...
...
@@ -45,7 +45,8 @@ PSDecoder::~PSDecoder() {
}
ssize_t
PSDecoder
::
input
(
const
uint8_t
*
data
,
size_t
bytes
)
{
return
ps_demuxer_input
((
struct
ps_demuxer_t
*
)
_ps_demuxer
,
data
,
bytes
);
HttpRequestSplitter
::
input
(
reinterpret_cast
<
const
char
*>
(
data
),
bytes
);
return
bytes
;
}
void
PSDecoder
::
setOnDecode
(
Decoder
::
onDecode
cb
)
{
...
...
@@ -56,5 +57,28 @@ void PSDecoder::setOnStream(Decoder::onStream cb) {
_on_stream
=
std
::
move
(
cb
);
}
const
char
*
PSDecoder
::
onSearchPacketTail
(
const
char
*
data
,
size_t
len
)
{
try
{
auto
ret
=
ps_demuxer_input
(
static_cast
<
struct
ps_demuxer_t
*>
(
_ps_demuxer
),
reinterpret_cast
<
const
uint8_t
*>
(
data
),
len
);
if
(
ret
>=
0
)
{
//解析成功全部或部分
return
data
+
ret
;
}
//解析失败,丢弃所有数据
return
data
+
len
;
}
catch
(
std
::
exception
&
ex
)
{
InfoL
<<
"解析 ps 异常: bytes="
<<
len
<<
", exception="
<<
ex
.
what
()
<<
", hex="
<<
hexdump
(
data
,
MIN
(
len
,
32
));
if
(
remainDataSize
()
>
256
*
1024
)
{
//缓存太多数据无法处理则上抛异常
throw
;
}
return
nullptr
;
}
}
}
//namespace mediakit
#endif//#if defined(ENABLE_RTPPROXY)
\ No newline at end of file
src/Rtp/PSDecoder.h
查看文件 @
46722546
...
...
@@ -14,17 +14,26 @@
#if defined(ENABLE_RTPPROXY)
#include <stdint.h>
#include "Decoder.h"
#include "Http/HttpRequestSplitter.h"
namespace
mediakit
{
//ps解析器
class
PSDecoder
:
public
Decoder
{
class
PSDecoder
:
public
Decoder
,
private
HttpRequestSplitter
{
public
:
PSDecoder
();
~
PSDecoder
();
ssize_t
input
(
const
uint8_t
*
data
,
size_t
bytes
)
override
;
void
setOnDecode
(
onDecode
cb
)
override
;
void
setOnStream
(
onStream
cb
)
override
;
// HttpRequestSplitter interface
private:
using
HttpRequestSplitter
::
input
;
const
char
*
onSearchPacketTail
(
const
char
*
data
,
size_t
len
)
override
;
ssize_t
onRecvHeader
(
const
char
*
,
size_t
)
override
{
return
0
;
};
private
:
void
*
_ps_demuxer
=
nullptr
;
onDecode
_on_decode
;
...
...
src/Rtsp/RtpReceiver.h
查看文件 @
46722546
...
...
@@ -37,7 +37,7 @@ public:
*/
void
clear
()
{
_seq_cycle_count
=
0
;
_
rtp
_sort_cache_map
.
clear
();
_
pkt
_sort_cache_map
.
clear
();
_next_seq_out
=
0
;
_max_sort_size
=
kMin
;
}
...
...
@@ -46,7 +46,7 @@ public:
* 获取排序缓存长度
*/
size_t
getJitterSize
()
const
{
return
_
rtp
_sort_cache_map
.
size
();
return
_
pkt
_sort_cache_map
.
size
();
}
/**
...
...
@@ -67,27 +67,27 @@ public:
//过滤seq回退包(回环包除外)
return
;
}
}
else
if
(
_next_seq_out
&&
seq
-
_next_seq_out
>
(
0xFFFF
>>
1
))
{
}
else
if
(
_next_seq_out
&&
seq
-
_next_seq_out
>
(
(
std
::
numeric_limits
<
SEQ
>::
max
)()
>>
1
))
{
//过滤seq跳变非常大的包(防止回环时乱序时收到非常大的seq)
return
;
}
//放入排序缓存
_
rtp
_sort_cache_map
.
emplace
(
seq
,
std
::
move
(
packet
));
_
pkt
_sort_cache_map
.
emplace
(
seq
,
std
::
move
(
packet
));
//尝试输出排序后的包
tryPopPacket
();
}
void
flush
(){
//清空缓存
while
(
!
_
rtp
_sort_cache_map
.
empty
())
{
popIterator
(
_
rtp
_sort_cache_map
.
begin
());
while
(
!
_
pkt
_sort_cache_map
.
empty
())
{
popIterator
(
_
pkt
_sort_cache_map
.
begin
());
}
}
private
:
void
popPacket
()
{
auto
it
=
_
rtp
_sort_cache_map
.
begin
();
auto
it
=
_
pkt
_sort_cache_map
.
begin
();
if
(
it
->
first
>=
_next_seq_out
)
{
//过滤回跳包
popIterator
(
it
);
...
...
@@ -96,37 +96,37 @@ private:
if
(
_next_seq_out
-
it
->
first
>
(
0xFFFF
>>
1
))
{
//产生回环了
if
(
_
rtp
_sort_cache_map
.
size
()
<
2
*
kMin
)
{
if
(
_
pkt
_sort_cache_map
.
size
()
<
2
*
kMin
)
{
//等足够多的数据后才处理回环, 因为后面还可能出现大的SEQ
return
;
}
++
_seq_cycle_count
;
//找到大的SEQ并清空掉,然后从小的SEQ重新开始排序
auto
hit
=
_
rtp_sort_cache_map
.
upper_bound
((
SEQ
)
(
_next_seq_out
-
_rtp
_sort_cache_map
.
size
()));
while
(
hit
!=
_
rtp
_sort_cache_map
.
end
())
{
auto
hit
=
_
pkt_sort_cache_map
.
upper_bound
((
SEQ
)
(
_next_seq_out
-
_pkt
_sort_cache_map
.
size
()));
while
(
hit
!=
_
pkt
_sort_cache_map
.
end
())
{
//回环前,清空剩余的大的SEQ的数据
_cb
(
hit
->
first
,
hit
->
second
);
hit
=
_
rtp
_sort_cache_map
.
erase
(
hit
);
hit
=
_
pkt
_sort_cache_map
.
erase
(
hit
);
}
//下一个回环的数据
popIterator
(
_
rtp
_sort_cache_map
.
begin
());
popIterator
(
_
pkt
_sort_cache_map
.
begin
());
return
;
}
//删除回跳的数据包
_
rtp
_sort_cache_map
.
erase
(
it
);
_
pkt
_sort_cache_map
.
erase
(
it
);
}
void
popIterator
(
typename
map
<
SEQ
,
T
>::
iterator
it
)
{
auto
seq
=
it
->
first
;
auto
data
=
std
::
move
(
it
->
second
);
_
rtp
_sort_cache_map
.
erase
(
it
);
_
pkt
_sort_cache_map
.
erase
(
it
);
_next_seq_out
=
seq
+
1
;
_cb
(
seq
,
data
);
}
void
tryPopPacket
()
{
int
count
=
0
;
while
((
!
_
rtp_sort_cache_map
.
empty
()
&&
_rtp
_sort_cache_map
.
begin
()
->
first
==
_next_seq_out
))
{
while
((
!
_
pkt_sort_cache_map
.
empty
()
&&
_pkt
_sort_cache_map
.
begin
()
->
first
==
_next_seq_out
))
{
//找到下个包,直接输出
popPacket
();
++
count
;
...
...
@@ -134,7 +134,7 @@ private:
if
(
count
)
{
setSortSize
();
}
else
if
(
_
rtp
_sort_cache_map
.
size
()
>
_max_sort_size
)
{
}
else
if
(
_
pkt
_sort_cache_map
.
size
()
>
_max_sort_size
)
{
//排序缓存溢出,不再继续排序
popPacket
();
setSortSize
();
...
...
@@ -142,7 +142,7 @@ private:
}
void
setSortSize
()
{
_max_sort_size
=
kMin
+
_
rtp
_sort_cache_map
.
size
();
_max_sort_size
=
kMin
+
_
pkt
_sort_cache_map
.
size
();
if
(
_max_sort_size
>
kMax
)
{
_max_sort_size
=
kMax
;
}
...
...
@@ -155,8 +155,8 @@ private:
size_t
_seq_cycle_count
=
0
;
//排序缓存长度
size_t
_max_sort_size
=
kMin
;
//
rtp
排序缓存,根据seq排序
map
<
SEQ
,
T
>
_
rtp
_sort_cache_map
;
//
pkt
排序缓存,根据seq排序
map
<
SEQ
,
T
>
_
pkt
_sort_cache_map
;
//回调
function
<
void
(
SEQ
seq
,
T
&
packet
)
>
_cb
;
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论