mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-18 19:37:50 +08:00
14 lines
544 B
Java
14 lines
544 B
Java
package com.genersoft.iot.vmp.service;
|
|
|
|
import com.genersoft.iot.vmp.gb28181.bean.OpenRTPServerResult;
|
|
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
|
import com.genersoft.iot.vmp.service.bean.ErrorCallback;
|
|
import com.genersoft.iot.vmp.service.bean.RTPServerParam;
|
|
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
|
|
|
public interface IReceiveRtpServerService {
|
|
SSRCInfo openRTPServer(RTPServerParam rtpServerParam, ErrorCallback<OpenRTPServerResult> callback);
|
|
|
|
void closeRTPServer(MediaServer mediaServer, SSRCInfo ssrcInfo);
|
|
}
|