24 lines
634 B
C#
24 lines
634 B
C#
using System;
|
|
using RtspModule;
|
|
using Inno.Rtsp.RawFramesDecoding.DecodedFrames.Video;
|
|
|
|
namespace Inno.Rtsp
|
|
{
|
|
public class RtspPlayer : IDisposable
|
|
{
|
|
public event EventHandler<IDecodedVideoFrame> RtspFrameReceived;
|
|
public event EventHandler<string> ConnectionChanged;
|
|
|
|
public void Init(RtspConnectionParameter param) { }
|
|
public void StartRtspStreaming() { }
|
|
public void StopRtspStreaming() { }
|
|
public void ChangeAddress(RtspConnectionParameter param) { }
|
|
public void Dispose() { }
|
|
}
|
|
}
|
|
|
|
namespace Inno.Rtsp.RawFramesReceiving
|
|
{
|
|
public class RawFramesSource { }
|
|
}
|