C# 클래스 AnimatGuiCtrls.Video.EditableVideoStream

상속: VideoStream
파일 보기 프로젝트 열기: NeuroRoboticTech/AnimatLabPublicSource

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Close ( ) : void

Close the stream

Copy ( int start, int length ) : IntPtr

Copy a number of frames into a temporary stream

Cut ( int start, int length ) : IntPtr

Move a number of frames into a temporary stream

EditableVideoStream ( VideoStream stream ) : System

Create an editable stream from an uneditable stream

Paste ( IntPtr sourceStream, int copyPosition, int pastePosition, int length ) : void

Paste a number of frames from another video stream into this stream

Paste ( VideoStream sourceStream, int copyPosition, int pastePosition, int length ) : void

Paste a number of frames from another video stream into this stream

SetInfo ( Avi info ) : void

Change the AviStreamInfo values and update the frame rate

메소드 상세

Close() 공개 메소드

Close the stream
public Close ( ) : void
리턴 void

Copy() 공개 메소드

Copy a number of frames into a temporary stream
public Copy ( int start, int length ) : IntPtr
start int First frame to copy
length int Count of frames to copy
리턴 System.IntPtr

Cut() 공개 메소드

Move a number of frames into a temporary stream
public Cut ( int start, int length ) : IntPtr
start int First frame to cut
length int Count of frames to cut
리턴 System.IntPtr

EditableVideoStream() 공개 메소드

Create an editable stream from an uneditable stream
public EditableVideoStream ( VideoStream stream ) : System
stream VideoStream uneditable stream
리턴 System

Paste() 공개 메소드

Paste a number of frames from another video stream into this stream
public Paste ( IntPtr sourceStream, int copyPosition, int pastePosition, int length ) : void
sourceStream System.IntPtr Pointer to the unmanaged stream to copy from
copyPosition int Index of the first frame to copy
pastePosition int Where to paste the copied frames
length int Count of frames to paste
리턴 void

Paste() 공개 메소드

Paste a number of frames from another video stream into this stream
public Paste ( VideoStream sourceStream, int copyPosition, int pastePosition, int length ) : void
sourceStream VideoStream Stream to copy from
copyPosition int Index of the first frame to copy
pastePosition int Where to paste the copied frames
length int Count of frames to paste
리턴 void

SetInfo() 공개 메소드

Change the AviStreamInfo values and update the frame rate
public SetInfo ( Avi info ) : void
info Avi
리턴 void