Beispiel #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();
 }
        static extern int SendMessage(	
			IntPtr hwnd, 
			int wMsg,
			int wParam,
			ref BITMAPINFO lParam
			);
Beispiel #3
0
 public ICDecompressor(COMPVARS cp, BITMAPINFO biIn, int fourcc)
     : base(cp, biIn, ICMODE.ICMODE_DECOMPRESS, fourcc)
 {
 }
Beispiel #4
0
 public static extern bool ICSeqCompressFrameStart(
     COMPVARS pc,
     ref BITMAPINFO lpbiIn
     );
Beispiel #5
0
 public static extern int ICSendMessage(int hic, int msg, ref BITMAPINFO dw1, ref BITMAPINFO dw2);
Beispiel #6
0
 public static extern int ICCompressGetFormatSize(
     int hic,
     ref BITMAPINFO lpbiInput
     );