2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_RTP_RTPPARSERTESTER_H_
|
|
|
|
|
#define SRC_RTP_RTPPARSERTESTER_H_
|
|
|
|
|
|
|
|
|
|
#include <memory>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <functional>
|
2017-05-02 17:15:12 +08:00
|
|
|
|
#include "Common/config.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "RtspPlayer.h"
|
2019-06-28 17:30:13 +08:00
|
|
|
|
#include "RtspDemuxer.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Poller/Timer.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 18:09:54 +08:00
|
|
|
|
class RtspPlayerImp: public PlayerImp<RtspPlayer,RtspDemuxer> {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<RtspPlayerImp> Ptr;
|
2019-04-01 10:16:15 +08:00
|
|
|
|
RtspPlayerImp(const EventPoller::Ptr &poller) : PlayerImp<RtspPlayer,RtspDemuxer>(poller){}
|
2018-03-01 11:49:06 +08:00
|
|
|
|
virtual ~RtspPlayerImp(){
|
|
|
|
|
DebugL<<endl;
|
|
|
|
|
};
|
2017-08-14 22:20:53 +08:00
|
|
|
|
float getProgress() const override{
|
2017-04-01 16:35:56 +08:00
|
|
|
|
if(getDuration() > 0){
|
2018-10-26 14:12:16 +08:00
|
|
|
|
return getProgressMilliSecond() / (getDuration() * 1000);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
2017-08-14 22:20:53 +08:00
|
|
|
|
return PlayerBase::getProgress();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
void seekTo(float fProgress) override{
|
|
|
|
|
fProgress = MAX(float(0),MIN(fProgress,float(1.0)));
|
2018-10-26 14:12:16 +08:00
|
|
|
|
seekToMilliSecond(fProgress * getDuration() * 1000);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
private:
|
|
|
|
|
//派生类回调函数
|
2019-08-22 16:05:35 +08:00
|
|
|
|
bool onCheckSDP(const string &sdp) override {
|
2018-10-24 15:43:52 +08:00
|
|
|
|
_pRtspMediaSrc = dynamic_pointer_cast<RtspMediaSource>(_pMediaSrc);
|
|
|
|
|
if(_pRtspMediaSrc){
|
2019-08-22 16:05:35 +08:00
|
|
|
|
_pRtspMediaSrc->onGetSDP(sdp);
|
2018-09-18 21:40:26 +08:00
|
|
|
|
}
|
2019-08-22 16:05:35 +08:00
|
|
|
|
_parser.reset(new RtspDemuxer(sdp));
|
2018-10-25 17:39:19 +08:00
|
|
|
|
return true;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
2019-06-28 16:48:02 +08:00
|
|
|
|
void onRecvRTP(const RtpPacket::Ptr &rtp, const SdpTrack::Ptr &track) override {
|
2018-10-25 17:39:19 +08:00
|
|
|
|
if(_pRtspMediaSrc){
|
2019-06-28 16:48:02 +08:00
|
|
|
|
_pRtspMediaSrc->onWrite(rtp,true);
|
2018-10-25 17:39:19 +08:00
|
|
|
|
}
|
2019-06-28 16:48:02 +08:00
|
|
|
|
_parser->inputRtp(rtp);
|
2019-03-01 14:23:28 +08:00
|
|
|
|
|
2019-11-21 16:31:50 +08:00
|
|
|
|
if(_maxAnalysisMS && _parser->isInited(_maxAnalysisMS)){
|
|
|
|
|
PlayerImp<RtspPlayer,RtspDemuxer>::onPlayResult(SockException(Err_success,"play rtsp success"));
|
|
|
|
|
_maxAnalysisMS = 0;
|
|
|
|
|
}
|
2018-10-25 17:39:19 +08:00
|
|
|
|
}
|
2018-09-18 21:40:26 +08:00
|
|
|
|
|
2019-11-21 16:31:50 +08:00
|
|
|
|
//在RtspPlayer中触发onPlayResult事件只是代表收到play回复了,
|
|
|
|
|
//并不代表所有track初始化成功了(这跟rtmp播放器不一样)
|
|
|
|
|
//如果sdp里面信息不完整,只能尝试延后从rtp中恢复关键信息并初始化track
|
|
|
|
|
//如果超过这个时间还未获取成功,那么会强制触发onPlayResult事件(虽然此时有些track还未初始化成功)
|
|
|
|
|
void onPlayResult(const SockException &ex) override {
|
|
|
|
|
//isInited判断条件:无超时
|
|
|
|
|
if(_parser->isInited(0)){
|
|
|
|
|
//已经初始化成功,说明sdp里面有完善的信息
|
|
|
|
|
PlayerImp<RtspPlayer,RtspDemuxer>::onPlayResult(ex);
|
|
|
|
|
}else{
|
|
|
|
|
//还没初始化成功,说明sdp里面信息不完善,还有一些track未初始化成功
|
|
|
|
|
_maxAnalysisMS = (*this)[Client::kMaxAnalysisMS];
|
|
|
|
|
}
|
2019-01-24 17:52:41 +08:00
|
|
|
|
}
|
2018-09-18 21:40:26 +08:00
|
|
|
|
private:
|
2018-10-24 15:43:52 +08:00
|
|
|
|
RtspMediaSource::Ptr _pRtspMediaSrc;
|
2019-11-21 16:31:50 +08:00
|
|
|
|
int _maxAnalysisMS = 0;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#endif /* SRC_RTP_RTPPARSERTESTER_H_ */
|