mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-23 11:17:09 +08:00
120 lines
3.1 KiB
C++
120 lines
3.1 KiB
C++
/*
|
||
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
||
*
|
||
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
||
*
|
||
* 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.
|
||
*/
|
||
|
||
#ifndef SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_
|
||
#define SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_
|
||
|
||
#include "RtspMediaSource.h"
|
||
#include "RtspDemuxer.h"
|
||
#include "Common/MultiMediaSourceMuxer.h"
|
||
|
||
namespace mediakit {
|
||
class RtspDemuxer;
|
||
class RtspMediaSourceImp final : public RtspMediaSource, private TrackListener, public MultiMediaSourceMuxer::Listener {
|
||
public:
|
||
using Ptr = std::shared_ptr<RtspMediaSourceImp>;
|
||
|
||
/**
|
||
* 构造函数
|
||
* @param vhost 虚拟主机
|
||
* @param app 应用名
|
||
* @param id 流id
|
||
* @param ringSize 环形缓存大小
|
||
*/
|
||
RtspMediaSourceImp(const MediaTuple& tuple, int ringSize = RTP_GOP_SIZE);
|
||
|
||
~RtspMediaSourceImp() override = default;
|
||
|
||
/**
|
||
* 设置sdp
|
||
*/
|
||
void setSdp(const std::string &strSdp) override;
|
||
|
||
/**
|
||
* 输入rtp并解析
|
||
*/
|
||
void onWrite(RtpPacket::Ptr rtp, bool key_pos) override;
|
||
|
||
/**
|
||
* 获取观看总人数,包括(hls/rtsp/rtmp)
|
||
*/
|
||
int totalReaderCount() override {
|
||
return readerCount() + (_muxer ? _muxer->totalReaderCount() : 0);
|
||
}
|
||
|
||
/**
|
||
* 设置协议转换选项
|
||
*/
|
||
void setProtocolOption(const ProtocolOption &option);
|
||
|
||
const ProtocolOption &getProtocolOption() const {
|
||
return _option;
|
||
}
|
||
|
||
/**
|
||
* _demuxer触发的添加Track事件
|
||
*/
|
||
bool addTrack(const Track::Ptr &track) override {
|
||
if (_muxer) {
|
||
if (_muxer->addTrack(track)) {
|
||
track->addDelegate(_muxer);
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
/**
|
||
* _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;
|
||
}
|
||
|
||
/**
|
||
* 设置事件监听器
|
||
* @param listener 监听器
|
||
*/
|
||
void setListener(const std::weak_ptr<MediaSourceEvent> &listener) override{
|
||
if (_muxer) {
|
||
//_muxer对象不能处理的事件再给listener处理
|
||
_muxer->setMediaListener(listener);
|
||
} else {
|
||
//未创建_muxer对象,事件全部给listener处理
|
||
MediaSource::setListener(listener);
|
||
}
|
||
}
|
||
|
||
RtspMediaSource::Ptr clone(const std::string& stream) override;
|
||
private:
|
||
bool _all_track_ready = false;
|
||
ProtocolOption _option;
|
||
RtspDemuxer::Ptr _demuxer;
|
||
MultiMediaSourceMuxer::Ptr _muxer;
|
||
};
|
||
} /* namespace mediakit */
|
||
|
||
#endif /* SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_ */
|