ZLMediaKit/src/Rtmp/RtmpDemuxer.cpp

135 lines
4.4 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +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.
*/
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
bool RtmpDemuxer::loadMetaData(const AMFValue &val){
bool ret = false;
try {
2020-04-18 22:13:11 +08:00
int audiosamplerate = 0;
int audiochannels = 0;
int audiosamplesize = 0;
const AMFValue *audiocodecid = nullptr;
const AMFValue *videocodecid = nullptr;
val.object_for_each([&](const string &key, const AMFValue &val) {
if (key == "duration") {
_fDuration = val.as_number();
return;
}
if (key == "audiosamplerate") {
2020-04-18 22:13:11 +08:00
audiosamplerate = val.as_integer();
return;
}
if (key == "audiosamplesize") {
2020-04-18 22:13:11 +08:00
audiosamplesize = val.as_integer();
return;
}
if (key == "stereo") {
2020-04-18 22:13:11 +08:00
audiochannels = val.as_boolean() ? 2 : 1;
return;
}
if (key == "videocodecid") {
2020-04-18 22:13:11 +08:00
//找到视频
videocodecid = &val;
return;
}
if (key == "audiocodecid") {
2020-04-18 22:13:11 +08:00
//找到音频
audiocodecid = &val;
return;
}
});
if (videocodecid) {
2020-04-18 22:13:11 +08:00
//有视频
ret = true;
2020-04-18 22:13:11 +08:00
makeVideoTrack(*videocodecid);
}
if (audiocodecid) {
2020-04-18 22:13:11 +08:00
//有音频
ret = true;
2020-04-18 22:13:11 +08:00
makeAudioTrack(*audiocodecid, audiosamplerate, audiochannels, audiosamplesize);
}
} catch (std::exception &ex) {
WarnL << ex.what();
}
return ret;
}
2018-10-24 18:09:54 +08:00
bool RtmpDemuxer::inputRtmp(const RtmpPacket::Ptr &pkt) {
switch (pkt->typeId) {
2018-10-24 22:03:17 +08:00
case MSG_VIDEO: {
if(!_tryedGetVideoTrack){
_tryedGetVideoTrack = true;
2018-10-24 22:03:17 +08:00
auto codec = AMFValue(pkt->getMediaType());
makeVideoTrack(codec);
}
if(_videoRtmpDecoder){
return _videoRtmpDecoder->inputRtmp(pkt, true);
}
return false;
}
case MSG_AUDIO: {
if(!_tryedGetAudioTrack) {
_tryedGetAudioTrack = true;
2018-10-24 22:03:17 +08:00
auto codec = AMFValue(pkt->getMediaType());
2020-04-18 22:13:11 +08:00
makeAudioTrack(codec, pkt->getAudioSampleRate(), pkt->getAudioChannel(), pkt->getAudioSampleBit());
}
if(_audioRtmpDecoder){
_audioRtmpDecoder->inputRtmp(pkt, false);
return false;
}
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::getVideoTrackByAmf(videoCodec));
2018-10-24 22:03:17 +08:00
if (_videoTrack) {
//生成rtmpCodec对象以便解码rtmp
_videoRtmpDecoder = Factory::getRtmpCodecByTrack(_videoTrack, false);
2018-10-24 22:03:17 +08:00
if (_videoRtmpDecoder) {
//设置rtmp解码器代理生成的frame写入该Track
2018-10-26 16:09:48 +08:00
_videoRtmpDecoder->addDelegate(_videoTrack);
onAddTrack(_videoTrack);
2018-10-24 22:03:17 +08:00
} else {
//找不到相应的rtmp解码器该track无效
_videoTrack.reset();
}
}
2017-04-01 16:35:56 +08:00
}
2020-04-18 22:13:11 +08:00
void RtmpDemuxer::makeAudioTrack(const AMFValue &audioCodec,int sample_rate, int channels, int sample_bit) {
2018-10-24 22:03:17 +08:00
//生成Track对象
2020-04-18 22:13:11 +08:00
_audioTrack = dynamic_pointer_cast<AudioTrack>(Factory::getAudioTrackByAmf(audioCodec, sample_rate, channels, sample_bit));
2018-10-24 22:03:17 +08:00
if (_audioTrack) {
//生成rtmpCodec对象以便解码rtmp
_audioRtmpDecoder = Factory::getRtmpCodecByTrack(_audioTrack, false);
2018-10-24 22:03:17 +08:00
if (_audioRtmpDecoder) {
//设置rtmp解码器代理生成的frame写入该Track
2018-10-26 16:09:48 +08:00
_audioRtmpDecoder->addDelegate(_audioTrack);
onAddTrack(_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 */