| | |
| | | private AuthorizeMsgService authorizeMsgService = SpringUtils.getBean(AuthorizeMsgService.class); |
| | | |
| | | @Resource |
| | | private RealvideoMsg realvideoMsg = SpringUtils.getBean(RealvideoMsg.class); |
| | | private RealvideoMsgService realvideoMsgService = SpringUtils.getBean(RealvideoMsgService.class); |
| | | |
| | | @Resource |
| | | private PlaybackMsgService playbackMsgService = SpringUtils.getBean(PlaybackMsgService.class); |
| | | |
| | | |
| | | @Override |
| | |
| | | baseMsgService.up_base_msg(ctx, out); |
| | | break; |
| | | case UP_AUTHORIZE_MSG: |
| | | log.info("主链路视频时效口令交互({}):{}", DataType.UP_AUTHORIZE_MSG.getCode(), out); |
| | | log.info("视频时效口令交互({}):{}", DataType.UP_AUTHORIZE_MSG.getCode(), out); |
| | | authorizeMsgService.up_authorize_msg(ctx, out); |
| | | break; |
| | | case UP_REALVIDEO_MSG: |
| | | log.info("主链路实时音视频交互({}):{}", DataType.UP_REALVIDEO_MSG.getCode(), out); |
| | | realvideoMsg.up_realvideo_msg(ctx, out); |
| | | log.info("实时音视频交互({}):{}", DataType.UP_REALVIDEO_MSG.getCode(), out); |
| | | realvideoMsgService.up_realvideo_msg(ctx, out); |
| | | break; |
| | | case UP_PLAYBACK_MSG: |
| | | log.info("远程录像回放交互({}):{}", DataType.UP_PLAYBACK_MSG.getCode(), out); |
| | | playbackMsgService.up_playback_msg(ctx, out); |
| | | break; |
| | | default: |
| | | break; |