2018-10-25 15:30:44 +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-25 15:30:44 +08:00
|
|
|
|
|
|
|
|
|
#ifndef ZLMEDIAKIT_RTMPMUXER_H
|
|
|
|
|
#define ZLMEDIAKIT_RTMPMUXER_H
|
|
|
|
|
|
2019-06-28 17:25:53 +08:00
|
|
|
|
#include "Rtmp/Rtmp.h"
|
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 17:25:53 +08:00
|
|
|
|
#include "RtmpCodec.h"
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
|
|
|
|
namespace mediakit{
|
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
class RtmpMuxer : public MediaSinkInterface{
|
2018-10-25 15:30:44 +08:00
|
|
|
|
public:
|
2018-10-25 16:46:00 +08:00
|
|
|
|
typedef std::shared_ptr<RtmpMuxer> Ptr;
|
|
|
|
|
|
2018-10-25 15:30:44 +08:00
|
|
|
|
/**
|
|
|
|
|
* 构造函数
|
|
|
|
|
*/
|
2019-09-23 16:47:20 +08:00
|
|
|
|
RtmpMuxer(const TitleMeta::Ptr &title);
|
2018-10-25 15:30:44 +08:00
|
|
|
|
virtual ~RtmpMuxer(){}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取完整的SDP字符串
|
|
|
|
|
* @return SDP字符串
|
|
|
|
|
*/
|
2019-09-23 16:47:20 +08:00
|
|
|
|
const AMFValue &getMetadata() const ;
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取rtmp环形缓存
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
2019-12-26 09:43:44 +08:00
|
|
|
|
RtmpRing::RingType::Ptr getRtmpRing() const;
|
2019-12-03 12:32:57 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 添加ready状态的track
|
|
|
|
|
*/
|
|
|
|
|
void addTrack(const Track::Ptr & track) override;
|
|
|
|
|
|
2018-10-27 22:40:44 +08:00
|
|
|
|
/**
|
2019-12-03 12:32:57 +08:00
|
|
|
|
* 写入帧数据
|
|
|
|
|
* @param frame 帧
|
|
|
|
|
*/
|
|
|
|
|
void inputFrame(const Frame::Ptr &frame) override;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 重置所有track
|
|
|
|
|
*/
|
|
|
|
|
void resetTracks() override ;
|
2020-01-15 11:46:15 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 生成config包
|
|
|
|
|
*/
|
|
|
|
|
void makeConfigPacket();
|
2018-10-25 15:30:44 +08:00
|
|
|
|
private:
|
2020-08-30 10:48:34 +08:00
|
|
|
|
RtmpRing::RingType::Ptr _rtmp_ring;
|
2019-09-23 16:47:20 +08:00
|
|
|
|
AMFValue _metadata;
|
2019-12-03 12:32:57 +08:00
|
|
|
|
RtmpCodec::Ptr _encoder[TrackMax];
|
2018-10-25 15:30:44 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} /* namespace mediakit */
|
|
|
|
|
|
|
|
|
|
#endif //ZLMEDIAKIT_RTMPMUXER_H
|