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