mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-25 20:27:34 +08:00
格式化代码
This commit is contained in:
parent
09d7670fdf
commit
b12bd6e7ff
@ -43,10 +43,10 @@ void RtspMuxer::onRtp(RtpPacket::Ptr in, bool is_key) {
|
||||
_rtpRing->write(std::move(in), is_key);
|
||||
}
|
||||
|
||||
RtspMuxer::RtspMuxer(const TitleSdp::Ptr &title){
|
||||
if(!title){
|
||||
RtspMuxer::RtspMuxer(const TitleSdp::Ptr &title) {
|
||||
if (!title) {
|
||||
_sdp = std::make_shared<TitleSdp>()->getSdp();
|
||||
} else{
|
||||
} else {
|
||||
_sdp = title->getSdp();
|
||||
}
|
||||
_rtpRing = std::make_shared<RtpRing::RingType>();
|
||||
@ -100,7 +100,7 @@ RtpRing::RingType::Ptr RtspMuxer::getRtpRing() const {
|
||||
|
||||
void RtspMuxer::resetTracks() {
|
||||
_sdp.clear();
|
||||
for(auto &encoder : _encoder){
|
||||
for (auto &encoder : _encoder) {
|
||||
encoder = nullptr;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user