Commit 613399cc6d14cfe5b8a245d462629ecee5deb2db
1 parent
12c4128e
fix(play): 修复单端口推流下级自定义 ssrc 时, 流注册后接口仍然超时的问题
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/genersoft/iot/vmp/service/impl/InviteStreamServiceImpl.java
| ... | ... | @@ -257,7 +257,7 @@ public class InviteStreamServiceImpl implements IInviteStreamService { |
| 257 | 257 | ":" + inviteInfo.getDeviceId() + |
| 258 | 258 | ":" + inviteInfo.getChannelId() + |
| 259 | 259 | ":" + inviteInfo.getStream() + |
| 260 | - ":" + inviteInfo.getSsrcInfo().getSsrc(); | |
| 260 | + ":" + ssrc; | |
| 261 | 261 | if (inviteInfoInDb.getSsrcInfo() != null) { |
| 262 | 262 | inviteInfoInDb.getSsrcInfo().setSsrc(ssrc); |
| 263 | 263 | } | ... | ... |