mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 19:00:01 +08:00
修复rtsp推流带参相关的bug:#840
This commit is contained in:
parent
3da874b6a1
commit
a391d1e289
@ -213,6 +213,7 @@ void RtspSession::handleReq_ANNOUNCE(const Parser &parser) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto full_url = parser.FullUrl();
|
auto full_url = parser.FullUrl();
|
||||||
|
_content_base = full_url;
|
||||||
if(end_with(full_url,".sdp")){
|
if(end_with(full_url,".sdp")){
|
||||||
//去除.sdp后缀,防止EasyDarwin推流器强制添加.sdp后缀
|
//去除.sdp后缀,防止EasyDarwin推流器强制添加.sdp后缀
|
||||||
full_url = full_url.substr(0,full_url.length() - 4);
|
full_url = full_url.substr(0,full_url.length() - 4);
|
||||||
@ -242,7 +243,7 @@ void RtspSession::handleReq_ANNOUNCE(const Parser &parser) {
|
|||||||
_push_src = std::make_shared<RtspMediaSourceImp>(_media_info._vhost, _media_info._app, _media_info._streamid);
|
_push_src = std::make_shared<RtspMediaSourceImp>(_media_info._vhost, _media_info._app, _media_info._streamid);
|
||||||
_push_src->setListener(dynamic_pointer_cast<MediaSourceEvent>(shared_from_this()));
|
_push_src->setListener(dynamic_pointer_cast<MediaSourceEvent>(shared_from_this()));
|
||||||
_push_src->setSdp(sdpParser.toString());
|
_push_src->setSdp(sdpParser.toString());
|
||||||
sendRtspResponse("200 OK",{"Content-Base", _content_base + "/"});
|
sendRtspResponse("200 OK");
|
||||||
}
|
}
|
||||||
|
|
||||||
void RtspSession::handleReq_RECORD(const Parser &parser){
|
void RtspSession::handleReq_RECORD(const Parser &parser){
|
||||||
@ -614,7 +615,7 @@ void RtspSession::send_SessionNotFound() {
|
|||||||
|
|
||||||
void RtspSession::handleReq_Setup(const Parser &parser) {
|
void RtspSession::handleReq_Setup(const Parser &parser) {
|
||||||
//处理setup命令,该函数可能进入多次
|
//处理setup命令,该函数可能进入多次
|
||||||
int trackIdx = getTrackIndexByControlUrl(parser.Url());
|
int trackIdx = getTrackIndexByControlUrl(parser.FullUrl());
|
||||||
SdpTrack::Ptr &trackRef = _sdp_track[trackIdx];
|
SdpTrack::Ptr &trackRef = _sdp_track[trackIdx];
|
||||||
if (trackRef->_inited) {
|
if (trackRef->_inited) {
|
||||||
//已经初始化过该Track
|
//已经初始化过该Track
|
||||||
|
Loading…
Reference in New Issue
Block a user