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.
|
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
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_RTSP_RTSPTORTMPMEDIASOURCE_H_
|
|
|
|
|
#define SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_
|
|
|
|
|
|
|
|
|
|
#include "Rtmp/amf.h"
|
2018-10-29 09:54:35 +08:00
|
|
|
|
#include "RtspMediaSource.h"
|
2019-06-28 17:30:13 +08:00
|
|
|
|
#include "RtspDemuxer.h"
|
2019-07-22 18:37:32 +08:00
|
|
|
|
#include "Common/MultiMediaSourceMuxer.h"
|
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 {
|
2021-04-20 17:53:43 +08:00
|
|
|
|
class RtspMediaSourceImp : public RtspMediaSource, public TrackListener, public MultiMediaSourceMuxer::Listener {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2019-12-26 11:53:19 +08:00
|
|
|
|
typedef std::shared_ptr<RtspMediaSourceImp> Ptr;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
/**
|
2020-03-20 11:51:24 +08:00
|
|
|
|
* 构造函数
|
|
|
|
|
* @param vhost 虚拟主机
|
|
|
|
|
* @param app 应用名
|
|
|
|
|
* @param id 流id
|
|
|
|
|
* @param ringSize 环形缓存大小
|
|
|
|
|
*/
|
2020-01-20 16:22:25 +08:00
|
|
|
|
RtspMediaSourceImp(const string &vhost, const string &app, const string &id, int ringSize = RTP_GOP_SIZE) : RtspMediaSource(vhost, app, id,ringSize) {
|
2019-12-26 12:10:54 +08:00
|
|
|
|
_demuxer = std::make_shared<RtspDemuxer>();
|
|
|
|
|
_demuxer->setTrackListener(this);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
~RtspMediaSourceImp() = default;
|
2018-02-02 18:06:08 +08:00
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置sdp
|
|
|
|
|
*/
|
|
|
|
|
void setSdp(const string &strSdp) override {
|
2019-12-26 12:10:54 +08:00
|
|
|
|
_demuxer->loadSdp(strSdp);
|
2019-12-25 11:04:12 +08:00
|
|
|
|
RtspMediaSource::setSdp(strSdp);
|
2018-10-29 09:54:35 +08:00
|
|
|
|
}
|
2018-02-02 18:06:08 +08:00
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
/**
|
|
|
|
|
* 输入rtp并解析
|
|
|
|
|
*/
|
2020-10-10 18:23:25 +08:00
|
|
|
|
void onWrite(RtpPacket::Ptr rtp, bool key_pos) override {
|
2020-09-06 17:52:33 +08:00
|
|
|
|
if (_all_track_ready && !_muxer->isEnabled()) {
|
2020-04-29 11:59:45 +08:00
|
|
|
|
//获取到所有Track后,并且未开启转协议,那么不需要解复用rtp
|
|
|
|
|
//在关闭rtp解复用后,无法知道是否为关键帧,这样会导致无法秒开,或者开播花屏
|
|
|
|
|
key_pos = rtp->type == TrackVideo;
|
2020-09-06 17:52:33 +08:00
|
|
|
|
} else {
|
2020-04-29 11:59:45 +08:00
|
|
|
|
//需要解复用rtp
|
|
|
|
|
key_pos = _demuxer->inputRtp(rtp);
|
|
|
|
|
}
|
2021-04-11 12:06:40 +08:00
|
|
|
|
GET_CONFIG(bool, directProxy, Rtsp::kDirectProxy);
|
|
|
|
|
if (directProxy) {
|
|
|
|
|
//直接代理模式才直接使用原始rtp
|
|
|
|
|
RtspMediaSource::onWrite(std::move(rtp), key_pos);
|
|
|
|
|
}
|
2018-10-29 09:54:35 +08:00
|
|
|
|
}
|
2019-05-27 14:14:42 +08:00
|
|
|
|
|
2019-08-22 17:48:10 +08:00
|
|
|
|
/**
|
2019-12-28 16:48:11 +08:00
|
|
|
|
* 获取观看总人数,包括(hls/rtsp/rtmp)
|
|
|
|
|
*/
|
|
|
|
|
int totalReaderCount() override{
|
|
|
|
|
return readerCount() + (_muxer ? _muxer->totalReaderCount() : 0);
|
2019-08-22 17:48:10 +08:00
|
|
|
|
}
|
2019-09-10 11:06:31 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2020-03-20 11:51:24 +08:00
|
|
|
|
* 设置协议转换
|
|
|
|
|
* @param enableHls 是否转换成hls
|
|
|
|
|
* @param enableMP4 是否mp4录制
|
|
|
|
|
*/
|
2020-09-12 19:09:56 +08:00
|
|
|
|
void setProtocolTranslation(bool enableHls,bool enableMP4){
|
2021-04-11 12:06:40 +08:00
|
|
|
|
GET_CONFIG(bool, directProxy, Rtsp::kDirectProxy);
|
|
|
|
|
//开启直接代理模式时,rtsp直接代理,不重复产生;但是有些rtsp推流端,由于sdp中已有sps pps,rtp中就不再包括sps pps,
|
|
|
|
|
//导致rtc无法播放,所以在rtsp推流rtc播放时,建议关闭直接代理模式
|
|
|
|
|
_muxer = std::make_shared<MultiMediaSourceMuxer>(getVhost(), getApp(), getId(), _demuxer->getDuration(), !directProxy, true, enableHls, enableMP4);
|
2020-04-05 09:26:29 +08:00
|
|
|
|
_muxer->setMediaListener(getListener());
|
2020-08-08 12:20:13 +08:00
|
|
|
|
_muxer->setTrackListener(static_pointer_cast<RtspMediaSourceImp>(shared_from_this()));
|
2020-09-06 17:52:33 +08:00
|
|
|
|
//让_muxer对象拦截一部分事件(比如说录像相关事件)
|
2020-10-24 23:31:58 +08:00
|
|
|
|
MediaSource::setListener(_muxer);
|
2020-09-06 17:52:33 +08:00
|
|
|
|
|
2019-12-26 12:20:34 +08:00
|
|
|
|
for(auto &track : _demuxer->getTracks(false)){
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
track->addDelegate(_muxer);
|
|
|
|
|
}
|
2019-12-26 11:53:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2020-03-20 11:51:24 +08:00
|
|
|
|
* _demuxer触发的添加Track事件
|
|
|
|
|
*/
|
2021-04-20 17:53:43 +08:00
|
|
|
|
void addTrack(const Track::Ptr &track) override {
|
2019-12-26 11:53:19 +08:00
|
|
|
|
if(_muxer){
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
track->addDelegate(_muxer);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-20 17:53:43 +08:00
|
|
|
|
/**
|
|
|
|
|
* _demuxer触发的Track添加完毕事件
|
|
|
|
|
*/
|
|
|
|
|
void addTrackCompleted() override {
|
|
|
|
|
if (_muxer) {
|
|
|
|
|
_muxer->addTrackCompleted();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void resetTracks() override {
|
|
|
|
|
if (_muxer) {
|
|
|
|
|
_muxer->resetTracks();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-26 11:53:19 +08:00
|
|
|
|
/**
|
|
|
|
|
* _muxer触发的所有Track就绪的事件
|
|
|
|
|
*/
|
|
|
|
|
void onAllTrackReady() override{
|
2020-04-29 11:59:45 +08:00
|
|
|
|
_all_track_ready = true;
|
2019-09-10 11:06:31 +08:00
|
|
|
|
}
|
2020-09-06 17:54:52 +08:00
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
/**
|
|
|
|
|
* 设置事件监听器
|
|
|
|
|
* @param listener 监听器
|
|
|
|
|
*/
|
|
|
|
|
void setListener(const std::weak_ptr<MediaSourceEvent> &listener) override{
|
|
|
|
|
if (_muxer) {
|
|
|
|
|
//_muxer对象不能处理的事件再给listener处理
|
|
|
|
|
_muxer->setMediaListener(listener);
|
|
|
|
|
} else {
|
|
|
|
|
//未创建_muxer对象,事件全部给listener处理
|
|
|
|
|
MediaSource::setListener(listener);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-23 16:41:25 +08:00
|
|
|
|
private:
|
2019-07-22 18:40:04 +08:00
|
|
|
|
RtspDemuxer::Ptr _demuxer;
|
2019-07-22 18:37:32 +08:00
|
|
|
|
MultiMediaSourceMuxer::Ptr _muxer;
|
2020-04-29 11:59:45 +08:00
|
|
|
|
bool _all_track_ready = false;
|
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_RTSP_RTSPTORTMPMEDIASOURCE_H_ */
|