/// <summary>Paste a number of frames from another video stream into this stream</summary> /// <param name="sourceStream">Stream to copy from</param> /// <param name="copyPosition">Index of the first frame to copy</param> /// <param name="pastePosition">Where to paste the copied frames</param> /// <param name="length">Count of frames to paste</param> public void Paste(VideoStream sourceStream, int copyPosition, int pastePosition, int length) { Paste(sourceStream.StreamPointer, copyPosition, pastePosition, length); }