panlinlin
2020-12-27 6968839f21fb05bf6e3204c2040ee47130006cd0
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/ISIPCommander.java
@@ -2,6 +2,7 @@
import com.genersoft.iot.vmp.common.StreamInfo;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.event.SipSubscribe;
import com.genersoft.iot.vmp.media.zlm.ZLMHttpHookSubscribe;
/**    
@@ -83,7 +84,7 @@
    * @param device  视频设备
    * @param channelId  预览通道
    */
   void playStreamCmd(Device device, String channelId, ZLMHttpHookSubscribe.Event event);
   void playStreamCmd(Device device, String channelId, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   
   /**
    * 请求回放视频流
@@ -93,7 +94,7 @@
    * @param startTime 开始时间,格式要求:yyyy-MM-dd HH:mm:ss
    * @param endTime 结束时间,格式要求:yyyy-MM-dd HH:mm:ss
    */
   void playbackStreamCmd(Device device, String channelId, String startTime, String endTime, ZLMHttpHookSubscribe.Event event);
   void playbackStreamCmd(Device device, String channelId, String startTime, String endTime, ZLMHttpHookSubscribe.Event event, SipSubscribe.Event errorEvent);
   
   /**
    * 视频流停止
@@ -175,7 +176,7 @@
    * 
    * @param device 视频设备
    */
   boolean catalogQuery(Device device);
   boolean catalogQuery(Device device, SipSubscribe.Event errorEvent);
   
   /**
    * 查询录像信息
@@ -213,4 +214,11 @@
    * @param device 视频设备
    */
   boolean mobilePostitionQuery(Device device);
   /**
    * 释放rtpserver
    * @param device
    * @param channelId
    */
    void closeRTPServer(Device device, String channelId);
}