删除冗余设计

This commit is contained in:
xiongziliang
2019-12-26 09:43:44 +08:00
parent 8b23f01509
commit 761a665b1b
11 changed files with 33 additions and 83 deletions

View File

@@ -35,7 +35,7 @@ RtspMuxer::RtspMuxer(const TitleSdp::Ptr &title){
} else{
_sdp = title->getSdp();
}
_rtpRing = std::make_shared<RtpRingInterface::RingType>();
_rtpRing = std::make_shared<RtpRing::RingType>();
}
void RtspMuxer::addTrack(const Track::Ptr &track) {
@@ -69,7 +69,7 @@ string RtspMuxer::getSdp() {
return _sdp;
}
RtpRingInterface::RingType::Ptr RtspMuxer::getRtpRing() const {
RtpRing::RingType::Ptr RtspMuxer::getRtpRing() const {
return _rtpRing;
}