修复rtsp相关bug

This commit is contained in:
xiongziliang 2018-12-21 17:12:26 +08:00
parent 50e1dddd12
commit 5ac1fb73a7
2 changed files with 21 additions and 21 deletions

View File

@ -1,4 +1,4 @@
/* /*
* MIT License * MIT License
* *
* Copyright (c) 2016 xiongziliang <771730766@qq.com> * Copyright (c) 2016 xiongziliang <771730766@qq.com>
@ -149,6 +149,10 @@ void RtspSession::onRecv(const Buffer::Ptr &pBuf) {
void RtspSession::onWholeRtspPacket(Parser &parser) { void RtspSession::onWholeRtspPacket(Parser &parser) {
string strCmd = parser.Method(); //提取出请求命令字 string strCmd = parser.Method(); //提取出请求命令字
_iCseq = atoi(parser["CSeq"].data()); _iCseq = atoi(parser["CSeq"].data());
if(_strContentBase.empty()){
_strContentBase = parser.Url();
_mediaInfo.parse(parser.FullUrl());
}
typedef bool (RtspSession::*rtsp_request_handler)(const Parser &parser); typedef bool (RtspSession::*rtsp_request_handler)(const Parser &parser);
static unordered_map<string, rtsp_request_handler> s_handler_map; static unordered_map<string, rtsp_request_handler> s_handler_map;
@ -213,10 +217,6 @@ bool RtspSession::handleReq_Options(const Parser &parser) {
} }
bool RtspSession::handleReq_ANNOUNCE(const Parser &parser) { bool RtspSession::handleReq_ANNOUNCE(const Parser &parser) {
_strSdp = parser.Content();
//解析url获取媒体名称
_mediaInfo.parse(parser.FullUrl());
auto src = dynamic_pointer_cast<RtmpMediaSource>(MediaSource::find(RTSP_SCHEMA, auto src = dynamic_pointer_cast<RtmpMediaSource>(MediaSource::find(RTSP_SCHEMA,
_mediaInfo._vhost, _mediaInfo._vhost,
_mediaInfo._app, _mediaInfo._app,
@ -233,8 +233,8 @@ bool RtspSession::handleReq_ANNOUNCE(const Parser &parser) {
} }
_strSession = makeRandStr(12); _strSession = makeRandStr(12);
_aTrackInfo = SdpAttr(_strSdp).getAvailableTrack(); _strSdp = parser.Content();
_strUrl = parser.Url(); _aTrackInfo = SdpAttr(_strSdp).getAvailableTrack();
_pushSrc = std::make_shared<RtspToRtmpMediaSource>(_mediaInfo._vhost,_mediaInfo._app,_mediaInfo._streamid); _pushSrc = std::make_shared<RtspToRtmpMediaSource>(_mediaInfo._vhost,_mediaInfo._app,_mediaInfo._streamid);
_pushSrc->setListener(dynamic_pointer_cast<MediaSourceEvent>(shared_from_this())); _pushSrc->setListener(dynamic_pointer_cast<MediaSourceEvent>(shared_from_this()));
@ -264,7 +264,7 @@ bool RtspSession::handleReq_RECORD(const Parser &parser){
shutdown(); shutdown();
return; return;
} }
rtp_info << "url=" << _strUrl << "/" << track->_control_surffix << ","; rtp_info << "url=" << _strContentBase << "/" << track->_control_surffix << ",";
} }
rtp_info.pop_back(); rtp_info.pop_back();
@ -299,10 +299,6 @@ bool RtspSession::handleReq_RECORD(const Parser &parser){
bool RtspSession::handleReq_Describe(const Parser &parser) { bool RtspSession::handleReq_Describe(const Parser &parser) {
//解析url获取媒体名称
_strUrl = parser.Url();
_mediaInfo.parse(parser.FullUrl());
weak_ptr<RtspSession> weakSelf = dynamic_pointer_cast<RtspSession>(shared_from_this()); weak_ptr<RtspSession> weakSelf = dynamic_pointer_cast<RtspSession>(shared_from_this());
auto authorization = parser["Authorization"]; auto authorization = parser["Authorization"];
@ -354,7 +350,7 @@ void RtspSession::onAuthSuccess(const weak_ptr<RtspSession> &weakSelf) {
return; return;
} }
strongSelf->sendRtspResponse("200 OK", strongSelf->sendRtspResponse("200 OK",
{"Content-Base",strongSelf->_strUrl, {"Content-Base",strongSelf->_strContentBase,
"x-Accept-Retransmit","our-retransmit", "x-Accept-Retransmit","our-retransmit",
"x-Accept-Dynamic-Rate","1" "x-Accept-Dynamic-Rate","1"
},strongSelf->_strSdp); },strongSelf->_strSdp);
@ -379,14 +375,12 @@ void RtspSession::onAuthFailed(const weak_ptr<RtspSession> &weakSelf,const strin
strongSelf->_strNonce = makeRandStr(32); strongSelf->_strNonce = makeRandStr(32);
strongSelf->sendRtspResponse("401 Unauthorized", strongSelf->sendRtspResponse("401 Unauthorized",
{"WWW-Authenticate", {"WWW-Authenticate",
StrPrinter << "Digest realm=\"" << realm << "\",nonce=\"" << strongSelf->_strNonce << "\"" }, StrPrinter << "Digest realm=\"" << realm << "\",nonce=\"" << strongSelf->_strNonce << "\"" });
strongSelf->_strSdp);
}else { }else {
//当然我们也支持base64认证,但是我们不建议这样做 //当然我们也支持base64认证,但是我们不建议这样做
strongSelf->sendRtspResponse("401 Unauthorized", strongSelf->sendRtspResponse("401 Unauthorized",
{"WWW-Authenticate", {"WWW-Authenticate",
StrPrinter << "Basic realm=\"" << realm << "\"" }, StrPrinter << "Basic realm=\"" << realm << "\"" });
strongSelf->_strSdp);
} }
}); });
} }
@ -541,7 +535,10 @@ inline void RtspSession::send_SessionNotFound() {
} }
bool RtspSession::handleReq_Setup(const Parser &parser) { bool RtspSession::handleReq_Setup(const Parser &parser) {
//处理setup命令该函数可能进入多次 //处理setup命令该函数可能进入多次
auto controlSuffix = parser.FullUrl().substr(1 + parser.FullUrl().rfind('/')); auto controlSuffix = parser.FullUrl().substr(_strContentBase.size());
if(controlSuffix.front() == '/'){
controlSuffix = controlSuffix.substr(1);
}
int trackIdx = getTrackIndexByControlSuffix(controlSuffix); int trackIdx = getTrackIndexByControlSuffix(controlSuffix);
if (trackIdx == -1) { if (trackIdx == -1) {
//未找到相应track //未找到相应track
@ -715,7 +712,7 @@ bool RtspSession::handleReq_Play(const Parser &parser) {
track->_seq = pMediaSrc->getSeqence(track->_type); track->_seq = pMediaSrc->getSeqence(track->_type);
track->_time_stamp = pMediaSrc->getTimeStamp(track->_type); track->_time_stamp = pMediaSrc->getTimeStamp(track->_type);
rtp_info << "url=" << _strUrl << "/" << track->_control_surffix << ";" rtp_info << "url=" << _strContentBase << "/" << track->_control_surffix << ";"
<< "seq=" << track->_seq << ";" << "seq=" << track->_seq << ";"
<< "rtptime=" << (int)(track->_time_stamp * (track->_samplerate / 1000)) << ","; << "rtptime=" << (int)(track->_time_stamp * (track->_samplerate / 1000)) << ",";
} }
@ -1183,6 +1180,9 @@ inline int RtspSession::getTrackIndexByControlSuffix(const string &controlSuffix
return i; return i;
} }
} }
if(_aTrackInfo.size() == 1){
return 0;
}
return -1; return -1;
} }

View File

@ -1,4 +1,4 @@
/* /*
* MIT License * MIT License
* *
* Copyright (c) 2016 xiongziliang <771730766@qq.com> * Copyright (c) 2016 xiongziliang <771730766@qq.com>
@ -152,7 +152,7 @@ private:
private: private:
Ticker _ticker; Ticker _ticker;
int _iCseq = 0; int _iCseq = 0;
string _strUrl; string _strContentBase;
string _strSdp; string _strSdp;
string _strSession; string _strSession;
bool _bFirstPlay = true; bool _bFirstPlay = true;