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
75a31329
Unverified
Commit
75a31329
authored
Aug 28, 2023
by
夏楚
Committed by
GitHub
Aug 28, 2023
Browse files
Options
Browse Files
Download
Plain Diff
合并主线分支 (#2793)
parents
e57463a1
0844f09e
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
31 行增加
和
10 行删除
+31
-10
3rdpart/ZLToolKit
+1
-1
server/WebApi.cpp
+1
-1
src/Http/HttpFileManager.cpp
+8
-1
src/Record/MP4Reader.cpp
+4
-2
src/Rtsp/Rtsp.cpp
+8
-3
src/Rtsp/RtspPlayer.cpp
+5
-0
src/Rtsp/UDPServer.cpp
+3
-1
www/webrtc/index.html
+1
-1
没有找到文件。
ZLToolKit
@
a4b8b5e0
Subproject commit
d2016522a0e4b1d8df51a78b7415fe148f7245ca
Subproject commit
a4b8b5e00aac6251254a513c7759605c0ba35f90
server/WebApi.cpp
查看文件 @
75a31329
...
...
@@ -537,7 +537,7 @@ void addStreamProxy(const string &vhost, const string &app, const string &stream
lock_guard
<
recursive_mutex
>
lck
(
s_proxyMapMtx
);
if
(
s_proxyMap
.
find
(
key
)
!=
s_proxyMap
.
end
())
{
//已经在拉流了
cb
(
SockException
(
Err_
success
),
key
);
cb
(
SockException
(
Err_
other
,
"This stream already exists"
),
key
);
return
;
}
//添加拉流代理
...
...
src/Http/HttpFileManager.cpp
查看文件 @
75a31329
...
...
@@ -524,7 +524,7 @@ static void accessFile(Session &sender, const Parser &parser, const MediaInfo &m
});
}
static
string
getFilePath
(
const
Parser
&
parser
,
const
MediaInfo
&
media_info
,
Session
&
sender
){
static
string
getFilePath
(
const
Parser
&
parser
,
const
MediaInfo
&
media_info
,
Session
&
sender
)
{
GET_CONFIG
(
bool
,
enableVhost
,
General
::
kEnableVhost
);
GET_CONFIG
(
string
,
rootPath
,
Http
::
kRootPath
);
GET_CONFIG_FUNC
(
StrCaseMap
,
virtualPathMap
,
Http
::
kVirtualPath
,
[](
const
string
&
str
)
{
...
...
@@ -549,6 +549,13 @@ static string getFilePath(const Parser &parser,const MediaInfo &media_info, Sess
}
}
auto
ret
=
File
::
absolutePath
(
enableVhost
?
media_info
.
vhost
+
url
:
url
,
path
);
auto
http_root
=
File
::
absolutePath
(
enableVhost
?
media_info
.
vhost
+
"/"
:
"/"
,
path
);
if
(
!
start_with
(
ret
,
http_root
))
{
// 访问的http文件不得在http根目录之外
throw
std
::
runtime_error
(
"Attempting to access files outside of the http root directory"
);
}
// 替换url,防止返回的目录索引网页被注入非法内容
const_cast
<
Parser
&>
(
parser
).
setUrl
(
"/"
+
ret
.
substr
(
http_root
.
size
()));
NoticeCenter
::
Instance
().
emitEvent
(
Broadcast
::
kBroadcastHttpBeforeAccess
,
parser
,
ret
,
static_cast
<
SockInfo
&>
(
sender
));
return
ret
;
}
...
...
src/Record/MP4Reader.cpp
查看文件 @
75a31329
...
...
@@ -184,8 +184,10 @@ bool MP4Reader::speed(MediaSource &sender, float speed) {
WarnL
<<
"播放速度取值范围非法:"
<<
speed
;
return
false
;
}
//设置播放速度后应该恢复播放
pause
(
sender
,
false
);
//_seek_ticker重置,赋值_seek_to
setCurrentStamp
(
getCurrentStamp
());
// 设置播放速度后应该恢复播放
_paused
=
false
;
if
(
_speed
==
speed
)
{
return
true
;
}
...
...
src/Rtsp/Rtsp.cpp
查看文件 @
75a31329
...
...
@@ -8,12 +8,13 @@
* may be found in the AUTHORS file in the root of the source tree.
*/
#include <cstdlib>
#include <cinttypes>
#include <random>
#include "Rtsp.h"
#include "Common/Parser.h"
#include "Common/config.h"
#include "Network/Socket.h"
#include <cinttypes>
#include <cstdlib>
using
namespace
std
;
using
namespace
toolkit
;
...
...
@@ -392,9 +393,13 @@ public:
private
:
void
setRange
(
uint16_t
start_pos
,
uint16_t
end_pos
)
{
std
::
mt19937
rng
(
std
::
random_device
{}());
lock_guard
<
recursive_mutex
>
lck
(
_pool_mtx
);
auto
it
=
_port_pair_pool
.
begin
();
while
(
start_pos
<
end_pos
)
{
_port_pair_pool
.
emplace_back
(
start_pos
++
);
// 随机端口排序,防止重启后导致分配的端口重复
_port_pair_pool
.
insert
(
it
,
start_pos
++
);
it
=
_port_pair_pool
.
begin
()
+
(
rng
()
%
(
1
+
_port_pair_pool
.
size
()));
}
}
...
...
src/Rtsp/RtspPlayer.cpp
查看文件 @
75a31329
...
...
@@ -483,6 +483,11 @@ void RtspPlayer::handleResPAUSE(const Parser &parser, int type) {
}
void
RtspPlayer
::
onWholeRtspPacket
(
Parser
&
parser
)
{
if
(
!
start_with
(
parser
.
method
(),
"RTSP"
))
{
// 不是rtsp回复,忽略
WarnL
<<
"Not rtsp response: "
<<
parser
.
method
();
return
;
}
try
{
decltype
(
_on_response
)
func
;
_on_response
.
swap
(
func
);
...
...
src/Rtsp/UDPServer.cpp
查看文件 @
75a31329
...
...
@@ -82,10 +82,12 @@ void UDPServer::onRecv(int interleaved, const Buffer::Ptr &buf, struct sockaddr*
return
;
}
auto
&
ref
=
it0
->
second
;
for
(
auto
it1
=
ref
.
begin
();
it1
!=
ref
.
end
();
++
it1
)
{
for
(
auto
it1
=
ref
.
begin
();
it1
!=
ref
.
end
();)
{
auto
&
func
=
it1
->
second
;
if
(
!
func
(
interleaved
,
buf
,
peer_addr
))
{
it1
=
ref
.
erase
(
it1
);
}
else
{
++
it1
;
}
}
if
(
ref
.
size
()
==
0
)
{
...
...
www/webrtc/index.html
查看文件 @
75a31329
...
...
@@ -322,7 +322,7 @@
json
.
then
((
json
)
=>
fillStreamList
(
json
));
}
setInterval
(()
=>
{
get_media_list
();
// get_media_list();
},
5000
);
</script>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论