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
 public ICDecompressor(COMPVARS cp, BITMAPINFO biIn, int fourcc)
     : base(cp, biIn, ICMODE.ICMODE_DECOMPRESS, fourcc)
 {
 }
Esempio n. 3
0
 public static extern bool ICSeqCompressFrameStart(
     COMPVARS pc,
     ref BITMAPINFO lpbiIn
     );
Esempio n. 4
0
 public static extern void ICSeqCompressFrameEnd(ref COMPVARS pc);
Esempio n. 5
0
 public static extern int ICSeqCompressFrame(
     COMPVARS pc,
     int uiFlags,
     byte[] lpBits,
     ref bool pfKey,
     ref long plSize
     );
Esempio n. 6
0
 public static extern bool ICCompressorChoose(
     IntPtr hwnd,
     int uiFlags,
     //ref BITMAPINFO pvIn,   
     int pvIn,
     int lpData,
     COMPVARS pc,
     string lpszTitle
     );