초기 커밋.

This commit is contained in:
2026-02-03 11:33:58 +09:00
parent 90b3415a1f
commit b6b823b1c4
71 changed files with 4794 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
namespace Inno.Rtsp.RawFramesDecoding.DecodedFrames.Video
{
public interface IDecodedVideoFrame
{
}
}

View 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 { }
}