Commit 613399cc6d14cfe5b8a245d462629ecee5deb2db

Authored by xiaoQQya
1 parent 12c4128e

fix(play): 修复单端口推流下级自定义 ssrc 时, 流注册后接口仍然超时的问题

src/main/java/com/genersoft/iot/vmp/service/impl/InviteStreamServiceImpl.java
@@ -257,7 +257,7 @@ public class InviteStreamServiceImpl implements IInviteStreamService { @@ -257,7 +257,7 @@ public class InviteStreamServiceImpl implements IInviteStreamService {
257 ":" + inviteInfo.getDeviceId() + 257 ":" + inviteInfo.getDeviceId() +
258 ":" + inviteInfo.getChannelId() + 258 ":" + inviteInfo.getChannelId() +
259 ":" + inviteInfo.getStream() + 259 ":" + inviteInfo.getStream() +
260 - ":" + inviteInfo.getSsrcInfo().getSsrc(); 260 + ":" + ssrc;
261 if (inviteInfoInDb.getSsrcInfo() != null) { 261 if (inviteInfoInDb.getSsrcInfo() != null) {
262 inviteInfoInDb.getSsrcInfo().setSsrc(ssrc); 262 inviteInfoInDb.getSsrcInfo().setSsrc(ssrc);
263 } 263 }