ZLMediaKit/src/Rtsp/RtspSdp.cpp
2018-10-24 09:45:57 +08:00

15 lines
439 B
C++

#include "RtspSdp.h"
#include "Common/Factory.h"
void Sdp::createRtpEncoder(uint32_t ssrc, int mtu) {
_encoder = Factory::getRtpEncoderById(getCodecId(),
ssrc,
mtu,
_sample_rate,
_playload_type,
getTrackType() * 2);
}