2018-10-25 15:30:44 +08:00
|
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
2019-05-08 15:40:07 +08:00
|
|
|
|
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
|
2018-10-25 15:30:44 +08:00
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#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
|
|
|
|
}
|
|
|
|
|
_rtmpRing = std::make_shared<RtmpRingInterface::RingType>();
|
|
|
|
|
}
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
2019-12-03 12:32:57 +08:00
|
|
|
|
void RtmpMuxer::addTrack(const Track::Ptr &track) {
|
2019-09-23 16:47:20 +08:00
|
|
|
|
//根据track生产metadata
|
|
|
|
|
Metadata::Ptr metadata;
|
2018-10-27 22:40:44 +08:00
|
|
|
|
switch (track->getTrackType()){
|
|
|
|
|
case TrackVideo:{
|
2019-09-23 16:47:20 +08:00
|
|
|
|
metadata = std::make_shared<VideoMeta>(dynamic_pointer_cast<VideoTrack>(track));
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
2018-10-27 22:40:44 +08:00
|
|
|
|
break;
|
|
|
|
|
case TrackAudio:{
|
2019-09-23 16:47:20 +08:00
|
|
|
|
metadata = std::make_shared<AudioMeta>(dynamic_pointer_cast<AudioTrack>(track));
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
2018-10-27 22:40:44 +08:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2019-12-03 12:32:57 +08:00
|
|
|
|
return;
|
2018-10-27 22:40:44 +08:00
|
|
|
|
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
2019-12-03 12:32:57 +08:00
|
|
|
|
|
|
|
|
|
auto &encoder = _encoder[track->getTrackType()];
|
|
|
|
|
//生成rtmp编码器,克隆该Track,防止循环引用
|
|
|
|
|
encoder = Factory::getRtmpCodecByTrack(track->clone());
|
|
|
|
|
if (!encoder) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置rtmp输出环形缓存
|
|
|
|
|
encoder->setRtmpRing(_rtmpRing);
|
|
|
|
|
|
2019-09-23 16:47:20 +08:00
|
|
|
|
//添加其metadata
|
|
|
|
|
metadata->getMetadata().object_for_each([&](const std::string &key, const AMFValue &value){
|
|
|
|
|
_metadata.set(key,value);
|
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::inputFrame(const Frame::Ptr &frame) {
|
|
|
|
|
auto &encoder = _encoder[frame->getTrackType()];
|
|
|
|
|
if(encoder){
|
|
|
|
|
encoder->inputFrame(frame);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-25 15:30:44 +08:00
|
|
|
|
|
2019-09-23 16:47:20 +08:00
|
|
|
|
const AMFValue &RtmpMuxer::getMetadata() const {
|
|
|
|
|
return _metadata;
|
2018-10-25 15:30:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RtmpRingInterface::RingType::Ptr RtmpMuxer::getRtmpRing() const {
|
|
|
|
|
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 */
|