ZLMediaKit/src/Rtsp/RtspMediaSourceImp.h

118 lines
3.0 KiB
C++
Raw Normal View History

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.
*
* 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_
2018-10-29 09:54:35 +08:00
#include "RtspMediaSource.h"
#include "Common/MultiMediaSourceMuxer.h"
2017-04-01 16:35:56 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit {
class RtspDemuxer;
2022-10-16 19:49:56 +08:00
class RtspMediaSourceImp final : public RtspMediaSource, private TrackListener, public MultiMediaSourceMuxer::Listener {
2017-04-01 16:35:56 +08:00
public:
2022-10-16 19:49:56 +08:00
using Ptr = std::shared_ptr<RtspMediaSourceImp>;
2017-04-01 16:35:56 +08:00
/**
2020-03-20 11:51:24 +08:00
*
* @param vhost
* @param app
* @param id id
* @param ringSize
*/
RtspMediaSourceImp(const std::string &vhost, const std::string &app, const std::string &id, int ringSize = RTP_GOP_SIZE);
2022-10-16 19:49:56 +08:00
~RtspMediaSourceImp() override = default;
/**
* sdp
*/
void setSdp(const std::string &strSdp) override;
/**
* rtp并解析
*/
void onWrite(RtpPacket::Ptr rtp, bool key_pos) override;
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 {
2019-12-28 16:48:11 +08:00
return readerCount() + (_muxer ? _muxer->totalReaderCount() : 0);
2019-08-22 17:48:10 +08:00
}
/**
*
2020-03-20 11:51:24 +08:00
*/
void setProtocolOption(const ProtocolOption &option);
const ProtocolOption &getProtocolOption() const {
return _option;
}
/**
2020-03-20 11:51:24 +08:00
* _demuxer触发的添加Track事件
*/
bool addTrack(const Track::Ptr &track) override {
if (_muxer) {
if (_muxer->addTrack(track)) {
track->addDelegate(_muxer);
return true;
}
}
return false;
}
2021-04-20 17:53:43 +08:00
/**
* _demuxer触发的Track添加完毕事件
*/
void addTrackCompleted() override {
if (_muxer) {
_muxer->addTrackCompleted();
}
}
void resetTracks() override {
if (_muxer) {
_muxer->resetTracks();
}
}
/**
* _muxer触发的所有Track就绪的事件
*/
void onAllTrackReady() override{
_all_track_ready = true;
}
2020-09-06 17:54:52 +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:
bool _all_track_ready = false;
ProtocolOption _option;
std::shared_ptr<RtspDemuxer> _demuxer;
MultiMediaSourceMuxer::Ptr _muxer;
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_ */