2018-10-25 10:00:17 +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/xiongziliang/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.
|
|
|
|
|
*/
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
2018-10-24 18:16:08 +08:00
|
|
|
|
#ifndef ZLMEDIAKIT_RTSPMUXER_H
|
|
|
|
|
#define ZLMEDIAKIT_RTSPMUXER_H
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
2018-10-30 14:59:42 +08:00
|
|
|
|
#include "Extension/Frame.h"
|
2018-10-27 22:40:44 +08:00
|
|
|
|
#include "Common/MediaSink.h"
|
2019-06-28 16:12:39 +08:00
|
|
|
|
#include "RtpCodec.h"
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit{
|
2018-10-24 09:45:57 +08:00
|
|
|
|
/**
|
|
|
|
|
* rtsp生成器
|
|
|
|
|
*/
|
2019-12-03 12:32:57 +08:00
|
|
|
|
class RtspMuxer : public MediaSinkInterface{
|
2018-10-24 09:45:57 +08:00
|
|
|
|
public:
|
2018-10-25 16:46:00 +08:00
|
|
|
|
typedef std::shared_ptr<RtspMuxer> Ptr;
|
|
|
|
|
|
2018-10-24 09:45:57 +08:00
|
|
|
|
/**
|
2018-10-25 11:53:45 +08:00
|
|
|
|
* 构造函数
|
2018-10-24 09:45:57 +08:00
|
|
|
|
*/
|
2018-10-27 22:40:44 +08:00
|
|
|
|
RtspMuxer(const TitleSdp::Ptr &title = nullptr);
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
2018-10-27 22:40:44 +08:00
|
|
|
|
virtual ~RtspMuxer(){}
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取完整的SDP字符串
|
|
|
|
|
* @return SDP字符串
|
|
|
|
|
*/
|
2018-10-25 11:53:45 +08:00
|
|
|
|
string getSdp() ;
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取rtp环形缓存
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-12-26 09:43:44 +08:00
|
|
|
|
RtpRing::RingType::Ptr getRtpRing() const;
|
2019-12-03 12:32:57 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加ready状态的track
|
|
|
|
|
*/
|
|
|
|
|
void addTrack(const Track::Ptr & track) override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 写入帧数据
|
|
|
|
|
* @param frame 帧
|
|
|
|
|
*/
|
|
|
|
|
void inputFrame(const Frame::Ptr &frame) override;
|
|
|
|
|
|
2018-10-27 22:40:44 +08:00
|
|
|
|
/**
|
2019-12-03 12:32:57 +08:00
|
|
|
|
* 重置所有track
|
|
|
|
|
*/
|
|
|
|
|
void resetTracks() override ;
|
2018-10-24 09:45:57 +08:00
|
|
|
|
private:
|
2018-10-25 13:43:41 +08:00
|
|
|
|
string _sdp;
|
2019-12-03 12:32:57 +08:00
|
|
|
|
RtpCodec::Ptr _encoder[TrackMax];
|
2019-12-26 09:43:44 +08:00
|
|
|
|
RtpRing::RingType::Ptr _rtpRing;
|
2018-10-24 09:45:57 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2018-10-24 09:45:57 +08:00
|
|
|
|
|
2018-10-24 18:16:08 +08:00
|
|
|
|
#endif //ZLMEDIAKIT_RTSPMUXER_H
|