Delegate FrameReadyDelegate
Delegate definition for the FrameReady event of classes that implement the IVideoCapture interface.
Namespace: SipLib.Video.Windows
Assembly: SipLib.Video.Windows.dll
Syntax
public delegate void FrameReadyDelegate(int Width, int Height, int fps, byte[] bytes, AVPixelFormat pixelFormat)
Parameters
| Type | Name | Description |
|---|---|---|
| int | Width | Width of the video frame in pixels |
| int | Height | Height of the video frame in pixels |
| int | fps | Frame rate in frames per second |
| byte[] | bytes | Raw frame bytes. The format of the data in this array depends on th pixelFormat parameter |
| AVPixelFormat | pixelFormat | Specifies the pixel format. |