21 lines
478 B
C#
21 lines
478 B
C#
|
|
using Core.WcfProtocol;
|
|||
|
|
using CoreWCF;
|
|||
|
|
using SHH.MjpegPlayer;
|
|||
|
|
|
|||
|
|
namespace Player.MJPEG
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// IMjpegImagesService 接口
|
|||
|
|
/// </summary>
|
|||
|
|
[ServiceContract]
|
|||
|
|
public interface IMjpegImagesService : ICoreImagesService
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 注册模型
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="req"></param>
|
|||
|
|
/// <returns></returns>
|
|||
|
|
[OperationContract]
|
|||
|
|
MjpegPlayInfoReply GetRtspRtcPlayInfo();
|
|||
|
|
}
|
|||
|
|
}
|