초기 커밋.
This commit is contained in:
23
Inno.Common.Stubs/Inno/Rtsp/RtspPlayer.cs
Normal file
23
Inno.Common.Stubs/Inno/Rtsp/RtspPlayer.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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 { }
|
||||
}
|
||||
Reference in New Issue
Block a user