2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2018-10-24 22:03:17 +08:00
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
|
|
|
|
|
*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 18:09:54 +08:00
|
|
|
|
#include "RtmpDemuxer.h"
|
2018-10-30 14:59:42 +08:00
|
|
|
|
#include "Extension/Factory.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 22:29:19 +08:00
|
|
|
|
|
2018-10-24 18:09:54 +08:00
|
|
|
|
RtmpDemuxer::RtmpDemuxer(const AMFValue &val) {
|
2018-10-24 22:03:17 +08:00
|
|
|
|
try {
|
|
|
|
|
makeVideoTrack(val["videocodecid"]);
|
|
|
|
|
makeAudioTrack(val["audiocodecid"]);
|
|
|
|
|
val.object_for_each([&](const string &key, const AMFValue &val) {
|
|
|
|
|
if (key == "duration") {
|
|
|
|
|
_fDuration = val.as_number();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}catch (std::exception &ex){
|
|
|
|
|
WarnL << ex.what();
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-29 10:53:08 +08:00
|
|
|
|
int RtmpDemuxer::getTrackCount(const AMFValue &metedata) {
|
|
|
|
|
return (int)(metedata["videocodecid"].type() != AMF_NULL) + (int)(metedata["audiocodecid"].type() != AMF_NULL);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 18:09:54 +08:00
|
|
|
|
bool RtmpDemuxer::inputRtmp(const RtmpPacket::Ptr &pkt) {
|
2018-03-01 14:32:11 +08:00
|
|
|
|
switch (pkt->typeId) {
|
2018-10-24 22:03:17 +08:00
|
|
|
|
case MSG_VIDEO: {
|
2018-10-24 22:29:19 +08:00
|
|
|
|
if(!_tryedGetVideoTrack){
|
|
|
|
|
_tryedGetVideoTrack = true;
|
2018-10-24 22:03:17 +08:00
|
|
|
|
auto codec = AMFValue(pkt->getMediaType());
|
|
|
|
|
makeVideoTrack(codec);
|
2018-03-01 14:32:11 +08:00
|
|
|
|
}
|
2019-03-01 18:47:58 +08:00
|
|
|
|
if(_videoRtmpDecoder){
|
|
|
|
|
return _videoRtmpDecoder->inputRtmp(pkt, true);
|
|
|
|
|
}
|
2018-03-01 14:32:11 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case MSG_AUDIO: {
|
2018-10-24 22:29:19 +08:00
|
|
|
|
if(!_tryedGetAudioTrack) {
|
|
|
|
|
_tryedGetAudioTrack = true;
|
2018-10-24 22:03:17 +08:00
|
|
|
|
auto codec = AMFValue(pkt->getMediaType());
|
|
|
|
|
makeAudioTrack(codec);
|
2018-03-01 14:32:11 +08:00
|
|
|
|
}
|
2019-03-01 18:47:58 +08:00
|
|
|
|
if(_audioRtmpDecoder){
|
|
|
|
|
_audioRtmpDecoder->inputRtmp(pkt, false);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-03-01 14:32:11 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 22:03:17 +08:00
|
|
|
|
void RtmpDemuxer::makeVideoTrack(const AMFValue &videoCodec) {
|
|
|
|
|
//生成Track对象
|
|
|
|
|
_videoTrack = dynamic_pointer_cast<VideoTrack>(Factory::getTrackByAmf(videoCodec));
|
|
|
|
|
if (_videoTrack) {
|
|
|
|
|
//生成rtmpCodec对象以便解码rtmp
|
2018-10-25 14:16:40 +08:00
|
|
|
|
_videoRtmpDecoder = Factory::getRtmpCodecByTrack(_videoTrack);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
if (_videoRtmpDecoder) {
|
|
|
|
|
//设置rtmp解码器代理,生成的frame写入该Track
|
2018-10-26 16:09:48 +08:00
|
|
|
|
_videoRtmpDecoder->addDelegate(_videoTrack);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
} else {
|
|
|
|
|
//找不到相应的rtmp解码器,该track无效
|
|
|
|
|
_videoTrack.reset();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-24 22:03:17 +08:00
|
|
|
|
void RtmpDemuxer::makeAudioTrack(const AMFValue &audioCodec) {
|
|
|
|
|
//生成Track对象
|
|
|
|
|
_audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getTrackByAmf(audioCodec));
|
|
|
|
|
if (_audioTrack) {
|
|
|
|
|
//生成rtmpCodec对象以便解码rtmp
|
2018-10-25 14:16:40 +08:00
|
|
|
|
_audioRtmpDecoder = Factory::getRtmpCodecByTrack(_audioTrack);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
if (_audioRtmpDecoder) {
|
|
|
|
|
//设置rtmp解码器代理,生成的frame写入该Track
|
2018-10-26 16:09:48 +08:00
|
|
|
|
_audioRtmpDecoder->addDelegate(_audioTrack);
|
2018-10-24 22:03:17 +08:00
|
|
|
|
} else {
|
|
|
|
|
//找不到相应的rtmp解码器,该track无效
|
|
|
|
|
_audioTrack.reset();
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-01 16:35:56 +08:00
|
|
|
|
}
|
2018-10-24 22:03:17 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|