Esempio n. 1
0
 public ICBase(COMPVARS cp, BITMAPINFO biIn, ICMODE mode, int fourcc)
 {
     this.pp = cp;
     this._in = biIn;
     this.mode = mode;
     this.fourcc = fourcc;
     _out = new BITMAPINFO();
 }
Esempio n. 2
0
        static extern int SendMessage(	
			IntPtr hwnd, 
			int wMsg,
			int wParam,
			ref BITMAPINFO lParam
			);
Esempio n. 3
0
 public ICDecompressor(COMPVARS cp, BITMAPINFO biIn, int fourcc)
     : base(cp, biIn, ICMODE.ICMODE_DECOMPRESS, fourcc)
 {
 }
Esempio n. 4
0
 public static extern bool ICSeqCompressFrameStart(
     COMPVARS pc,
     ref BITMAPINFO lpbiIn
     );
Esempio n. 5
0
 public static extern int ICSendMessage(int hic, int msg, ref BITMAPINFO dw1, ref BITMAPINFO dw2);
Esempio n. 6
0
 public static extern int ICCompressGetFormatSize(
     int hic,
     ref BITMAPINFO lpbiInput
     );