/* * 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. */ #include "Factory.h" #include "RtmpMuxer/H264RtmpCodec.h" #include "RtmpMuxer/AACRtmpCodec.h" #include "RtspMuxer/H264RtpCodec.h" #include "RtspMuxer/AACRtpCodec.h" namespace mediakit{ Sdp::Ptr Factory::getSdpByTrack(const Track::Ptr &track) { switch (track->getCodecId()){ case CodecH264:{ H264Track::Ptr h264Track = dynamic_pointer_cast(track); if(!h264Track){ WarnL << "该Track不是H264Track类型"; return nullptr; } if(!h264Track->ready()){ WarnL << "该Track未准备好"; return nullptr; } return std::make_shared(h264Track->getSps(),h264Track->getPps()); } case CodecAAC:{ AACTrack::Ptr aacTrack = dynamic_pointer_cast(track); if(!aacTrack){ WarnL << "该Track不是AACTrack类型"; return nullptr; } if(!aacTrack->ready()){ WarnL << "该Track未准备好"; return nullptr; } return std::make_shared(aacTrack->getAacCfg(),aacTrack->getAudioSampleRate()); } default: WarnL << "暂不支持的CodecId:" << track->getCodecId(); return nullptr; } } Track::Ptr Factory::getTrackBySdp(const SdpTrack::Ptr &track) { if (strcasestr(track->_codec.data(), "mpeg4-generic") != nullptr) { string aac_cfg_str = FindField(track->_fmtp.c_str(), "config=", "\r\n"); if (aac_cfg_str.size() != 4) { aac_cfg_str = FindField(track->_fmtp.c_str(), "config=", ";"); } if (aac_cfg_str.size() != 4) { //延后获取adts头 return std::make_shared(); } string aac_cfg; unsigned int cfg1; sscanf(aac_cfg_str.substr(0, 2).c_str(), "%02X", &cfg1); cfg1 &= 0x00FF; aac_cfg.push_back(cfg1); unsigned int cfg2; sscanf(aac_cfg_str.substr(2, 2).c_str(), "%02X", &cfg2); cfg2 &= 0x00FF; aac_cfg.push_back(cfg2); return std::make_shared(aac_cfg); } if (strcasestr(track->_codec.data(), "h264") != nullptr) { string sps_pps = FindField(track->_fmtp.c_str(), "sprop-parameter-sets=", "\r\n"); if(sps_pps.empty()){ return std::make_shared(); } string base64_SPS = FindField(sps_pps.c_str(), NULL, ","); string base64_PPS = FindField(sps_pps.c_str(), ",", NULL); if(base64_PPS.back() == ';'){ base64_PPS.pop_back(); } auto sps = decodeBase64(base64_SPS); auto pps = decodeBase64(base64_PPS); return std::make_shared(sps,pps,0,0); } WarnL << "暂不支持该sdp:" << track->_codec << " " << track->_fmtp; return nullptr; } CodecId Factory::getCodecIdByAmf(const AMFValue &val){ if (val.type() == AMF_STRING){ auto str = val.as_string(); if(str == "avc1"){ return CodecH264; } if(str == "mp4a"){ return CodecAAC; } WarnL << "暂不支持该Amf:" << str; return CodecInvalid; } if (val.type() != AMF_NULL){ auto type_id = val.as_integer(); switch (type_id){ case 7:{ return CodecH264; } case 10:{ return CodecAAC; } default: WarnL << "暂不支持该Amf:" << type_id; return CodecInvalid; } } WarnL << "暂不支持该Amf:" << val.type(); return CodecInvalid; } Track::Ptr Factory::getTrackByCodecId(CodecId codecId) { switch (codecId){ case CodecH264:{ return std::make_shared(); } case CodecAAC:{ return std::make_shared(); } default: WarnL << "暂不支持该CodecId:" << codecId; return nullptr; } } Track::Ptr Factory::getTrackByAmf(const AMFValue &amf) { CodecId codecId = getCodecIdByAmf(amf); if(codecId == CodecInvalid){ return nullptr; } return getTrackByCodecId(codecId); } RtpCodec::Ptr Factory::getRtpEncoderById(CodecId codecId, uint32_t ui32Ssrc, uint32_t ui32MtuSize, uint32_t ui32SampleRate, uint8_t ui8PlayloadType, uint8_t ui8Interleaved) { switch (codecId){ case CodecH264: return std::make_shared(ui32Ssrc,ui32MtuSize,ui32SampleRate,ui8PlayloadType,ui8Interleaved); case CodecAAC: return std::make_shared(ui32Ssrc,ui32MtuSize,ui32SampleRate,ui8PlayloadType,ui8Interleaved); default: WarnL << "暂不支持该CodecId:" << codecId; return nullptr; } } RtpCodec::Ptr Factory::getRtpDecoderById(CodecId codecId) { switch (codecId){ case CodecH264: return std::make_shared(); case CodecAAC: return std::make_shared(); default: WarnL << "暂不支持该CodecId:" << codecId; return nullptr; } } RtmpCodec::Ptr Factory::getRtmpCodecByTrack(const Track::Ptr &track) { switch (track->getCodecId()){ case CodecH264: return std::make_shared(track); case CodecAAC: return std::make_shared(track); default: WarnL << "暂不支持该CodecId:" << track->getCodecId(); return nullptr; } } AMFValue Factory::getAmfByCodecId(CodecId codecId) { switch (codecId){ case CodecAAC:{ return AMFValue("mp4a"); } case CodecH264:{ return AMFValue("avc1"); } default: return AMFValue(AMF_NULL); } } }//namespace mediakit