2024-09-04 18:01:54 +08:00
|
|
|
package com.genersoft.iot.vmp.service;
|
|
|
|
|
|
2024-09-06 17:56:24 +08:00
|
|
|
import com.genersoft.iot.vmp.media.bean.MediaServer;
|
2024-09-05 17:59:17 +08:00
|
|
|
import com.genersoft.iot.vmp.media.event.hook.HookData;
|
|
|
|
|
import com.genersoft.iot.vmp.service.bean.ErrorCallback;
|
|
|
|
|
import com.genersoft.iot.vmp.service.bean.RTPServerParam;
|
|
|
|
|
import com.genersoft.iot.vmp.service.bean.SSRCInfo;
|
|
|
|
|
|
2024-09-04 18:01:54 +08:00
|
|
|
public interface IReceiveRtpServerService {
|
2024-09-05 17:59:17 +08:00
|
|
|
SSRCInfo openRTPServer(RTPServerParam rtpServerParam, ErrorCallback<HookData> callback);
|
2024-09-06 17:56:24 +08:00
|
|
|
|
2024-09-09 17:56:46 +08:00
|
|
|
void closeRTPServer(MediaServer mediaServer, SSRCInfo ssrcInfo);
|
2024-09-04 18:01:54 +08:00
|
|
|
}
|