public bool TryReadFrame(out VideoFrame frame, TimeSpan timeout) { return(_frameComposer.TryGetFrame(out frame, timeout)); }
public FrameReadyArgs(VideoFrame frame) { Frame = frame ?? throw new ArgumentNullException(nameof(frame)); }