2024-09-04 18:01:54 +08:00
|
|
|
package com.genersoft.iot.vmp.service;
|
|
|
|
|
|
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-04 18:01:54 +08:00
|
|
|
}
|