ZLMediaKit/src/Rtmp/RtmpMuxer.h

73 lines
1.5 KiB
C++
Raw Normal View History

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"
#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
/**
*
*/
RtmpMuxer(const TitleMeta::Ptr &title);
2018-10-25 15:30:44 +08:00
virtual ~RtmpMuxer(){}
/**
* SDP字符串
* @return SDP字符串
*/
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;
/**
2019-12-03 12:32:57 +08:00
*
* @param frame
*/
void inputFrame(const Frame::Ptr &frame) override;
/**
* track
*/
void resetTracks() override ;
/**
* config包
*/
void makeConfigPacket();
2018-10-25 15:30:44 +08:00
private:
2019-12-26 09:43:44 +08:00
RtmpRing::RingType::Ptr _rtmpRing;
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