mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[ICCVID] Sync with Wine Staging 1.9.11. CORE-11368
svn path=/trunk/; revision=71549
This commit is contained in:
parent
8f5987dd7f
commit
8436b905ae
2 changed files with 8 additions and 4 deletions
|
@ -95,6 +95,10 @@ static inline BOOL heap_free( LPVOID ptr )
|
|||
return HeapFree( GetProcessHeap(), 0, ptr );
|
||||
}
|
||||
|
||||
static inline int get_stride(int width, int depth)
|
||||
{
|
||||
return ((depth * width + 31) >> 3) & ~3;
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------ */
|
||||
static unsigned char *in_buffer, uiclip[1024], *uiclp = NULL;
|
||||
|
@ -463,7 +467,7 @@ static void decode_cinepak(cinepak_info *cvinfo, unsigned char *buf, int size,
|
|||
break;
|
||||
}
|
||||
|
||||
frm_stride = out_width * bpp;
|
||||
frm_stride = get_stride(out_width, bpp * 8);
|
||||
frm_ptr = output;
|
||||
|
||||
if(frame.length != size)
|
||||
|
@ -848,9 +852,9 @@ static LRESULT ICCVID_DecompressGetFormat( ICCVID_Info *info, LPBITMAPINFO in, L
|
|||
if( out )
|
||||
{
|
||||
memcpy( out, in, size );
|
||||
out->bmiHeader.biBitCount = 24;
|
||||
out->bmiHeader.biCompression = BI_RGB;
|
||||
out->bmiHeader.biSizeImage = in->bmiHeader.biHeight
|
||||
* in->bmiHeader.biWidth *4;
|
||||
out->bmiHeader.biSizeImage = get_stride(in->bmiHeader.biWidth, 24) * in->bmiHeader.biHeight;
|
||||
return ICERR_OK;
|
||||
}
|
||||
return size;
|
||||
|
|
|
@ -73,7 +73,7 @@ reactos/dll/win32/hhctrl.ocx # Synced to WineStaging-1.9.4
|
|||
reactos/dll/win32/hlink # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/hnetcfg # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/httpapi # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/iccvid # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/iccvid # Synced to WineStaging-1.9.11
|
||||
reactos/dll/win32/ieframe # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/imaadp32.acm # Synced to WineStaging-1.9.4
|
||||
reactos/dll/win32/imagehlp # Synced to WineStaging-1.9.4
|
||||
|
|
Loading…
Reference in a new issue