648540858
2022-09-05 cfe9c762d680569136d0246ab61c79cd7e4eba50
src/main/java/com/genersoft/iot/vmp/vmanager/gb28181/play/PlayController.java
@@ -266,12 +266,11 @@
   @Parameter(name = "channelId", description = "通道Id", required = true)
   @GetMapping("/broadcast/stop/{deviceId}/{channelId}")
   @PostMapping("/broadcast/stop/{deviceId}/{channelId}")
   public WVPResult<String> stopBroadcastA(@PathVariable String deviceId, @PathVariable String channelId) {
   public void stopBroadcastA(@PathVariable String deviceId, @PathVariable String channelId) {
      if (logger.isDebugEnabled()) {
         logger.debug("停止语音广播API调用");
      }
      playService.stopAudioBroadcast(deviceId, channelId);
      return new WVPResult<>(0, "success", null);
   }
   @Operation(summary = "获取所有的ssrc")