AnimatGuiCtrls.Video.AviManager.GetOpenStream C# (CSharp) Method

GetOpenStream() public method

Get a stream from the internal list of opened streams
Use this method after DecompressToNewFile, to get the copied stream from the new AVI file
public GetOpenStream ( int index ) : VideoStream
index int Index of the stream. The streams are not sorted, the first stream is the one that was opened first.
return VideoStream
        public VideoStream GetOpenStream(int index)
        {
            return (VideoStream)streams[index];
        }