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
042981c4
Commit
042981c4
authored
May 30, 2019
by
xiongziliang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
完善rtsp服务器错误提示
parent
c8b192fa
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
18 行增加
和
18 行删除
+18
-18
src/MediaFile/MediaReader.cpp
+1
-1
src/Player/PlayerProxy.cpp
+1
-1
src/Rtsp/RtspSession.cpp
+0
-0
src/Rtsp/RtspSession.h
+16
-16
没有找到文件。
src/MediaFile/MediaReader.cpp
查看文件 @
042981c4
...
@@ -172,7 +172,7 @@ void MediaReader::startReadMP4() {
...
@@ -172,7 +172,7 @@ void MediaReader::startReadMP4() {
return
true
;
return
true
;
}
}
bool
MediaReader
::
close
(
MediaSource
&
sender
,
bool
force
){
bool
MediaReader
::
close
(
MediaSource
&
sender
,
bool
force
){
if
(
!
force
&&
_mediaMuxer
->
readerCount
()
!=
0
){
if
(
!
_mediaMuxer
||
(
!
force
&&
_mediaMuxer
->
readerCount
()
!=
0
)
){
return
false
;
return
false
;
}
}
_timer
.
reset
();
_timer
.
reset
();
...
...
src/Player/PlayerProxy.cpp
查看文件 @
042981c4
...
@@ -146,7 +146,7 @@ void PlayerProxy::rePlay(const string &strUrl,int iFailedCnt){
...
@@ -146,7 +146,7 @@ void PlayerProxy::rePlay(const string &strUrl,int iFailedCnt){
},
getPoller
());
},
getPoller
());
}
}
bool
PlayerProxy
::
close
(
MediaSource
&
sender
,
bool
force
)
{
bool
PlayerProxy
::
close
(
MediaSource
&
sender
,
bool
force
)
{
if
(
!
force
&&
_mediaMuxer
->
readerCount
()
!=
0
){
if
(
!
_mediaMuxer
||
(
!
force
&&
_mediaMuxer
->
readerCount
()
!=
0
)
){
return
false
;
return
false
;
}
}
...
...
src/Rtsp/RtspSession.cpp
查看文件 @
042981c4
差异被折叠。
点击展开。
src/Rtsp/RtspSession.h
查看文件 @
042981c4
...
@@ -120,17 +120,17 @@ protected:
...
@@ -120,17 +120,17 @@ protected:
*/
*/
virtual
void
onRtcpPacket
(
int
iTrackidx
,
SdpTrack
::
Ptr
&
track
,
unsigned
char
*
pucData
,
unsigned
int
uiLen
);
virtual
void
onRtcpPacket
(
int
iTrackidx
,
SdpTrack
::
Ptr
&
track
,
unsigned
char
*
pucData
,
unsigned
int
uiLen
);
private
:
private
:
bool
handleReq_Options
(
const
Parser
&
parser
);
//处理options方法
void
handleReq_Options
(
const
Parser
&
parser
);
//处理options方法
bool
handleReq_Describe
(
const
Parser
&
parser
);
//处理describe方法
void
handleReq_Describe
(
const
Parser
&
parser
);
//处理describe方法
bool
handleReq_ANNOUNCE
(
const
Parser
&
parser
);
//处理options方法
void
handleReq_ANNOUNCE
(
const
Parser
&
parser
);
//处理options方法
bool
handleReq_RECORD
(
const
Parser
&
parser
);
//处理options方法
void
handleReq_RECORD
(
const
Parser
&
parser
);
//处理options方法
bool
handleReq_Setup
(
const
Parser
&
parser
);
//处理setup方法
void
handleReq_Setup
(
const
Parser
&
parser
);
//处理setup方法
bool
handleReq_Play
(
const
Parser
&
parser
);
//处理play方法
void
handleReq_Play
(
const
Parser
&
parser
);
//处理play方法
bool
handleReq_Pause
(
const
Parser
&
parser
);
//处理pause方法
void
handleReq_Pause
(
const
Parser
&
parser
);
//处理pause方法
bool
handleReq_Teardown
(
const
Parser
&
parser
);
//处理teardown方法
void
handleReq_Teardown
(
const
Parser
&
parser
);
//处理teardown方法
bool
handleReq_Get
(
const
Parser
&
parser
);
//处理Get方法
void
handleReq_Get
(
const
Parser
&
parser
);
//处理Get方法
bool
handleReq_Post
(
const
Parser
&
parser
);
//处理Post方法
void
handleReq_Post
(
const
Parser
&
parser
);
//处理Post方法
bool
handleReq_SET_PARAMETER
(
const
Parser
&
parser
);
//处理SET_PARAMETER方法
void
handleReq_SET_PARAMETER
(
const
Parser
&
parser
);
//处理SET_PARAMETER方法
void
inline
send_StreamNotFound
();
//rtsp资源未找到
void
inline
send_StreamNotFound
();
//rtsp资源未找到
void
inline
send_UnsupportedTransport
();
//不支持的传输模式
void
inline
send_UnsupportedTransport
();
//不支持的传输模式
...
@@ -145,11 +145,11 @@ private:
...
@@ -145,11 +145,11 @@ private:
inline
void
startListenPeerUdpData
(
int
iTrackIdx
);
inline
void
startListenPeerUdpData
(
int
iTrackIdx
);
//认证相关
//认证相关
static
void
onAuthSuccess
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
);
void
onAuthSuccess
(
);
static
void
onAuthFailed
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
);
void
onAuthFailed
(
const
string
&
realm
,
const
string
&
why
,
bool
close
=
true
);
static
void
onAuthUser
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
,
const
string
&
authorization
);
void
onAuthUser
(
const
string
&
realm
,
const
string
&
authorization
);
static
void
onAuthBasic
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
,
const
string
&
strBase64
);
void
onAuthBasic
(
const
string
&
realm
,
const
string
&
strBase64
);
static
void
onAuthDigest
(
const
weak_ptr
<
RtspSession
>
&
weakSelf
,
const
string
&
realm
,
const
string
&
strMd5
);
void
onAuthDigest
(
const
string
&
realm
,
const
string
&
strMd5
);
inline
void
sendRtpPacket
(
const
RtpPacket
::
Ptr
&
pkt
);
inline
void
sendRtpPacket
(
const
RtpPacket
::
Ptr
&
pkt
);
bool
sendRtspResponse
(
const
string
&
res_code
,
const
std
::
initializer_list
<
string
>
&
header
,
const
string
&
sdp
=
""
,
const
char
*
protocol
=
"RTSP/1.0"
);
bool
sendRtspResponse
(
const
string
&
res_code
,
const
std
::
initializer_list
<
string
>
&
header
,
const
string
&
sdp
=
""
,
const
char
*
protocol
=
"RTSP/1.0"
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论