添加RtspMaker类

This commit is contained in:
xiongziliang
2018-10-24 09:45:57 +08:00
parent 92ea956730
commit f3f7a96281
4 changed files with 169 additions and 138 deletions

23
src/Rtsp/RtspMaker.cpp Normal file
View File

@@ -0,0 +1,23 @@
//
// Created by xzl on 2018/10/24.
//
#include "RtspMaker.h"
#include "Common/Factory.h"
namespace ZL {
namespace Rtsp {
void RtspMaker::addTrack(const Track::Ptr &track, uint32_t ssrc, int mtu) {
if (track->getCodecId() == CodecInvalid) {
addTrack(std::make_shared<TitleSdp>(), ssrc, mtu);
} else {
Sdp::Ptr sdp = Factory::getSdpByTrack(track);
if (sdp) {
addTrack(sdp, ssrc, mtu);
}
}
}
} /* namespace Rtsp */
} /* namespace ZL */