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
|
|
|
|
|
|
|
|
|
#include "RtmpMuxer.h"
|
2019-06-28 17:25:53 +08:00
|
|
|
|
#include "Extension/Factory.h"
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
|
|
|
|
namespace mediakit {
|
|
|
|
|
|
2019-09-23 16:47:20 +08:00
|
|
|
|
RtmpMuxer::RtmpMuxer(const TitleMeta::Ptr &title) {
|
2018-10-27 22:40:44 +08:00
|
|
|
|
if(!title){
|
2019-09-23 16:47:20 +08:00
|
|
|
|
_metadata = std::make_shared<TitleMeta>()->getMetadata();
|
2018-10-27 22:40:44 +08:00
|
|
|
|
}else{
|
2019-09-23 16:47:20 +08:00
|
|
|
|
_metadata = title->getMetadata();
|
2018-10-27 22:40:44 +08:00
|
|
|
|
}
|
2019-12-26 09:43:44 +08:00
|
|
|
|
_rtmpRing = std::make_shared<RtmpRing::RingType>();
|
2018-10-27 22:40:44 +08:00
|
|
|
|
}
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
void RtmpMuxer::addTrack(const Track::Ptr &track) {
|
|
|
|
|
auto &encoder = _encoder[track->getTrackType()];
|
|
|
|
|
//生成rtmp编码器,克隆该Track,防止循环引用
|
2020-05-28 17:03:12 +08:00
|
|
|
|
encoder = Factory::getRtmpCodecByTrack(track->clone(), true);
|
2019-12-03 12:32:57 +08:00
|
|
|
|
if (!encoder) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置rtmp输出环形缓存
|
|
|
|
|
encoder->setRtmpRing(_rtmpRing);
|
|
|
|
|
|
2020-05-28 17:03:12 +08:00
|
|
|
|
//添加metadata
|
|
|
|
|
Metadata::addTrack(_metadata,track);
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
void RtmpMuxer::inputFrame(const Frame::Ptr &frame) {
|
|
|
|
|
auto &encoder = _encoder[frame->getTrackType()];
|
|
|
|
|
if(encoder){
|
|
|
|
|
encoder->inputFrame(frame);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
2020-01-15 11:46:15 +08:00
|
|
|
|
void RtmpMuxer::makeConfigPacket(){
|
|
|
|
|
for(auto &encoder : _encoder){
|
|
|
|
|
if(encoder){
|
|
|
|
|
encoder->makeConfigPacket();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-23 16:47:20 +08:00
|
|
|
|
const AMFValue &RtmpMuxer::getMetadata() const {
|
|
|
|
|
return _metadata;
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-26 09:43:44 +08:00
|
|
|
|
RtmpRing::RingType::Ptr RtmpMuxer::getRtmpRing() const {
|
2018-10-25 15:30:44 +08:00
|
|
|
|
return _rtmpRing;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
void RtmpMuxer::resetTracks() {
|
|
|
|
|
_metadata.clear();
|
|
|
|
|
for(auto &encoder : _encoder){
|
|
|
|
|
encoder = nullptr;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2018-10-27 22:40:44 +08:00
|
|
|
|
}/* namespace mediakit */
|