mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[MSVIDC32] Sync with Wine Staging 3.3. CORE-14434
This commit is contained in:
parent
48cc7814c2
commit
c6d247b571
4 changed files with 112 additions and 33 deletions
|
@ -19,6 +19,8 @@
|
||||||
#ifndef __MSVIDC32_PRIVATE_H
|
#ifndef __MSVIDC32_PRIVATE_H
|
||||||
#define __MSVIDC32_PRIVATE_H
|
#define __MSVIDC32_PRIVATE_H
|
||||||
|
|
||||||
|
#include <windef.h>
|
||||||
|
|
||||||
#define IDS_NAME 100
|
#define IDS_NAME 100
|
||||||
#define IDS_DESCRIPTION 101
|
#define IDS_DESCRIPTION 101
|
||||||
|
|
||||||
|
|
|
@ -31,21 +31,17 @@
|
||||||
* if it's present, then the data is PAL8; RGB555 otherwise.
|
* if it's present, then the data is PAL8; RGB555 otherwise.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
|
||||||
#define _INC_WINDOWS
|
|
||||||
#define COM_NO_WINDOWS_H
|
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <windef.h>
|
#include "windef.h"
|
||||||
#include <winbase.h>
|
#include "winbase.h"
|
||||||
#include <wingdi.h>
|
#include "wingdi.h"
|
||||||
//#include "winuser.h"
|
#include "winuser.h"
|
||||||
//#include "commdlg.h"
|
#include "commdlg.h"
|
||||||
#include <vfw.h>
|
#include "vfw.h"
|
||||||
//#include "mmsystem.h"
|
#include "mmsystem.h"
|
||||||
#include "msvidc32_private.h"
|
#include "msvidc32_private.h"
|
||||||
|
|
||||||
#include <wine/debug.h>
|
#include "wine/debug.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(msvidc32);
|
WINE_DEFAULT_DEBUG_CHANNEL(msvidc32);
|
||||||
|
|
||||||
|
@ -71,9 +67,14 @@ typedef BYTE uint8_t;
|
||||||
|
|
||||||
typedef struct Msvideo1Context {
|
typedef struct Msvideo1Context {
|
||||||
DWORD dwMagic;
|
DWORD dwMagic;
|
||||||
BOOL mode_8bit; /* if it's not 8-bit, it's 16-bit */
|
int depth;
|
||||||
} Msvideo1Context;
|
} Msvideo1Context;
|
||||||
|
|
||||||
|
static inline int get_stride(int width, int depth)
|
||||||
|
{
|
||||||
|
return ((depth * width + 31) >> 3) & ~3;
|
||||||
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
msvideo1_decode_8bit( int width, int height, const unsigned char *buf, int buf_size,
|
msvideo1_decode_8bit( int width, int height, const unsigned char *buf, int buf_size,
|
||||||
unsigned char *pixels, int stride)
|
unsigned char *pixels, int stride)
|
||||||
|
@ -331,8 +332,15 @@ CRAM_DecompressQuery( Msvideo1Context *info, LPBITMAPINFO in, LPBITMAPINFO out )
|
||||||
TRACE("out->bpp = %d\n", out->bmiHeader.biBitCount );
|
TRACE("out->bpp = %d\n", out->bmiHeader.biBitCount );
|
||||||
TRACE("out->height = %d\n", out->bmiHeader.biHeight );
|
TRACE("out->height = %d\n", out->bmiHeader.biHeight );
|
||||||
TRACE("out->width = %d\n", out->bmiHeader.biWidth );
|
TRACE("out->width = %d\n", out->bmiHeader.biWidth );
|
||||||
if(( in->bmiHeader.biBitCount != out->bmiHeader.biBitCount ) ||
|
|
||||||
( in->bmiHeader.biPlanes != out->bmiHeader.biPlanes ) ||
|
if ((in->bmiHeader.biBitCount != out->bmiHeader.biBitCount) &&
|
||||||
|
(in->bmiHeader.biBitCount != 16 || out->bmiHeader.biBitCount != 24))
|
||||||
|
{
|
||||||
|
TRACE("incompatible depth requested\n");
|
||||||
|
return ICERR_BADFORMAT;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(( in->bmiHeader.biPlanes != out->bmiHeader.biPlanes ) ||
|
||||||
( in->bmiHeader.biHeight != out->bmiHeader.biHeight ) ||
|
( in->bmiHeader.biHeight != out->bmiHeader.biHeight ) ||
|
||||||
( in->bmiHeader.biWidth != out->bmiHeader.biWidth ))
|
( in->bmiHeader.biWidth != out->bmiHeader.biWidth ))
|
||||||
{
|
{
|
||||||
|
@ -359,12 +367,17 @@ CRAM_DecompressGetFormat( Msvideo1Context *info, LPBITMAPINFO in, LPBITMAPINFO o
|
||||||
if (in->bmiHeader.biBitCount <= 8)
|
if (in->bmiHeader.biBitCount <= 8)
|
||||||
size += in->bmiHeader.biClrUsed * sizeof(RGBQUAD);
|
size += in->bmiHeader.biClrUsed * sizeof(RGBQUAD);
|
||||||
|
|
||||||
|
if (in->bmiHeader.biBitCount != 8 && in->bmiHeader.biBitCount != 16)
|
||||||
|
return ICERR_BADFORMAT;
|
||||||
|
|
||||||
if( out )
|
if( out )
|
||||||
{
|
{
|
||||||
memcpy( out, in, size );
|
memcpy( out, in, size );
|
||||||
|
out->bmiHeader.biWidth = in->bmiHeader.biWidth & ~1;
|
||||||
|
out->bmiHeader.biHeight = in->bmiHeader.biHeight & ~1;
|
||||||
out->bmiHeader.biCompression = BI_RGB;
|
out->bmiHeader.biCompression = BI_RGB;
|
||||||
out->bmiHeader.biSizeImage = in->bmiHeader.biHeight
|
out->bmiHeader.biSizeImage = in->bmiHeader.biHeight *
|
||||||
* in->bmiHeader.biWidth *4;
|
get_stride(out->bmiHeader.biWidth, out->bmiHeader.biBitCount);
|
||||||
return ICERR_OK;
|
return ICERR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -380,21 +393,56 @@ static LRESULT CRAM_DecompressBegin( Msvideo1Context *info, LPBITMAPINFO in, LPB
|
||||||
|
|
||||||
TRACE("bitmap is %d bpp\n", in->bmiHeader.biBitCount);
|
TRACE("bitmap is %d bpp\n", in->bmiHeader.biBitCount);
|
||||||
if( in->bmiHeader.biBitCount == 8 )
|
if( in->bmiHeader.biBitCount == 8 )
|
||||||
info->mode_8bit = TRUE;
|
info->depth = 8;
|
||||||
else if( in->bmiHeader.biBitCount == 16 )
|
else if( in->bmiHeader.biBitCount == 16 )
|
||||||
info->mode_8bit = FALSE;
|
info->depth = 16;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
info->mode_8bit = FALSE;
|
info->depth = 0;
|
||||||
FIXME("Unsupported output format %i\n", in->bmiHeader.biBitCount);
|
FIXME("Unsupported output format %i\n", in->bmiHeader.biBitCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ICERR_OK;
|
return ICERR_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void convert_depth(char *input, int depth_in, char *output, BITMAPINFOHEADER *out_hdr)
|
||||||
|
{
|
||||||
|
int x, y;
|
||||||
|
int stride_in = get_stride(out_hdr->biWidth, depth_in);
|
||||||
|
int stride_out = get_stride(out_hdr->biWidth, out_hdr->biBitCount);
|
||||||
|
|
||||||
|
if (depth_in == 16 && out_hdr->biBitCount == 24)
|
||||||
|
{
|
||||||
|
static const unsigned char convert_5to8[] =
|
||||||
|
{
|
||||||
|
0x00, 0x08, 0x10, 0x19, 0x21, 0x29, 0x31, 0x3a,
|
||||||
|
0x42, 0x4a, 0x52, 0x5a, 0x63, 0x6b, 0x73, 0x7b,
|
||||||
|
0x84, 0x8c, 0x94, 0x9c, 0xa5, 0xad, 0xb5, 0xbd,
|
||||||
|
0xc5, 0xce, 0xd6, 0xde, 0xe6, 0xef, 0xf7, 0xff,
|
||||||
|
};
|
||||||
|
|
||||||
|
for (y = 0; y < out_hdr->biHeight; y++)
|
||||||
|
{
|
||||||
|
WORD *src_row = (WORD *)(input + y * stride_in);
|
||||||
|
char *out_row = output + y * stride_out;
|
||||||
|
|
||||||
|
for (x = 0; x < out_hdr->biWidth; x++)
|
||||||
|
{
|
||||||
|
WORD pixel = *src_row++;
|
||||||
|
*out_row++ = convert_5to8[(pixel & 0x7c00u) >> 10];
|
||||||
|
*out_row++ = convert_5to8[(pixel & 0x03e0u) >> 5];
|
||||||
|
*out_row++ = convert_5to8[(pixel & 0x001fu)];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
FIXME("Conversion from %d to %d bit unimplemented\n", depth_in, out_hdr->biBitCount);
|
||||||
|
}
|
||||||
|
|
||||||
static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD size )
|
static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD size )
|
||||||
{
|
{
|
||||||
LONG width, height, stride, sz;
|
LONG width, height, stride, sz;
|
||||||
|
void *output;
|
||||||
|
|
||||||
TRACE("ICM_DECOMPRESS %p %p %d\n", info, icd, size);
|
TRACE("ICM_DECOMPRESS %p %p %d\n", info, icd, size);
|
||||||
|
|
||||||
|
@ -405,18 +453,33 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
|
||||||
|
|
||||||
width = icd->lpbiInput->biWidth;
|
width = icd->lpbiInput->biWidth;
|
||||||
height = icd->lpbiInput->biHeight;
|
height = icd->lpbiInput->biHeight;
|
||||||
stride = width; /* in bytes or 16bit words */
|
|
||||||
sz = icd->lpbiInput->biSizeImage;
|
sz = icd->lpbiInput->biSizeImage;
|
||||||
|
|
||||||
if (info->mode_8bit)
|
output = icd->lpOutput;
|
||||||
|
|
||||||
|
if (icd->lpbiOutput->biBitCount != info->depth)
|
||||||
{
|
{
|
||||||
|
output = HeapAlloc(GetProcessHeap(), 0, icd->lpbiOutput->biWidth * icd->lpbiOutput->biHeight * info->depth / 8);
|
||||||
|
if (!output) return ICERR_MEMORY;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info->depth == 8)
|
||||||
|
{
|
||||||
|
stride = get_stride(width, 8);
|
||||||
msvideo1_decode_8bit( width, height, icd->lpInput, sz,
|
msvideo1_decode_8bit( width, height, icd->lpInput, sz,
|
||||||
icd->lpOutput, stride);
|
output, stride );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
stride = get_stride(width, 16) / 2;
|
||||||
msvideo1_decode_16bit( width, height, icd->lpInput, sz,
|
msvideo1_decode_16bit( width, height, icd->lpInput, sz,
|
||||||
icd->lpOutput, stride);
|
output, stride );
|
||||||
|
}
|
||||||
|
|
||||||
|
if (icd->lpbiOutput->biBitCount != info->depth)
|
||||||
|
{
|
||||||
|
convert_depth(output, info->depth, icd->lpOutput, icd->lpbiOutput);
|
||||||
|
HeapFree(GetProcessHeap(), 0, output);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ICERR_OK;
|
return ICERR_OK;
|
||||||
|
@ -425,6 +488,7 @@ static LRESULT CRAM_Decompress( Msvideo1Context *info, ICDECOMPRESS *icd, DWORD
|
||||||
static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DWORD size )
|
static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DWORD size )
|
||||||
{
|
{
|
||||||
LONG width, height, stride, sz;
|
LONG width, height, stride, sz;
|
||||||
|
void *output;
|
||||||
|
|
||||||
TRACE("ICM_DECOMPRESSEX %p %p %d\n", info, icd, size);
|
TRACE("ICM_DECOMPRESSEX %p %p %d\n", info, icd, size);
|
||||||
|
|
||||||
|
@ -435,18 +499,33 @@ static LRESULT CRAM_DecompressEx( Msvideo1Context *info, ICDECOMPRESSEX *icd, DW
|
||||||
|
|
||||||
width = icd->lpbiSrc->biWidth;
|
width = icd->lpbiSrc->biWidth;
|
||||||
height = icd->lpbiSrc->biHeight;
|
height = icd->lpbiSrc->biHeight;
|
||||||
stride = width;
|
|
||||||
sz = icd->lpbiSrc->biSizeImage;
|
sz = icd->lpbiSrc->biSizeImage;
|
||||||
|
|
||||||
if (info->mode_8bit)
|
output = icd->lpDst;
|
||||||
|
|
||||||
|
if (icd->lpbiDst->biBitCount != info->depth)
|
||||||
{
|
{
|
||||||
|
output = HeapAlloc(GetProcessHeap(), 0, icd->lpbiDst->biWidth * icd->lpbiDst->biHeight * info->depth / 8);
|
||||||
|
if (!output) return ICERR_MEMORY;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info->depth == 8)
|
||||||
|
{
|
||||||
|
stride = get_stride(width, 8);
|
||||||
msvideo1_decode_8bit( width, height, icd->lpSrc, sz,
|
msvideo1_decode_8bit( width, height, icd->lpSrc, sz,
|
||||||
icd->lpDst, stride);
|
output, stride );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
stride = get_stride(width, 16) / 2;
|
||||||
msvideo1_decode_16bit( width, height, icd->lpSrc, sz,
|
msvideo1_decode_16bit( width, height, icd->lpSrc, sz,
|
||||||
icd->lpDst, stride);
|
output, stride );
|
||||||
|
}
|
||||||
|
|
||||||
|
if (icd->lpbiDst->biBitCount != info->depth)
|
||||||
|
{
|
||||||
|
convert_depth(output, info->depth, icd->lpDst, icd->lpbiDst);
|
||||||
|
HeapFree(GetProcessHeap(), 0, output);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ICERR_OK;
|
return ICERR_OK;
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <windef.h>
|
|
||||||
|
|
||||||
#include "msvidc32_private.h"
|
#include "msvidc32_private.h"
|
||||||
|
|
||||||
/* UTF-8 */
|
/* UTF-8 */
|
||||||
|
@ -75,7 +73,7 @@
|
||||||
#include "lang/msvidc32_Si.rc"
|
#include "lang/msvidc32_Si.rc"
|
||||||
#endif
|
#endif
|
||||||
#ifdef LANGUAGE_SQ_AL
|
#ifdef LANGUAGE_SQ_AL
|
||||||
#include "lang/msvidc32_Sq.rc"
|
#include "lang/msvidc32_Sq.rc"
|
||||||
#endif
|
#endif
|
||||||
#ifdef LANGUAGE_SV_SE
|
#ifdef LANGUAGE_SV_SE
|
||||||
#include "lang/msvidc32_Sv.rc"
|
#include "lang/msvidc32_Sv.rc"
|
||||||
|
@ -88,4 +86,4 @@
|
||||||
#endif
|
#endif
|
||||||
#ifdef LANGUAGE_ZH_CN
|
#ifdef LANGUAGE_ZH_CN
|
||||||
#include "lang/msvidc32_Zh.rc"
|
#include "lang/msvidc32_Zh.rc"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -126,7 +126,7 @@ reactos/dll/win32/mstask # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/msvcrt20 # Out of sync
|
reactos/dll/win32/msvcrt20 # Out of sync
|
||||||
reactos/dll/win32/msvcrt40 # Out of sync
|
reactos/dll/win32/msvcrt40 # Out of sync
|
||||||
reactos/dll/win32/msvfw32 # Synced to WineStaging-3.3
|
reactos/dll/win32/msvfw32 # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/msvidc32 # Synced to Wine-3.0
|
reactos/dll/win32/msvidc32 # Synced to WineStaging-3.3
|
||||||
reactos/dll/win32/msxml # Synced to WineStaging-2.9
|
reactos/dll/win32/msxml # Synced to WineStaging-2.9
|
||||||
reactos/dll/win32/msxml2 # Synced to WineStaging-2.9
|
reactos/dll/win32/msxml2 # Synced to WineStaging-2.9
|
||||||
reactos/dll/win32/msxml3 # Synced to Wine-3.0
|
reactos/dll/win32/msxml3 # Synced to Wine-3.0
|
||||||
|
|
Loading…
Reference in a new issue