diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-15 16:02:02 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-15 16:02:02 +0000 |
commit | 72098acee3e9fcfa95662f688f3f8257db3ef068 (patch) | |
tree | f6377e1591f7f87124fb1b7af36cfea3a7e986c5 /src/libw32dll/wine/vfw.h | |
parent | c2fab8bca1738d1ac988c488085ff798321f878d (diff) | |
download | xine-lib-72098acee3e9fcfa95662f688f3f8257db3ef068.tar.gz xine-lib-72098acee3e9fcfa95662f688f3f8257db3ef068.tar.bz2 |
small updates, another codec supported (VP31)
CVS patchset: 1408
CVS date: 2002/01/15 16:02:02
Diffstat (limited to 'src/libw32dll/wine/vfw.h')
-rw-r--r-- | src/libw32dll/wine/vfw.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/src/libw32dll/wine/vfw.h b/src/libw32dll/wine/vfw.h index 0a9e1ce1e..37983db3d 100644 --- a/src/libw32dll/wine/vfw.h +++ b/src/libw32dll/wine/vfw.h @@ -382,7 +382,7 @@ typedef struct { long VFWAPIV ICDecompress(HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiFormat,void* lpData,LPBITMAPINFOHEADER lpbi,void* lpBits); -long VFWAPIV ICDecompressEx(HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiFormat,void* lpData,LPBITMAPINFOHEADER lpbi,void* lpBits); +long VFWAPIV ICDecompressEx(HIC hic,long dwFlags,LPBITMAPINFOHEADER lpbiFormat,void* lpData,LPBITMAPINFOHEADER lpbi,void* lpBits); long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPBITMAPINFOHEADER lpbi); @@ -393,12 +393,24 @@ long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPB (long)(void*)(lpbiOutput) \ ) -#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \ +#define ICDecompressBeginEx(hic, lpbiInput, lpbiOutput) \ + ICUniversalEx( \ + hic, ICM_DECOMPRESSEX_BEGIN, (lpbiInput), \ + (lpbiOutput) \ + ) + +#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \ ICSendMessage( \ hic,ICM_DECOMPRESS_QUERY, (long)(void*)(lpbiInput), \ (long) (void*)(lpbiOutput) \ ) +#define ICDecompressQueryEx(hic, lpbiInput, lpbiOutput) \ + ICUniversalEx( \ + hic,ICM_DECOMPRESSEX_QUERY, (lpbiInput), \ + (lpbiOutput) \ + ) + #define ICDecompressGetFormat(hic, lpbiInput, lpbiOutput) \ ((long)ICSendMessage( \ hic,ICM_DECOMPRESS_GET_FORMAT, (long)(void*)(lpbiInput), \ |