Browse Source

修复回放失败出现脏数据的问题以及添加拉流代理判断错误的问题

pull/375/head
648540858 3 years ago
parent
commit
16e8aa323f
  1. 1
      src/main/java/com/genersoft/iot/vmp/service/impl/PlayServiceImpl.java
  2. 2
      src/main/java/com/genersoft/iot/vmp/storager/impl/VideoManagerStoragerImpl.java

1
src/main/java/com/genersoft/iot/vmp/service/impl/PlayServiceImpl.java

@ -314,6 +314,7 @@ public class PlayServiceImpl implements IPlayService {
}, event -> { }, event -> {
msg.setData(String.format("回放失败, 错误码: %s, %s", event.statusCode, event.msg)); msg.setData(String.format("回放失败, 错误码: %s, %s", event.statusCode, event.msg));
callback.call(msg); callback.call(msg);
streamSession.remove(device.getDeviceId(), channelId, ssrcInfo.getStream());
}); });
return result; return result;
} }

2
src/main/java/com/genersoft/iot/vmp/storager/impl/VideoManagerStoragerImpl.java

@ -716,7 +716,7 @@ public class VideoManagerStoragerImpl implements IVideoManagerStorager {
try { try {
if (streamProxyMapper.add(streamProxyItem) > 0) { if (streamProxyMapper.add(streamProxyItem) > 0) {
if (!StringUtils.isEmpty(streamProxyItem.getGbId())) { if (!StringUtils.isEmpty(streamProxyItem.getGbId())) {
if (gbStreamMapper.add(streamProxyItem) > 0) { if (gbStreamMapper.add(streamProxyItem) <= 0) {
//事务回滚 //事务回滚
dataSourceTransactionManager.rollback(transactionStatus); dataSourceTransactionManager.rollback(transactionStatus);
return false; return false;

Loading…
Cancel
Save