修正 ENABLE_RTPPROXY 的处理

This commit is contained in:
Xiaofeng Wang 2022-07-24 22:30:59 +08:00
parent 0f47abd3ac
commit 8192b37cd4

View File

@ -368,6 +368,7 @@ Value makeMediaSourceJson(MediaSource &media){
return item; return item;
} }
#if defined(ENABLE_RTPPROXY)
uint16_t openRtpServer(uint16_t local_port, const string &stream_id, bool enable_tcp, const string &local_ip, bool re_use_port, uint32_t ssrc) { uint16_t openRtpServer(uint16_t local_port, const string &stream_id, bool enable_tcp, const string &local_ip, bool re_use_port, uint32_t ssrc) {
lock_guard<recursive_mutex> lck(s_rtpServerMapMtx); lock_guard<recursive_mutex> lck(s_rtpServerMapMtx);
if (s_rtpServerMap.find(stream_id) != s_rtpServerMap.end()) { if (s_rtpServerMap.find(stream_id) != s_rtpServerMap.end()) {
@ -399,6 +400,7 @@ bool closeRtpServer(const string &stream_id) {
s_rtpServerMap.erase(it); s_rtpServerMap.erase(it);
return true; return true;
} }
#endif
void getStatisticJson(const function<void(Value &val)> &cb) { void getStatisticJson(const function<void(Value &val)> &cb) {
auto obj = std::make_shared<Value>(objectValue); auto obj = std::make_shared<Value>(objectValue);