mirror of
https://github.com/mpv-player/mpv
synced 2024-12-29 10:32:15 +00:00
Remove some superfluous casts. Fixes a few compile warnings.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1322 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
61bce79d66
commit
c46b19f3a8
@ -389,11 +389,11 @@ long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPB
|
||||
|
||||
#define ICDecompressBeginEx(hic, lpbiInput, lpbiOutput) \
|
||||
ICUniversalEx( \
|
||||
hic, ICM_DECOMPRESSEX_BEGIN, (long)(void*)(lpbiInput), \
|
||||
(long)(void*)(lpbiOutput) \
|
||||
hic, ICM_DECOMPRESSEX_BEGIN, (lpbiInput), \
|
||||
(lpbiOutput) \
|
||||
)
|
||||
|
||||
#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \
|
||||
#define ICDecompressQuery(hic, lpbiInput, lpbiOutput) \
|
||||
ICSendMessage( \
|
||||
hic,ICM_DECOMPRESS_QUERY, (long)(void*)(lpbiInput), \
|
||||
(long) (void*)(lpbiOutput) \
|
||||
@ -401,8 +401,8 @@ long VFWAPIV ICUniversalEx(HIC hic,int command,LPBITMAPINFOHEADER lpbiFormat,LPB
|
||||
|
||||
#define ICDecompressQueryEx(hic, lpbiInput, lpbiOutput) \
|
||||
ICUniversalEx( \
|
||||
hic,ICM_DECOMPRESSEX_QUERY, (long)(void*)(lpbiInput), \
|
||||
(long) (void*)(lpbiOutput) \
|
||||
hic,ICM_DECOMPRESSEX_QUERY, (lpbiInput), \
|
||||
(lpbiOutput) \
|
||||
)
|
||||
|
||||
#define ICDecompressGetFormat(hic, lpbiInput, lpbiOutput) \
|
||||
|
Loading…
Reference in New Issue
Block a user