mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-07 11:27:50 +08:00
98 lines
3.1 KiB
C++
98 lines
3.1 KiB
C++
/*
|
||
* 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.
|
||
*/
|
||
|
||
#include "RtmpDemuxer.h"
|
||
#include "Extension/Factory.h"
|
||
|
||
namespace mediakit {
|
||
|
||
void RtmpDemuxer::loadMetaData(const AMFValue &val){
|
||
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();
|
||
}
|
||
}
|
||
|
||
bool RtmpDemuxer::inputRtmp(const RtmpPacket::Ptr &pkt) {
|
||
switch (pkt->typeId) {
|
||
case MSG_VIDEO: {
|
||
if(!_tryedGetVideoTrack){
|
||
_tryedGetVideoTrack = true;
|
||
auto codec = AMFValue(pkt->getMediaType());
|
||
makeVideoTrack(codec);
|
||
}
|
||
if(_videoRtmpDecoder){
|
||
return _videoRtmpDecoder->inputRtmp(pkt, true);
|
||
}
|
||
return false;
|
||
}
|
||
|
||
case MSG_AUDIO: {
|
||
if(!_tryedGetAudioTrack) {
|
||
_tryedGetAudioTrack = true;
|
||
auto codec = AMFValue(pkt->getMediaType());
|
||
makeAudioTrack(codec);
|
||
}
|
||
if(_audioRtmpDecoder){
|
||
_audioRtmpDecoder->inputRtmp(pkt, false);
|
||
return false;
|
||
}
|
||
return false;
|
||
}
|
||
default:
|
||
return false;
|
||
}
|
||
}
|
||
|
||
void RtmpDemuxer::makeVideoTrack(const AMFValue &videoCodec) {
|
||
//生成Track对象
|
||
_videoTrack = dynamic_pointer_cast<VideoTrack>(Factory::getTrackByAmf(videoCodec));
|
||
if (_videoTrack) {
|
||
//生成rtmpCodec对象以便解码rtmp
|
||
_videoRtmpDecoder = Factory::getRtmpCodecByTrack(_videoTrack);
|
||
if (_videoRtmpDecoder) {
|
||
//设置rtmp解码器代理,生成的frame写入该Track
|
||
_videoRtmpDecoder->addDelegate(_videoTrack);
|
||
onAddTrack(_videoTrack);
|
||
} else {
|
||
//找不到相应的rtmp解码器,该track无效
|
||
_videoTrack.reset();
|
||
}
|
||
}
|
||
}
|
||
|
||
void RtmpDemuxer::makeAudioTrack(const AMFValue &audioCodec) {
|
||
//生成Track对象
|
||
_audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getTrackByAmf(audioCodec));
|
||
if (_audioTrack) {
|
||
//生成rtmpCodec对象以便解码rtmp
|
||
_audioRtmpDecoder = Factory::getRtmpCodecByTrack(_audioTrack);
|
||
if (_audioRtmpDecoder) {
|
||
//设置rtmp解码器代理,生成的frame写入该Track
|
||
_audioRtmpDecoder->addDelegate(_audioTrack);
|
||
onAddTrack(_audioTrack);
|
||
} else {
|
||
//找不到相应的rtmp解码器,该track无效
|
||
_audioTrack.reset();
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
} /* namespace mediakit */
|