2 * Copyright 1998 Marcus Meissner
3 * Copyright 2000 Bradley Baetz
4 * Copyright 2003 Michael Günnewig
5 * Copyright 2005 Dmitry Timoshkov
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 * FIXME: This all assumes 32 bit codecs
22 * Win95 appears to prefer 32 bit codecs, even from 16 bit code.
23 * There is the ICOpenFunction16 to worry about still, though.
41 #include "msvideo_private.h"
42 #include "wine/debug.h"
44 /* Drivers32 settings */
45 #define HKLM_DRIVERS32 "Software\\Microsoft\\Windows NT\\CurrentVersion\\Drivers32"
47 WINE_DEFAULT_DEBUG_CHANNEL(msvideo
);
49 static inline const char *wine_dbgstr_fcc( DWORD fcc
)
51 return wine_dbg_sprintf("%c%c%c%c",
52 LOBYTE(LOWORD(fcc
)), HIBYTE(LOWORD(fcc
)),
53 LOBYTE(HIWORD(fcc
)), HIBYTE(HIWORD(fcc
)));
56 static WINE_HIC
* MSVIDEO_FirstHic
/* = NULL */;
58 typedef struct _reg_driver reg_driver
;
68 static reg_driver
* reg_driver_list
= NULL
;
70 /* This one is a macro such that it works for both ASCII and Unicode */
71 #define fourcc_to_string(str, fcc) do { \
72 (str)[0] = LOBYTE(LOWORD(fcc)); \
73 (str)[1] = HIBYTE(LOWORD(fcc)); \
74 (str)[2] = LOBYTE(HIWORD(fcc)); \
75 (str)[3] = HIBYTE(HIWORD(fcc)); \
78 HMODULE MSVFW32_hModule
;
80 BOOL WINAPI
DllMain( HINSTANCE hinst
, DWORD reason
, LPVOID reserved
)
82 TRACE("%p,%x,%p\n", hinst
, reason
, reserved
);
86 case DLL_PROCESS_ATTACH
:
87 DisableThreadLibraryCalls(hinst
);
88 MSVFW32_hModule
= hinst
;
94 /******************************************************************
99 static LRESULT
MSVIDEO_SendMessage(WINE_HIC
* whic
, UINT msg
, DWORD_PTR lParam1
, DWORD_PTR lParam2
)
103 #define XX(x) case x: TRACE("(%p,"#x",0x%08lx,0x%08lx)\n",whic,lParam1,lParam2); break
118 XX(ICM_GETDEFAULTQUALITY
);
125 XX(ICM_COMPRESS_FRAMES_INFO
);
126 XX(ICM_COMPRESS_GET_FORMAT
);
127 XX(ICM_COMPRESS_GET_SIZE
);
128 XX(ICM_COMPRESS_QUERY
);
129 XX(ICM_COMPRESS_BEGIN
);
131 XX(ICM_COMPRESS_END
);
132 XX(ICM_DECOMPRESS_GET_FORMAT
);
133 XX(ICM_DECOMPRESS_QUERY
);
134 XX(ICM_DECOMPRESS_BEGIN
);
136 XX(ICM_DECOMPRESS_END
);
137 XX(ICM_DECOMPRESS_SET_PALETTE
);
138 XX(ICM_DECOMPRESS_GET_PALETTE
);
141 XX(ICM_DRAW_GET_PALETTE
);
145 XX(ICM_DRAW_GETTIME
);
148 XX(ICM_DRAW_SETTIME
);
149 XX(ICM_DRAW_REALIZE
);
151 XX(ICM_DRAW_RENDERBUFFER
);
152 XX(ICM_DRAW_START_PLAY
);
153 XX(ICM_DRAW_STOP_PLAY
);
154 XX(ICM_DRAW_SUGGESTFORMAT
);
155 XX(ICM_DRAW_CHANGEPALETTE
);
156 XX(ICM_GETBUFFERSWANTED
);
157 XX(ICM_GETDEFAULTKEYFRAMERATE
);
158 XX(ICM_DECOMPRESSEX_BEGIN
);
159 XX(ICM_DECOMPRESSEX_QUERY
);
160 XX(ICM_DECOMPRESSEX
);
161 XX(ICM_DECOMPRESSEX_END
);
162 XX(ICM_SET_STATUS_PROC
);
164 FIXME("(%p,0x%08x,0x%08lx,0x%08lx) unknown message\n",whic
,msg
,lParam1
,lParam2
);
169 if (whic
->driverproc
) {
170 /* dwDriverId parameter is the value returned by the DRV_OPEN */
171 ret
= whic
->driverproc(whic
->driverId
, whic
->hdrv
, msg
, lParam1
, lParam2
);
173 ret
= SendDriverMessage(whic
->hdrv
, msg
, lParam1
, lParam2
);
176 TRACE(" -> 0x%08lx\n", ret
);
180 static int compare_fourcc(DWORD fcc1
, DWORD fcc2
)
184 fourcc_to_string(fcc_str1
, fcc1
);
185 fourcc_to_string(fcc_str2
, fcc2
);
186 return strncasecmp(fcc_str1
, fcc_str2
, 4);
189 typedef BOOL (*enum_handler_t
)(const char*, unsigned int, void*);
191 static BOOL
enum_drivers(DWORD fccType
, enum_handler_t handler
, void* param
)
193 CHAR buf
[2048], fccTypeStr
[5], *s
;
194 DWORD i
, cnt
= 0, lRet
;
198 fourcc_to_string(fccTypeStr
, fccType
);
201 /* first, go through the registry entries */
202 lRet
= RegOpenKeyExA(HKEY_LOCAL_MACHINE
, HKLM_DRIVERS32
, 0, KEY_QUERY_VALUE
, &hKey
);
203 if (lRet
== ERROR_SUCCESS
)
205 DWORD name
, data
, type
;
210 data
= sizeof buf
- name
;
211 lRet
= RegEnumValueA(hKey
, i
++, buf
, &name
, 0, &type
, (LPBYTE
)(buf
+name
), &data
);
212 if (lRet
== ERROR_NO_MORE_ITEMS
) break;
213 if (lRet
!= ERROR_SUCCESS
) continue;
214 if (name
!= 9 || strncasecmp(buf
, fccTypeStr
, 5)) continue;
216 if ((result
= handler(buf
, cnt
++, param
))) break;
220 if (result
) return result
;
222 /* if that didn't work, go through the values in system.ini */
223 if (GetPrivateProfileSectionA("drivers32", buf
, sizeof(buf
), "system.ini"))
225 for (s
= buf
; *s
; s
+= strlen(s
) + 1)
227 TRACE("got %s\n", s
);
228 if (strncasecmp(s
, fccTypeStr
, 5) || s
[9] != '=') continue;
229 if ((result
= handler(s
, cnt
++, param
))) break;
236 /******************************************************************
241 static WINE_HIC
* MSVIDEO_GetHicPtr(HIC hic
)
245 for (whic
= MSVIDEO_FirstHic
; whic
&& whic
->hic
!= hic
; whic
= whic
->next
);
249 /***********************************************************************
250 * VideoForWindowsVersion [MSVFW32.2]
251 * VideoForWindowsVersion [MSVIDEO.2]
252 * Returns the version in major.minor form.
253 * In Windows95 this returns 0x040003b6 (4.950)
255 DWORD WINAPI
VideoForWindowsVersion(void)
257 return 0x040003B6; /* 4.950 */
260 static BOOL
ICInfo_enum_handler(const char *drv
, unsigned int nr
, void *param
)
262 ICINFO
*lpicinfo
= param
;
263 DWORD fccHandler
= mmioStringToFOURCCA(drv
+ 5, 0);
265 /* exact match of fccHandler or nth driver found */
266 if ((lpicinfo
->fccHandler
!= nr
) && (lpicinfo
->fccHandler
!= fccHandler
))
269 lpicinfo
->fccHandler
= fccHandler
;
270 lpicinfo
->dwFlags
= 0;
271 lpicinfo
->dwVersion
= 0;
272 lpicinfo
->dwVersionICM
= ICVERSION
;
273 lpicinfo
->szName
[0] = 0;
274 lpicinfo
->szDescription
[0] = 0;
275 MultiByteToWideChar(CP_ACP
, 0, drv
+ 10, -1, lpicinfo
->szDriver
,
276 sizeof(lpicinfo
->szDriver
)/sizeof(WCHAR
));
281 /***********************************************************************
283 * Get information about an installable compressor. Return TRUE if there
287 * fccType [I] type of compressor (e.g. 'vidc')
288 * fccHandler [I] real fcc for handler or <n>th compressor
289 * lpicinfo [O] information about compressor
291 BOOL VFWAPI
ICInfo( DWORD fccType
, DWORD fccHandler
, ICINFO
*lpicinfo
)
293 TRACE("(%s,%s/%08x,%p)\n",
294 wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), fccHandler
, lpicinfo
);
296 lpicinfo
->fccType
= fccType
;
297 lpicinfo
->fccHandler
= fccHandler
;
298 return enum_drivers(fccType
, ICInfo_enum_handler
, lpicinfo
);
301 static DWORD IC_HandleRef
= 1;
303 /***********************************************************************
304 * ICInstall [MSVFW32.@]
306 BOOL VFWAPI
ICInstall(DWORD fccType
, DWORD fccHandler
, LPARAM lParam
, LPSTR szDesc
, UINT wFlags
)
311 TRACE("(%s,%s,%p,%p,0x%08x)\n", wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), (void*)lParam
, szDesc
, wFlags
);
313 /* Check if a driver is already registered */
314 for (driver
= reg_driver_list
; driver
; driver
= driver
->next
)
316 if (!compare_fourcc(fccType
, driver
->fccType
) &&
317 !compare_fourcc(fccHandler
, driver
->fccHandler
))
320 if (driver
) return FALSE
;
322 /* Register the driver */
323 driver
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(reg_driver
));
324 if (!driver
) goto oom
;
325 driver
->fccType
= fccType
;
326 driver
->fccHandler
= fccHandler
;
330 case ICINSTALL_FUNCTION
:
331 driver
->proc
= (DRIVERPROC
)lParam
;
334 case ICINSTALL_DRIVER
:
336 len
= MultiByteToWideChar(CP_ACP
, 0, (char*)lParam
, -1, NULL
, 0);
337 driver
->name
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
338 if (!driver
->name
) goto oom
;
339 MultiByteToWideChar(CP_ACP
, 0, (char*)lParam
, -1, driver
->name
, len
);
342 ERR("Invalid flags!\n");
343 HeapFree(GetProcessHeap(), 0, driver
);
347 /* Insert our driver in the list*/
348 driver
->next
= reg_driver_list
;
349 reg_driver_list
= driver
;
353 HeapFree(GetProcessHeap(), 0, driver
);
357 /***********************************************************************
358 * ICRemove [MSVFW32.@]
360 BOOL VFWAPI
ICRemove(DWORD fccType
, DWORD fccHandler
, UINT wFlags
)
362 reg_driver
** pdriver
;
365 TRACE("(%s,%s,0x%08x)\n", wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), wFlags
);
367 /* Check if a driver is already registered */
368 for (pdriver
= ®_driver_list
; *pdriver
; pdriver
= &(*pdriver
)->next
)
370 if (!compare_fourcc(fccType
, (*pdriver
)->fccType
) &&
371 !compare_fourcc(fccHandler
, (*pdriver
)->fccHandler
))
377 /* Remove the driver from the list */
379 *pdriver
= (*pdriver
)->next
;
380 HeapFree(GetProcessHeap(), 0, drv
->name
);
381 HeapFree(GetProcessHeap(), 0, drv
);
387 /***********************************************************************
389 * Opens an installable compressor. Return special handle.
391 HIC VFWAPI
ICOpen(DWORD fccType
, DWORD fccHandler
, UINT wMode
)
397 static const WCHAR drv32W
[] = {'d','r','i','v','e','r','s','3','2','\0'};
400 TRACE("(%s,%s,0x%08x)\n", wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), wMode
);
402 /* Check if there is a registered driver that matches */
403 driver
= reg_driver_list
;
405 if (!compare_fourcc(fccType
, driver
->fccType
) &&
406 !compare_fourcc(fccHandler
, driver
->fccHandler
))
409 driver
= driver
->next
;
411 if (driver
&& driver
->proc
)
412 /* The driver has been registered at runtime with its driverproc */
413 return ICOpenFunction(fccType
, fccHandler
, wMode
, driver
->proc
);
415 /* Well, lParam2 is in fact a LPVIDEO_OPEN_PARMS, but it has the
416 * same layout as ICOPEN
418 icopen
.dwSize
= sizeof(ICOPEN
);
419 icopen
.fccType
= fccType
;
420 icopen
.fccHandler
= fccHandler
;
421 icopen
.dwVersion
= 0x00001000; /* FIXME */
422 icopen
.dwFlags
= wMode
;
424 icopen
.pV1Reserved
= NULL
;
425 icopen
.pV2Reserved
= NULL
;
426 icopen
.dnDevNode
= 0; /* FIXME */
429 /* The driver is registered in the registry */
430 fourcc_to_string(codecname
, fccType
);
432 fourcc_to_string(codecname
+ 5, fccHandler
);
435 hdrv
= OpenDriver(codecname
, drv32W
, (LPARAM
)&icopen
);
439 /* The driver has been registered at runtime with its name */
440 hdrv
= OpenDriver(driver
->name
, NULL
, (LPARAM
)&icopen
);
445 whic
= HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_HIC
));
448 CloseDriver(hdrv
, 0, 0);
452 whic
->driverproc
= NULL
;
453 whic
->type
= fccType
;
454 whic
->handler
= fccHandler
;
455 while (MSVIDEO_GetHicPtr((HIC
)(ULONG_PTR
)IC_HandleRef
) != NULL
) IC_HandleRef
++;
456 whic
->hic
= (HIC
)(ULONG_PTR
)IC_HandleRef
++;
457 whic
->next
= MSVIDEO_FirstHic
;
458 MSVIDEO_FirstHic
= whic
;
460 TRACE("=> %p\n", whic
->hic
);
464 /***********************************************************************
465 * ICOpenFunction [MSVFW32.@]
467 HIC VFWAPI
ICOpenFunction(DWORD fccType
, DWORD fccHandler
, UINT wMode
, DRIVERPROC lpfnHandler
)
472 TRACE("(%s,%s,%d,%p)\n",
473 wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), wMode
, lpfnHandler
);
475 icopen
.dwSize
= sizeof(ICOPEN
);
476 icopen
.fccType
= fccType
;
477 icopen
.fccHandler
= fccHandler
;
478 icopen
.dwVersion
= ICVERSION
;
479 icopen
.dwFlags
= wMode
;
481 icopen
.pV1Reserved
= NULL
;
482 icopen
.pV2Reserved
= NULL
;
483 icopen
.dnDevNode
= 0; /* FIXME */
485 whic
= HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_HIC
));
488 whic
->driverproc
= lpfnHandler
;
489 while (MSVIDEO_GetHicPtr((HIC
)(ULONG_PTR
)IC_HandleRef
) != NULL
) IC_HandleRef
++;
490 whic
->hic
= (HIC
)(ULONG_PTR
)IC_HandleRef
++;
491 whic
->next
= MSVIDEO_FirstHic
;
492 MSVIDEO_FirstHic
= whic
;
494 /* Now try opening/loading the driver. Taken from DRIVER_AddToList */
495 /* What if the function is used more than once? */
497 if (MSVIDEO_SendMessage(whic
, DRV_LOAD
, 0L, 0L) != DRV_SUCCESS
)
499 WARN("DRV_LOAD failed for hic %p\n", whic
->hic
);
500 MSVIDEO_FirstHic
= whic
->next
;
501 HeapFree(GetProcessHeap(), 0, whic
);
504 /* return value is not checked */
505 MSVIDEO_SendMessage(whic
, DRV_ENABLE
, 0L, 0L);
507 whic
->driverId
= (DWORD
)MSVIDEO_SendMessage(whic
, DRV_OPEN
, 0, (DWORD_PTR
)&icopen
);
508 /* FIXME: What should we put here? */
511 if (whic
->driverId
== 0)
513 WARN("DRV_OPEN failed for hic %p\n", whic
->hic
);
514 MSVIDEO_FirstHic
= whic
->next
;
515 HeapFree(GetProcessHeap(), 0, whic
);
519 TRACE("=> %p\n", whic
->hic
);
523 /***********************************************************************
524 * ICGetInfo [MSVFW32.@]
526 LRESULT VFWAPI
ICGetInfo(HIC hic
, ICINFO
*picinfo
, DWORD cb
)
529 WINE_HIC
* whic
= MSVIDEO_GetHicPtr(hic
);
531 TRACE("(%p,%p,%d)\n", hic
, picinfo
, cb
);
533 whic
= MSVIDEO_GetHicPtr(hic
);
534 if (!whic
) return ICERR_BADHANDLE
;
535 if (!picinfo
) return MMSYSERR_INVALPARAM
;
537 /* (WS) The field szDriver should be initialized because the driver
538 * is not obliged and often will not do it. Some applications, like
539 * VirtualDub, rely on this field and will occasionally crash if it
540 * goes uninitialized.
542 if (cb
>= sizeof(ICINFO
)) picinfo
->szDriver
[0] = '\0';
544 ret
= ICSendMessage(hic
, ICM_GETINFO
, (DWORD_PTR
)picinfo
, cb
);
546 /* (WS) When szDriver was not supplied by the driver itself, apparently
547 * Windows will set its value equal to the driver file name. This can
548 * be obtained from the registry as we do here.
550 if (cb
>= sizeof(ICINFO
) && picinfo
->szDriver
[0] == 0)
554 memset(&ii
, 0, sizeof(ii
));
555 ii
.dwSize
= sizeof(ii
);
556 ICInfo(picinfo
->fccType
, picinfo
->fccHandler
, &ii
);
557 lstrcpyW(picinfo
->szDriver
, ii
.szDriver
);
560 TRACE(" -> 0x%08lx\n", ret
);
567 LPBITMAPINFOHEADER lpbiIn
;
568 LPBITMAPINFOHEADER lpbiOut
;
574 static HIC
try_driver(driver_info_t
*info
)
578 if ((hic
= ICOpen(info
->fccType
, info
->fccHandler
, info
->wMode
)))
580 if (!ICSendMessage(hic
, info
->querymsg
, (DWORD_PTR
)info
->lpbiIn
, (DWORD_PTR
)info
->lpbiOut
))
587 static BOOL
ICLocate_enum_handler(const char *drv
, unsigned int nr
, void *param
)
589 driver_info_t
*info
= param
;
590 info
->fccHandler
= mmioStringToFOURCCA(drv
+ 5, 0);
591 info
->hic
= try_driver(info
);
592 return info
->hic
!= 0;
595 /***********************************************************************
596 * ICLocate [MSVFW32.@]
598 HIC VFWAPI
ICLocate(DWORD fccType
, DWORD fccHandler
, LPBITMAPINFOHEADER lpbiIn
,
599 LPBITMAPINFOHEADER lpbiOut
, WORD wMode
)
603 TRACE("(%s,%s,%p,%p,0x%04x)\n",
604 wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), lpbiIn
, lpbiOut
, wMode
);
606 info
.fccType
= fccType
;
607 info
.fccHandler
= fccHandler
;
608 info
.lpbiIn
= lpbiIn
;
609 info
.lpbiOut
= lpbiOut
;
614 case ICMODE_FASTCOMPRESS
:
615 case ICMODE_COMPRESS
:
616 info
.querymsg
= ICM_COMPRESS_QUERY
;
618 case ICMODE_FASTDECOMPRESS
:
619 case ICMODE_DECOMPRESS
:
620 info
.querymsg
= ICM_DECOMPRESS_QUERY
;
623 info
.querymsg
= ICM_DRAW_QUERY
;
626 WARN("Unknown mode (%d)\n", wMode
);
630 /* Easy case: handler/type match, we just fire a query and return */
631 info
.hic
= try_driver(&info
);
632 /* If it didn't work, try each driver in turn. 32 bit codecs only. */
633 /* FIXME: Move this to an init routine? */
634 if (!info
.hic
) enum_drivers(fccType
, ICLocate_enum_handler
, &info
);
638 TRACE("=> %p\n", info
.hic
);
642 if (fccType
== streamtypeVIDEO
)
643 return ICLocate(ICTYPE_VIDEO
, fccHandler
, lpbiIn
, lpbiOut
, wMode
);
645 WARN("(%s,%s,%p,%p,0x%04x) not found!\n",
646 wine_dbgstr_fcc(fccType
), wine_dbgstr_fcc(fccHandler
), lpbiIn
, lpbiOut
, wMode
);
650 /***********************************************************************
651 * ICGetDisplayFormat [MSVFW32.@]
653 HIC VFWAPI
ICGetDisplayFormat(
654 HIC hic
,LPBITMAPINFOHEADER lpbiIn
,LPBITMAPINFOHEADER lpbiOut
,
655 INT depth
,INT dx
,INT dy
)
659 TRACE("(%p,%p,%p,%d,%d,%d)!\n",hic
,lpbiIn
,lpbiOut
,depth
,dx
,dy
);
662 tmphic
=ICLocate(ICTYPE_VIDEO
,0,lpbiIn
,NULL
,ICMODE_DECOMPRESS
);
666 if ((dy
== lpbiIn
->biHeight
) && (dx
== lpbiIn
->biWidth
))
667 dy
= dx
= 0; /* no resize needed */
669 /* Can we decompress it ? */
670 if (ICDecompressQuery(tmphic
,lpbiIn
,NULL
) != 0)
671 goto errout
; /* no, sorry */
673 ICSendMessage(tmphic
, ICM_DECOMPRESS_GET_FORMAT
, (DWORD_PTR
)lpbiIn
, (DWORD_PTR
)lpbiOut
);
675 if (lpbiOut
->biCompression
!= 0) {
676 FIXME("Ooch, how come decompressor outputs compressed data (%d)??\n",
677 lpbiOut
->biCompression
);
679 if (lpbiOut
->biSize
< sizeof(*lpbiOut
)) {
680 FIXME("Ooch, size of output BIH is too small (%d)\n",
682 lpbiOut
->biSize
= sizeof(*lpbiOut
);
688 depth
= GetDeviceCaps(hdc
,BITSPIXEL
)*GetDeviceCaps(hdc
,PLANES
);
690 if (depth
==15) depth
= 16;
691 if (depth
<8) depth
= 8;
693 if (lpbiIn
->biBitCount
== 8)
696 TRACE("=> %p\n", tmphic
);
706 /***********************************************************************
707 * ICCompress [MSVFW32.@]
711 HIC hic
,DWORD dwFlags
,LPBITMAPINFOHEADER lpbiOutput
,LPVOID lpData
,
712 LPBITMAPINFOHEADER lpbiInput
,LPVOID lpBits
,LPDWORD lpckid
,
713 LPDWORD lpdwFlags
,LONG lFrameNum
,DWORD dwFrameSize
,DWORD dwQuality
,
714 LPBITMAPINFOHEADER lpbiPrev
,LPVOID lpPrev
)
718 TRACE("(%p,%d,%p,%p,%p,%p,...)\n",hic
,dwFlags
,lpbiOutput
,lpData
,lpbiInput
,lpBits
);
720 iccmp
.dwFlags
= dwFlags
;
722 iccmp
.lpbiOutput
= lpbiOutput
;
723 iccmp
.lpOutput
= lpData
;
724 iccmp
.lpbiInput
= lpbiInput
;
725 iccmp
.lpInput
= lpBits
;
727 iccmp
.lpckid
= lpckid
;
728 iccmp
.lpdwFlags
= lpdwFlags
;
729 iccmp
.lFrameNum
= lFrameNum
;
730 iccmp
.dwFrameSize
= dwFrameSize
;
731 iccmp
.dwQuality
= dwQuality
;
732 iccmp
.lpbiPrev
= lpbiPrev
;
733 iccmp
.lpPrev
= lpPrev
;
734 return ICSendMessage(hic
,ICM_COMPRESS
,(DWORD_PTR
)&iccmp
,sizeof(iccmp
));
737 /***********************************************************************
738 * ICDecompress [MSVFW32.@]
740 DWORD VFWAPIV
ICDecompress(HIC hic
,DWORD dwFlags
,LPBITMAPINFOHEADER lpbiFormat
,
741 LPVOID lpData
,LPBITMAPINFOHEADER lpbi
,LPVOID lpBits
)
746 TRACE("(%p,%d,%p,%p,%p,%p)\n",hic
,dwFlags
,lpbiFormat
,lpData
,lpbi
,lpBits
);
748 icd
.dwFlags
= dwFlags
;
749 icd
.lpbiInput
= lpbiFormat
;
750 icd
.lpInput
= lpData
;
752 icd
.lpbiOutput
= lpbi
;
753 icd
.lpOutput
= lpBits
;
755 ret
= ICSendMessage(hic
,ICM_DECOMPRESS
,(DWORD_PTR
)&icd
,sizeof(ICDECOMPRESS
));
757 TRACE("-> %d\n",ret
);
763 struct choose_compressor
776 static BOOL
enum_compressors(HWND list
, COMPVARS
*pcv
, BOOL enum_all
)
783 while (ICInfo(pcv
->fccType
, id
, &icinfo
))
785 struct codec_info
*ic
;
791 hic
= ICOpen(icinfo
.fccType
, icinfo
.fccHandler
, ICMODE_COMPRESS
);
795 /* for unknown reason fccHandler reported by the driver
796 * doesn't always work, use the one returned by ICInfo instead.
798 DWORD fccHandler
= icinfo
.fccHandler
;
800 if (!enum_all
&& pcv
->lpbiIn
)
802 if (ICCompressQuery(hic
, pcv
->lpbiIn
, NULL
) != ICERR_OK
)
804 TRACE("fccHandler %s doesn't support input DIB format %d\n",
805 wine_dbgstr_fcc(icinfo
.fccHandler
), pcv
->lpbiIn
->bmiHeader
.biCompression
);
811 ICGetInfo(hic
, &icinfo
, sizeof(icinfo
));
812 icinfo
.fccHandler
= fccHandler
;
814 idx
= SendMessageW(list
, CB_ADDSTRING
, 0, (LPARAM
)icinfo
.szDescription
);
816 ic
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct codec_info
));
819 SendMessageW(list
, CB_SETITEMDATA
, idx
, (LPARAM
)ic
);
827 static INT_PTR CALLBACK
icm_choose_compressor_dlgproc(HWND hdlg
, UINT msg
, WPARAM wparam
, LPARAM lparam
)
833 struct codec_info
*ic
;
835 struct choose_compressor
*choose_comp
= (struct choose_compressor
*)lparam
;
837 SetWindowLongPtrW(hdlg
, DWLP_USER
, lparam
);
840 choose_comp
->flags
&= ~(ICMF_CHOOSE_DATARATE
| ICMF_CHOOSE_KEYFRAME
);
842 if (choose_comp
->title
)
843 SetWindowTextA(hdlg
, choose_comp
->title
);
845 if (!(choose_comp
->flags
& ICMF_CHOOSE_DATARATE
))
847 ShowWindow(GetDlgItem(hdlg
, IDC_DATARATE_CHECKBOX
), SW_HIDE
);
848 ShowWindow(GetDlgItem(hdlg
, IDC_DATARATE
), SW_HIDE
);
849 ShowWindow(GetDlgItem(hdlg
, IDC_DATARATE_KB
), SW_HIDE
);
852 if (!(choose_comp
->flags
& ICMF_CHOOSE_KEYFRAME
))
854 ShowWindow(GetDlgItem(hdlg
, IDC_KEYFRAME_CHECKBOX
), SW_HIDE
);
855 ShowWindow(GetDlgItem(hdlg
, IDC_KEYFRAME
), SW_HIDE
);
856 ShowWindow(GetDlgItem(hdlg
, IDC_KEYFRAME_FRAMES
), SW_HIDE
);
860 EnableWindow(GetDlgItem(hdlg
, IDC_QUALITY_SCROLL
), FALSE
);
861 EnableWindow(GetDlgItem(hdlg
, IDC_QUALITY_TXT
), FALSE
);
863 /*if (!(choose_comp->flags & ICMF_CHOOSE_PREVIEW))
864 ShowWindow(GetDlgItem(hdlg, IDC_PREVIEW), SW_HIDE);*/
866 LoadStringW(MSVFW32_hModule
, IDS_FULLFRAMES
, buf
, 128);
867 SendDlgItemMessageW(hdlg
, IDC_COMP_LIST
, CB_ADDSTRING
, 0, (LPARAM
)buf
);
869 ic
= HeapAlloc(GetProcessHeap(), 0, sizeof(struct codec_info
));
870 ic
->icinfo
.fccType
= streamtypeVIDEO
;
871 ic
->icinfo
.fccHandler
= comptypeDIB
;
873 SendDlgItemMessageW(hdlg
, IDC_COMP_LIST
, CB_SETITEMDATA
, 0, (LPARAM
)ic
);
875 enum_compressors(GetDlgItem(hdlg
, IDC_COMP_LIST
), &choose_comp
->cv
, choose_comp
->flags
& ICMF_CHOOSE_ALLCOMPRESSORS
);
877 SendDlgItemMessageW(hdlg
, IDC_COMP_LIST
, CB_SETCURSEL
, 0, 0);
878 SetFocus(GetDlgItem(hdlg
, IDC_COMP_LIST
));
880 SetWindowLongPtrW(hdlg
, DWLP_USER
, (ULONG_PTR
)choose_comp
);
885 switch (LOWORD(wparam
))
890 struct codec_info
*ic
;
891 BOOL can_configure
= FALSE
, can_about
= FALSE
;
892 struct choose_compressor
*choose_comp
;
894 if (HIWORD(wparam
) != CBN_SELCHANGE
&& HIWORD(wparam
) != CBN_SETFOCUS
)
897 choose_comp
= (struct choose_compressor
*)GetWindowLongPtrW(hdlg
, DWLP_USER
);
899 cur_sel
= SendMessageW((HWND
)lparam
, CB_GETCURSEL
, 0, 0);
901 ic
= (struct codec_info
*)SendMessageW((HWND
)lparam
, CB_GETITEMDATA
, cur_sel
, 0);
904 if (ICQueryConfigure(ic
->hic
) == DRVCNF_OK
)
905 can_configure
= TRUE
;
906 if (ICQueryAbout(ic
->hic
) == DRVCNF_OK
)
909 EnableWindow(GetDlgItem(hdlg
, IDC_CONFIGURE
), can_configure
);
910 EnableWindow(GetDlgItem(hdlg
, IDC_ABOUT
), can_about
);
912 if (choose_comp
->flags
& ICMF_CHOOSE_DATARATE
)
916 if (choose_comp
->flags
& ICMF_CHOOSE_KEYFRAME
)
927 HWND list
= GetDlgItem(hdlg
, IDC_COMP_LIST
);
929 struct codec_info
*ic
;
931 if (HIWORD(wparam
) != BN_CLICKED
)
934 cur_sel
= SendMessageW(list
, CB_GETCURSEL
, 0, 0);
936 ic
= (struct codec_info
*)SendMessageW(list
, CB_GETITEMDATA
, cur_sel
, 0);
939 if (LOWORD(wparam
) == IDC_CONFIGURE
)
940 ICConfigure(ic
->hic
, hdlg
);
942 ICAbout(ic
->hic
, hdlg
);
950 HWND list
= GetDlgItem(hdlg
, IDC_COMP_LIST
);
952 struct codec_info
*ic
;
954 if (HIWORD(wparam
) != BN_CLICKED
)
957 cur_sel
= SendMessageW(list
, CB_GETCURSEL
, 0, 0);
958 ic
= (struct codec_info
*)SendMessageW(list
, CB_GETITEMDATA
, cur_sel
, 0);
961 struct choose_compressor
*choose_comp
= (struct choose_compressor
*)GetWindowLongPtrW(hdlg
, DWLP_USER
);
963 choose_comp
->cv
.hic
= ic
->hic
;
964 choose_comp
->cv
.fccType
= ic
->icinfo
.fccType
;
965 choose_comp
->cv
.fccHandler
= ic
->icinfo
.fccHandler
;
966 /* FIXME: fill everything else */
968 /* prevent closing the codec handle below */
975 HWND list
= GetDlgItem(hdlg
, IDC_COMP_LIST
);
978 if (HIWORD(wparam
) != BN_CLICKED
)
983 struct codec_info
*ic
;
985 ic
= (struct codec_info
*)SendMessageW(list
, CB_GETITEMDATA
, idx
++, 0);
987 if (!ic
|| (LONG_PTR
)ic
== CB_ERR
) break;
989 if (ic
->hic
) ICClose(ic
->hic
);
990 HeapFree(GetProcessHeap(), 0, ic
);
993 EndDialog(hdlg
, LOWORD(wparam
) == IDOK
);
1009 /***********************************************************************
1010 * ICCompressorChoose [MSVFW32.@]
1012 BOOL VFWAPI
ICCompressorChoose(HWND hwnd
, UINT uiFlags
, LPVOID pvIn
,
1013 LPVOID lpData
, PCOMPVARS pc
, LPSTR lpszTitle
)
1015 struct choose_compressor choose_comp
;
1018 TRACE("(%p,%08x,%p,%p,%p,%s)\n", hwnd
, uiFlags
, pvIn
, lpData
, pc
, lpszTitle
);
1020 if (!pc
|| pc
->cbSize
!= sizeof(COMPVARS
))
1023 if (!(pc
->dwFlags
& ICMF_COMPVARS_VALID
))
1026 pc
->fccType
= pc
->fccHandler
= 0;
1030 pc
->lpBitsOut
= pc
->lpBitsPrev
= pc
->lpState
= NULL
;
1031 pc
->lQ
= ICQUALITY_DEFAULT
;
1033 pc
->lDataRate
= 300; /* kB */
1037 if (pc
->fccType
== 0)
1038 pc
->fccType
= ICTYPE_VIDEO
;
1040 choose_comp
.cv
= *pc
;
1041 choose_comp
.flags
= uiFlags
;
1042 choose_comp
.title
= lpszTitle
;
1044 ret
= DialogBoxParamW(MSVFW32_hModule
, MAKEINTRESOURCEW(ICM_CHOOSE_COMPRESSOR
), hwnd
,
1045 icm_choose_compressor_dlgproc
, (LPARAM
)&choose_comp
);
1049 *pc
= choose_comp
.cv
;
1050 pc
->dwFlags
|= ICMF_COMPVARS_VALID
;
1057 /***********************************************************************
1058 * ICCompressorFree [MSVFW32.@]
1060 void VFWAPI
ICCompressorFree(PCOMPVARS pc
)
1064 if (pc
!= NULL
&& pc
->cbSize
== sizeof(COMPVARS
)) {
1065 if (pc
->hic
!= NULL
) {
1069 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1071 HeapFree(GetProcessHeap(), 0, pc
->lpBitsOut
);
1072 pc
->lpBitsOut
= NULL
;
1073 HeapFree(GetProcessHeap(), 0, pc
->lpBitsPrev
);
1074 pc
->lpBitsPrev
= NULL
;
1075 HeapFree(GetProcessHeap(), 0, pc
->lpState
);
1081 /***********************************************************************
1082 * ICSendMessage [MSVFW32.@]
1084 LRESULT VFWAPI
ICSendMessage(HIC hic
, UINT msg
, DWORD_PTR lParam1
, DWORD_PTR lParam2
)
1086 WINE_HIC
* whic
= MSVIDEO_GetHicPtr(hic
);
1088 if (!whic
) return ICERR_BADHANDLE
;
1089 return MSVIDEO_SendMessage(whic
, msg
, lParam1
, lParam2
);
1092 /***********************************************************************
1093 * ICDrawBegin [MSVFW32.@]
1095 DWORD VFWAPIV
ICDrawBegin(
1097 DWORD dwFlags
, /* [in] flags */
1098 HPALETTE hpal
, /* [in] palette to draw with */
1099 HWND hwnd
, /* [in] window to draw to */
1100 HDC hdc
, /* [in] HDC to draw to */
1101 INT xDst
, /* [in] destination rectangle */
1102 INT yDst
, /* [in] */
1103 INT dxDst
, /* [in] */
1104 INT dyDst
, /* [in] */
1105 LPBITMAPINFOHEADER lpbi
, /* [in] format of frame to draw */
1106 INT xSrc
, /* [in] source rectangle */
1107 INT ySrc
, /* [in] */
1108 INT dxSrc
, /* [in] */
1109 INT dySrc
, /* [in] */
1110 DWORD dwRate
, /* [in] frames/second = (dwRate/dwScale) */
1111 DWORD dwScale
) /* [in] */
1116 TRACE("(%p,%d,%p,%p,%p,%u,%u,%u,%u,%p,%u,%u,%u,%u,%d,%d)\n",
1117 hic
, dwFlags
, hpal
, hwnd
, hdc
, xDst
, yDst
, dxDst
, dyDst
,
1118 lpbi
, xSrc
, ySrc
, dxSrc
, dySrc
, dwRate
, dwScale
);
1120 icdb
.dwFlags
= dwFlags
;
1133 icdb
.dwRate
= dwRate
;
1134 icdb
.dwScale
= dwScale
;
1135 return ICSendMessage(hic
,ICM_DRAW_BEGIN
,(DWORD_PTR
)&icdb
,sizeof(icdb
));
1138 /***********************************************************************
1139 * ICDraw [MSVFW32.@]
1141 DWORD VFWAPIV
ICDraw(HIC hic
, DWORD dwFlags
, LPVOID lpFormat
, LPVOID lpData
, DWORD cbData
, LONG lTime
) {
1144 TRACE("(%p,%d,%p,%p,%d,%d)\n",hic
,dwFlags
,lpFormat
,lpData
,cbData
,lTime
);
1146 icd
.dwFlags
= dwFlags
;
1147 icd
.lpFormat
= lpFormat
;
1148 icd
.lpData
= lpData
;
1149 icd
.cbData
= cbData
;
1152 return ICSendMessage(hic
,ICM_DRAW
,(DWORD_PTR
)&icd
,sizeof(icd
));
1155 /***********************************************************************
1156 * ICClose [MSVFW32.@]
1158 LRESULT WINAPI
ICClose(HIC hic
)
1160 WINE_HIC
* whic
= MSVIDEO_GetHicPtr(hic
);
1163 TRACE("(%p)\n",hic
);
1165 if (!whic
) return ICERR_BADHANDLE
;
1167 if (whic
->driverproc
)
1169 MSVIDEO_SendMessage(whic
, DRV_CLOSE
, 0, 0);
1170 MSVIDEO_SendMessage(whic
, DRV_DISABLE
, 0, 0);
1171 MSVIDEO_SendMessage(whic
, DRV_FREE
, 0, 0);
1175 CloseDriver(whic
->hdrv
, 0, 0);
1178 /* remove whic from list */
1179 for (p
= &MSVIDEO_FirstHic
; *p
!= NULL
; p
= &((*p
)->next
))
1188 HeapFree(GetProcessHeap(), 0, whic
);
1194 /***********************************************************************
1195 * ICImageCompress [MSVFW32.@]
1197 HANDLE VFWAPI
ICImageCompress(
1198 HIC hic
, UINT uiFlags
,
1199 LPBITMAPINFO lpbiIn
, LPVOID lpBits
,
1200 LPBITMAPINFO lpbiOut
, LONG lQuality
,
1203 FIXME("(%p,%08x,%p,%p,%p,%d,%p)\n",
1204 hic
, uiFlags
, lpbiIn
, lpBits
, lpbiOut
, lQuality
, plSize
);
1209 /***********************************************************************
1210 * ICImageDecompress [MSVFW32.@]
1213 HANDLE VFWAPI
ICImageDecompress(
1214 HIC hic
, UINT uiFlags
, LPBITMAPINFO lpbiIn
,
1215 LPVOID lpBits
, LPBITMAPINFO lpbiOut
)
1217 HGLOBAL hMem
= NULL
;
1219 BOOL bReleaseIC
= FALSE
;
1222 BOOL bSucceeded
= FALSE
;
1223 BOOL bInDecompress
= FALSE
;
1226 TRACE("(%p,%08x,%p,%p,%p)\n",
1227 hic
, uiFlags
, lpbiIn
, lpBits
, lpbiOut
);
1231 hic
= ICDecompressOpen( ICTYPE_VIDEO
, 0, &lpbiIn
->bmiHeader
, (lpbiOut
!= NULL
) ? &lpbiOut
->bmiHeader
: NULL
);
1234 WARN("no handler\n" );
1241 FIXME( "unknown flag %08x\n", uiFlags
);
1244 if ( lpbiIn
== NULL
|| lpBits
== NULL
)
1246 WARN("invalid argument\n");
1250 if ( lpbiOut
!= NULL
)
1252 if ( lpbiOut
->bmiHeader
.biSize
!= sizeof(BITMAPINFOHEADER
) )
1254 cbHdr
= sizeof(BITMAPINFOHEADER
);
1255 if ( lpbiOut
->bmiHeader
.biCompression
== 3 )
1256 cbHdr
+= sizeof(DWORD
)*3;
1258 if ( lpbiOut
->bmiHeader
.biBitCount
<= 8 )
1260 if ( lpbiOut
->bmiHeader
.biClrUsed
== 0 )
1261 cbHdr
+= sizeof(RGBQUAD
) * (1<<lpbiOut
->bmiHeader
.biBitCount
);
1263 cbHdr
+= sizeof(RGBQUAD
) * lpbiOut
->bmiHeader
.biClrUsed
;
1268 TRACE( "get format\n" );
1270 cbHdr
= ICDecompressGetFormatSize(hic
,lpbiIn
);
1271 if ( cbHdr
< sizeof(BITMAPINFOHEADER
) )
1273 pHdr
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,cbHdr
+sizeof(RGBQUAD
)*256);
1276 if ( ICDecompressGetFormat( hic
, lpbiIn
, pHdr
) != ICERR_OK
)
1278 lpbiOut
= (BITMAPINFO
*)pHdr
;
1279 if ( lpbiOut
->bmiHeader
.biBitCount
<= 8 &&
1280 ICDecompressGetPalette( hic
, lpbiIn
, lpbiOut
) != ICERR_OK
&&
1281 lpbiIn
->bmiHeader
.biBitCount
== lpbiOut
->bmiHeader
.biBitCount
)
1283 if ( lpbiIn
->bmiHeader
.biClrUsed
== 0 )
1284 memcpy( lpbiOut
->bmiColors
, lpbiIn
->bmiColors
, sizeof(RGBQUAD
)*(1<<lpbiOut
->bmiHeader
.biBitCount
) );
1286 memcpy( lpbiOut
->bmiColors
, lpbiIn
->bmiColors
, sizeof(RGBQUAD
)*lpbiIn
->bmiHeader
.biClrUsed
);
1288 if ( lpbiOut
->bmiHeader
.biBitCount
<= 8 &&
1289 lpbiOut
->bmiHeader
.biClrUsed
== 0 )
1290 lpbiOut
->bmiHeader
.biClrUsed
= 1<<lpbiOut
->bmiHeader
.biBitCount
;
1292 lpbiOut
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1293 cbHdr
= sizeof(BITMAPINFOHEADER
) + sizeof(RGBQUAD
)*lpbiOut
->bmiHeader
.biClrUsed
;
1296 biSizeImage
= lpbiOut
->bmiHeader
.biSizeImage
;
1297 if ( biSizeImage
== 0 )
1298 biSizeImage
= ((((lpbiOut
->bmiHeader
.biWidth
* lpbiOut
->bmiHeader
.biBitCount
+ 7) >> 3) + 3) & (~3)) * abs(lpbiOut
->bmiHeader
.biHeight
);
1300 TRACE( "call ICDecompressBegin\n" );
1302 if ( ICDecompressBegin( hic
, lpbiIn
, lpbiOut
) != ICERR_OK
)
1304 bInDecompress
= TRUE
;
1306 TRACE( "cbHdr %d, biSizeImage %d\n", cbHdr
, biSizeImage
);
1308 hMem
= GlobalAlloc( GMEM_MOVEABLE
|GMEM_ZEROINIT
, cbHdr
+ biSizeImage
);
1311 WARN( "out of memory\n" );
1314 pMem
= GlobalLock( hMem
);
1317 memcpy( pMem
, lpbiOut
, cbHdr
);
1319 TRACE( "call ICDecompress\n" );
1320 if ( ICDecompress( hic
, 0, &lpbiIn
->bmiHeader
, lpBits
, &lpbiOut
->bmiHeader
, pMem
+cbHdr
) != ICERR_OK
)
1325 if ( bInDecompress
)
1326 ICDecompressEnd( hic
);
1329 HeapFree(GetProcessHeap(),0,pHdr
);
1331 GlobalUnlock( hMem
);
1332 if ( !bSucceeded
&& hMem
!= NULL
)
1334 GlobalFree(hMem
); hMem
= NULL
;
1340 /***********************************************************************
1341 * ICSeqCompressFrame [MSVFW32.@]
1343 LPVOID VFWAPI
ICSeqCompressFrame(PCOMPVARS pc
, UINT uiFlags
, LPVOID lpBits
, BOOL
*pfKey
, LONG
*plSize
)
1345 ICCOMPRESS
* icComp
= pc
->lpState
;
1347 TRACE("(%p, 0x%08x, %p, %p, %p)\n", pc
, uiFlags
, lpBits
, pfKey
, plSize
);
1349 if (pc
->cbState
!= sizeof(ICCOMPRESS
))
1351 ERR("Invalid cbState %i\n", pc
->cbState
);
1355 if (!pc
->lKeyCount
++)
1356 icComp
->dwFlags
= ICCOMPRESS_KEYFRAME
;
1359 if (pc
->lKey
&& pc
->lKeyCount
== (pc
->lKey
- 1))
1360 /* No key frames if pc->lKey == 0 */
1362 icComp
->dwFlags
= 0;
1365 icComp
->lpInput
= lpBits
;
1366 icComp
->lFrameNum
= pc
->lFrame
++;
1367 icComp
->lpOutput
= pc
->lpBitsOut
;
1368 icComp
->lpPrev
= pc
->lpBitsPrev
;
1369 ret
= ICSendMessage(pc
->hic
, ICM_COMPRESS
, (DWORD_PTR
)icComp
, sizeof(icComp
));
1371 if (icComp
->dwFlags
& AVIIF_KEYFRAME
)
1375 TRACE("Key frame\n");
1380 *plSize
= icComp
->lpbiOutput
->biSizeImage
;
1381 TRACE(" -- 0x%08x\n", ret
);
1382 if (ret
== ICERR_OK
)
1384 LPVOID oldprev
, oldout
;
1385 /* We shift Prev and Out, so we don't have to allocate and release memory */
1386 oldprev
= pc
->lpBitsPrev
;
1387 oldout
= pc
->lpBitsOut
;
1388 pc
->lpBitsPrev
= oldout
;
1389 pc
->lpBitsOut
= oldprev
;
1391 TRACE("returning: %p\n", icComp
->lpOutput
);
1392 return icComp
->lpOutput
;
1397 /***********************************************************************
1398 * ICSeqCompressFrameEnd [MSVFW32.@]
1400 void VFWAPI
ICSeqCompressFrameEnd(PCOMPVARS pc
)
1403 TRACE("(%p)\n", pc
);
1404 ret
= ICSendMessage(pc
->hic
, ICM_COMPRESS_END
, 0, 0);
1405 TRACE(" -- %x\n", ret
);
1406 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1407 HeapFree(GetProcessHeap(), 0, pc
->lpBitsPrev
);
1408 HeapFree(GetProcessHeap(), 0, pc
->lpBitsOut
);
1409 HeapFree(GetProcessHeap(), 0, pc
->lpState
);
1410 pc
->lpbiIn
= pc
->lpBitsPrev
= pc
->lpBitsOut
= pc
->lpState
= NULL
;
1413 /***********************************************************************
1414 * ICSeqCompressFrameStart [MSVFW32.@]
1416 BOOL VFWAPI
ICSeqCompressFrameStart(PCOMPVARS pc
, LPBITMAPINFO lpbiIn
)
1418 /* I'm ignoring bmiColors as I don't know what to do with it,
1419 * it doesn't appear to be used though
1422 pc
->lpbiIn
= HeapAlloc(GetProcessHeap(), 0, sizeof(BITMAPINFO
));
1426 *pc
->lpbiIn
= *lpbiIn
;
1427 pc
->lpBitsPrev
= HeapAlloc(GetProcessHeap(), 0, pc
->lpbiIn
->bmiHeader
.biSizeImage
);
1428 if (!pc
->lpBitsPrev
)
1430 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1434 pc
->lpState
= HeapAlloc(GetProcessHeap(), 0, sizeof(ICCOMPRESS
));
1437 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1438 HeapFree(GetProcessHeap(), 0, pc
->lpBitsPrev
);
1441 pc
->cbState
= sizeof(ICCOMPRESS
);
1443 pc
->lpBitsOut
= HeapAlloc(GetProcessHeap(), 0, pc
->lpbiOut
->bmiHeader
.biSizeImage
);
1446 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1447 HeapFree(GetProcessHeap(), 0, pc
->lpBitsPrev
);
1448 HeapFree(GetProcessHeap(), 0, pc
->lpState
);
1459 "key/data/quality: %i/%i/%i\n",
1460 pc
->cbSize
, pc
->dwFlags
, pc
->hic
, pc
->fccType
, pc
->fccHandler
,
1461 pc
->lpbiIn
, pc
->lpbiOut
, pc
->lKey
, pc
->lDataRate
, pc
->lQ
);
1463 ret
= ICSendMessage(pc
->hic
, ICM_COMPRESS_BEGIN
, (DWORD_PTR
)pc
->lpbiIn
, (DWORD_PTR
)pc
->lpbiOut
);
1464 TRACE(" -- %x\n", ret
);
1465 if (ret
== ICERR_OK
)
1467 ICCOMPRESS
* icComp
= pc
->lpState
;
1468 /* Initialise some variables */
1469 pc
->lFrame
= 0; pc
->lKeyCount
= 0;
1471 icComp
->lpbiOutput
= &pc
->lpbiOut
->bmiHeader
;
1472 icComp
->lpbiInput
= &pc
->lpbiIn
->bmiHeader
;
1473 icComp
->lpckid
= NULL
;
1474 icComp
->dwFrameSize
= 0;
1475 icComp
->dwQuality
= pc
->lQ
;
1476 icComp
->lpbiPrev
= &pc
->lpbiIn
->bmiHeader
;
1479 HeapFree(GetProcessHeap(), 0, pc
->lpbiIn
);
1480 HeapFree(GetProcessHeap(), 0, pc
->lpBitsPrev
);
1481 HeapFree(GetProcessHeap(), 0, pc
->lpState
);
1482 HeapFree(GetProcessHeap(), 0, pc
->lpBitsOut
);
1483 pc
->lpBitsPrev
= pc
->lpbiIn
= pc
->lpState
= pc
->lpBitsOut
= NULL
;
1487 /***********************************************************************
1488 * GetFileNamePreview [MSVFW32.@]
1490 static BOOL
GetFileNamePreview(LPVOID lpofn
,BOOL bSave
,BOOL bUnicode
)
1492 CHAR szFunctionName
[20];
1493 BOOL (*fnGetFileName
)(LPVOID
);
1497 FIXME("(%p,%d,%d), semi-stub!\n",lpofn
,bSave
,bUnicode
);
1499 lstrcpyA(szFunctionName
, (bSave
? "GetSaveFileName" : "GetOpenFileName"));
1500 lstrcatA(szFunctionName
, (bUnicode
? "W" : "A"));
1502 hComdlg32
= LoadLibraryA("COMDLG32.DLL");
1503 if (hComdlg32
== NULL
)
1506 fnGetFileName
= (LPVOID
)GetProcAddress(hComdlg32
, szFunctionName
);
1507 if (fnGetFileName
== NULL
)
1510 /* FIXME: need to add OFN_ENABLEHOOK and our own handler */
1511 ret
= fnGetFileName(lpofn
);
1513 FreeLibrary(hComdlg32
);
1517 /***********************************************************************
1518 * GetOpenFileNamePreviewA [MSVFW32.@]
1520 BOOL WINAPI
GetOpenFileNamePreviewA(LPOPENFILENAMEA lpofn
)
1522 FIXME("(%p), semi-stub!\n", lpofn
);
1524 return GetFileNamePreview(lpofn
, FALSE
, FALSE
);
1527 /***********************************************************************
1528 * GetOpenFileNamePreviewW [MSVFW32.@]
1530 BOOL WINAPI
GetOpenFileNamePreviewW(LPOPENFILENAMEW lpofn
)
1532 FIXME("(%p), semi-stub!\n", lpofn
);
1534 return GetFileNamePreview(lpofn
, FALSE
, TRUE
);
1537 /***********************************************************************
1538 * GetSaveFileNamePreviewA [MSVFW32.@]
1540 BOOL WINAPI
GetSaveFileNamePreviewA(LPOPENFILENAMEA lpofn
)
1542 FIXME("(%p), semi-stub!\n", lpofn
);
1544 return GetFileNamePreview(lpofn
, TRUE
, FALSE
);
1547 /***********************************************************************
1548 * GetSaveFileNamePreviewW [MSVFW32.@]
1550 BOOL WINAPI
GetSaveFileNamePreviewW(LPOPENFILENAMEW lpofn
)
1552 FIXME("(%p), semi-stub!\n", lpofn
);
1554 return GetFileNamePreview(lpofn
, TRUE
, TRUE
);