2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Use of this source code is governed by MIT license that can be found in the
|
|
|
|
|
* LICENSE file in the root of the source tree. All contributing project authors
|
|
|
|
|
* may be found in the AUTHORS file in the root of the source tree.
|
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
|
|
|
|
|
2020-08-30 11:40:03 +08:00
|
|
|
|
class RtspPlayerImp : public PlayerImp<RtspPlayer,RtspDemuxer> {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
typedef std::shared_ptr<RtspPlayerImp> Ptr;
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
|
|
|
|
RtspPlayerImp(const EventPoller::Ptr &poller) : PlayerImp<RtspPlayer, RtspDemuxer>(poller) {}
|
|
|
|
|
~RtspPlayerImp() override{
|
|
|
|
|
DebugL << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float getProgress() const override {
|
|
|
|
|
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();
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-09 18:28:43 +08:00
|
|
|
|
uint32_t getProgressPos() const override {
|
|
|
|
|
if (getDuration() > 0) {
|
|
|
|
|
return getProgressMilliSecond();
|
|
|
|
|
}
|
|
|
|
|
return PlayerBase::getProgressPos();
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void seekTo(float fProgress) override{
|
|
|
|
|
fProgress = MAX(float(0),MIN(fProgress,float(1.0)));
|
2021-01-17 18:31:50 +08:00
|
|
|
|
seekToMilliSecond((uint32_t)(fProgress * getDuration() * 1000));
|
2021-08-09 18:28:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void seekTo(uint32_t seekPos) override {
|
|
|
|
|
uint32_t pos = MAX(float(0), MIN(seekPos, getDuration()))*1000;
|
|
|
|
|
seekToMilliSecond(pos);
|
2020-08-30 11:40:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
2020-03-20 11:51:24 +08:00
|
|
|
|
//派生类回调函数
|
|
|
|
|
bool onCheckSDP(const string &sdp) override {
|
2020-08-30 11:40:03 +08:00
|
|
|
|
_rtsp_media_src = dynamic_pointer_cast<RtspMediaSource>(_pMediaSrc);
|
|
|
|
|
if (_rtsp_media_src) {
|
|
|
|
|
_rtsp_media_src->setSdp(sdp);
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2019-12-26 12:10:54 +08:00
|
|
|
|
_delegate.reset(new RtspDemuxer);
|
|
|
|
|
_delegate->loadSdp(sdp);
|
2018-10-25 17:39:19 +08:00
|
|
|
|
return true;
|
2020-03-20 11:51:24 +08:00
|
|
|
|
}
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
2021-02-05 11:28:50 +08:00
|
|
|
|
void onRecvRTP(RtpPacket::Ptr rtp, const SdpTrack::Ptr &track) override {
|
2019-12-03 16:10:02 +08:00
|
|
|
|
_delegate->inputRtp(rtp);
|
2020-08-30 11:40:03 +08:00
|
|
|
|
if (_max_analysis_ms && _delegate->isInited(_max_analysis_ms)) {
|
|
|
|
|
PlayerImp<RtspPlayer, RtspDemuxer>::onPlayResult(SockException(Err_success, "play rtsp success"));
|
|
|
|
|
_max_analysis_ms = 0;
|
2019-11-21 16:31:50 +08:00
|
|
|
|
}
|
2021-02-05 11:28:50 +08:00
|
|
|
|
|
|
|
|
|
if (_rtsp_media_src) {
|
|
|
|
|
// rtsp直接代理是无法判断该rtp是否是I帧,所以GOP缓存基本是无效的
|
|
|
|
|
// 为了减少内存使用,那么我们设置为一直关键帧以便清空GOP缓存
|
|
|
|
|
_rtsp_media_src->onWrite(std::move(rtp), true);
|
|
|
|
|
}
|
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判断条件:无超时
|
2020-08-30 11:40:03 +08:00
|
|
|
|
if (ex || _delegate->isInited(0)) {
|
2019-11-21 16:31:50 +08:00
|
|
|
|
//已经初始化成功,说明sdp里面有完善的信息
|
2020-08-30 11:40:03 +08:00
|
|
|
|
PlayerImp<RtspPlayer, RtspDemuxer>::onPlayResult(ex);
|
|
|
|
|
} else {
|
2019-11-21 16:31:50 +08:00
|
|
|
|
//还没初始化成功,说明sdp里面信息不完善,还有一些track未初始化成功
|
2020-08-30 11:40:03 +08:00
|
|
|
|
_max_analysis_ms = (*this)[Client::kMaxAnalysisMS];
|
2019-11-21 16:31:50 +08:00
|
|
|
|
}
|
2019-01-24 17:52:41 +08:00
|
|
|
|
}
|
2020-08-30 11:40:03 +08:00
|
|
|
|
|
2018-09-18 21:40:26 +08:00
|
|
|
|
private:
|
2020-08-30 11:40:03 +08:00
|
|
|
|
int _max_analysis_ms = 0;
|
|
|
|
|
RtspMediaSource::Ptr _rtsp_media_src;
|
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_ */
|