msi: Add more tests for MsiSourceListGetInfo.
[wine.git] / dlls / avifil32 / getframe.c
blobfd3ec561a956162956293d435dd57cbfd7f72778
1 /*
2 * Copyright 2002-2003 Michael Günnewig
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
21 #include "windef.h"
22 #include "winbase.h"
23 #include "wingdi.h"
24 #include "winuser.h"
25 #include "vfw.h"
27 #include "avifile_private.h"
29 #include "wine/debug.h"
31 WINE_DEFAULT_DEBUG_CHANNEL(avifile);
33 #ifndef DIBPTR
34 #define DIBPTR(lp) ((LPBYTE)(lp) + (lp)->biSize + \
35 (lp)->biClrUsed * sizeof(RGBQUAD))
36 #endif
38 /***********************************************************************/
40 static HRESULT WINAPI IGetFrame_fnQueryInterface(IGetFrame *iface,
41 REFIID refiid, LPVOID *obj);
42 static ULONG WINAPI IGetFrame_fnAddRef(IGetFrame *iface);
43 static ULONG WINAPI IGetFrame_fnRelease(IGetFrame *iface);
44 static LPVOID WINAPI IGetFrame_fnGetFrame(IGetFrame *iface, LONG lPos);
45 static HRESULT WINAPI IGetFrame_fnBegin(IGetFrame *iface, LONG lStart,
46 LONG lEnd, LONG lRate);
47 static HRESULT WINAPI IGetFrame_fnEnd(IGetFrame *iface);
48 static HRESULT WINAPI IGetFrame_fnSetFormat(IGetFrame *iface,
49 LPBITMAPINFOHEADER lpbi,
50 LPVOID lpBits, INT x, INT y,
51 INT dx, INT dy);
53 static const struct IGetFrameVtbl igetframeVtbl = {
54 IGetFrame_fnQueryInterface,
55 IGetFrame_fnAddRef,
56 IGetFrame_fnRelease,
57 IGetFrame_fnGetFrame,
58 IGetFrame_fnBegin,
59 IGetFrame_fnEnd,
60 IGetFrame_fnSetFormat
63 typedef struct _IGetFrameImpl {
64 /* IUnknown stuff */
65 const IGetFrameVtbl *lpVtbl;
66 LONG ref;
68 /* IGetFrame stuff */
69 BOOL bFixedStream;
70 PAVISTREAM pStream;
72 LPVOID lpInBuffer;
73 LONG cbInBuffer;
74 LPBITMAPINFOHEADER lpInFormat;
75 LONG cbInFormat;
77 LONG lCurrentFrame;
78 LPBITMAPINFOHEADER lpOutFormat;
79 LPVOID lpOutBuffer;
81 HIC hic;
82 BOOL bResize;
83 DWORD x;
84 DWORD y;
85 DWORD dx;
86 DWORD dy;
88 BOOL bFormatChanges;
89 DWORD dwFormatChangeCount;
90 DWORD dwEditCount;
91 } IGetFrameImpl;
93 /***********************************************************************/
95 static void AVIFILE_CloseCompressor(IGetFrameImpl *This)
97 if (This->lpInFormat != This->lpOutFormat) {
98 HeapFree(GetProcessHeap(), 0, This->lpOutFormat);
99 This->lpOutFormat = NULL;
101 HeapFree(GetProcessHeap(), 0, This->lpInFormat);
102 This->lpInFormat = NULL;
103 if (This->hic != NULL) {
104 if (This->bResize)
105 ICDecompressExEnd(This->hic);
106 else
107 ICDecompressEnd(This->hic);
108 ICClose(This->hic);
109 This->hic = NULL;
113 PGETFRAME AVIFILE_CreateGetFrame(PAVISTREAM pStream)
115 IGetFrameImpl *pg;
117 /* check parameter */
118 if (pStream == NULL)
119 return NULL;
121 pg = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(IGetFrameImpl));
122 if (pg != NULL) {
123 pg->lpVtbl = &igetframeVtbl;
124 pg->ref = 1;
125 pg->lCurrentFrame = -1;
126 pg->pStream = pStream;
127 IAVIStream_AddRef(pStream);
130 return (PGETFRAME)pg;
133 static HRESULT WINAPI IGetFrame_fnQueryInterface(IGetFrame *iface,
134 REFIID refiid, LPVOID *obj)
136 IGetFrameImpl *This = (IGetFrameImpl *)iface;
138 TRACE("(%p,%s,%p)\n", This, debugstr_guid(refiid), obj);
140 if (IsEqualGUID(&IID_IUnknown, refiid) ||
141 IsEqualGUID(&IID_IGetFrame, refiid)) {
142 *obj = iface;
143 return S_OK;
146 return OLE_E_ENUM_NOMORE;
149 static ULONG WINAPI IGetFrame_fnAddRef(IGetFrame *iface)
151 IGetFrameImpl *This = (IGetFrameImpl *)iface;
152 ULONG ref = InterlockedIncrement(&This->ref);
154 TRACE("(%p)\n", iface);
156 return ref;
159 static ULONG WINAPI IGetFrame_fnRelease(IGetFrame *iface)
161 IGetFrameImpl *This = (IGetFrameImpl *)iface;
162 ULONG ref = InterlockedDecrement(&This->ref);
164 TRACE("(%p)\n", iface);
166 if (!ref) {
167 AVIFILE_CloseCompressor(This);
168 if (This->pStream != NULL) {
169 IAVIStream_Release(This->pStream);
170 This->pStream = NULL;
173 HeapFree(GetProcessHeap(), 0, iface);
174 return 0;
177 return ref;
180 static LPVOID WINAPI IGetFrame_fnGetFrame(IGetFrame *iface, LONG lPos)
182 IGetFrameImpl *This = (IGetFrameImpl *)iface;
184 LONG readBytes;
185 LONG readSamples;
187 TRACE("(%p,%d)\n", iface, lPos);
189 /* We don't want negative start values! -- marks invalid buffer content */
190 if (lPos < 0)
191 return NULL;
193 /* check state */
194 if (This->pStream == NULL)
195 return NULL;
196 if (This->lpInFormat == NULL)
197 return NULL;
199 /* Could stream have changed? */
200 if (! This->bFixedStream) {
201 AVISTREAMINFOW sInfo;
203 IAVIStream_Info(This->pStream, &sInfo, sizeof(sInfo));
205 if (sInfo.dwEditCount != This->dwEditCount) {
206 This->dwEditCount = sInfo.dwEditCount;
207 This->lCurrentFrame = -1;
210 if (sInfo.dwFormatChangeCount != This->dwFormatChangeCount) {
211 /* stream has changed */
212 if (This->lpOutFormat != NULL) {
213 BITMAPINFOHEADER bi;
215 bi = *This->lpOutFormat;
216 AVIFILE_CloseCompressor(This);
218 if (FAILED(IGetFrame_SetFormat(iface, &bi, NULL, 0, 0, -1, -1))) {
219 if (FAILED(IGetFrame_SetFormat(iface, NULL, NULL, 0, 0, -1, -1)))
220 return NULL;
222 } else if (FAILED(IGetFrame_SetFormat(iface, NULL, NULL, 0, 0, -1, -1)))
223 return NULL;
227 if (lPos != This->lCurrentFrame) {
228 LONG lNext = IAVIStream_FindSample(This->pStream,lPos,FIND_KEY|FIND_PREV);
230 if (lNext == -1)
231 return NULL; /* frame doesn't exist */
232 if (lNext <= This->lCurrentFrame && This->lCurrentFrame < lPos)
233 lNext = This->lCurrentFrame + 1;
235 for (; lNext <= lPos; lNext++) {
236 /* new format for this frame? */
237 if (This->bFormatChanges) {
238 IAVIStream_ReadFormat(This->pStream, lNext,
239 This->lpInFormat, &This->cbInFormat);
240 if (This->lpOutFormat != NULL) {
241 if (This->lpOutFormat->biBitCount <= 8)
242 ICDecompressGetPalette(This->hic, This->lpInFormat,
243 This->lpOutFormat);
247 /* read input frame */
248 while (FAILED(AVIStreamRead(This->pStream, lNext, 1, This->lpInBuffer,
249 This->cbInBuffer, &readBytes, &readSamples))) {
250 /* not enough memory for input buffer? */
251 readBytes = 0;
252 if (FAILED(AVIStreamSampleSize(This->pStream, lNext, &readBytes)))
253 return NULL; /* bad thing, but bad things will happen */
254 if (readBytes <= 0) {
255 ERR(": IAVIStream::REad doesn't return needed bytes!\n");
256 return NULL;
259 /* IAVIStream::Read failed because of other reasons not buffersize? */
260 if (This->cbInBuffer >= readBytes)
261 break;
262 This->cbInBuffer = This->cbInFormat + readBytes;
263 This->lpInFormat = HeapReAlloc(GetProcessHeap(), 0, This->lpInFormat, This->cbInBuffer);
264 if (This->lpInFormat == NULL)
265 return NULL; /* out of memory */
266 This->lpInBuffer = (BYTE*)This->lpInFormat + This->cbInFormat;
269 if (readSamples != 1) {
270 ERR(": no frames read\n");
271 return NULL;
273 if (readBytes != 0) {
274 This->lpInFormat->biSizeImage = readBytes;
276 /* nothing to decompress? */
277 if (This->hic == NULL) {
278 This->lCurrentFrame = lPos;
279 return This->lpInFormat;
282 if (This->bResize) {
283 ICDecompressEx(This->hic,0,This->lpInFormat,This->lpInBuffer,0,0,
284 This->lpInFormat->biWidth,This->lpInFormat->biHeight,
285 This->lpOutFormat,This->lpOutBuffer,This->x,This->y,
286 This->dx,This->dy);
287 } else {
288 ICDecompress(This->hic, 0, This->lpInFormat, This->lpInBuffer,
289 This->lpOutFormat, This->lpOutBuffer);
292 } /* for (lNext < lPos) */
293 } /* if (This->lCurrentFrame != lPos) */
295 return (This->hic == NULL ? This->lpInFormat : This->lpOutFormat);
298 static HRESULT WINAPI IGetFrame_fnBegin(IGetFrame *iface, LONG lStart,
299 LONG lEnd, LONG lRate)
301 IGetFrameImpl *This = (IGetFrameImpl *)iface;
303 TRACE("(%p,%d,%d,%d)\n", iface, lStart, lEnd, lRate);
305 This->bFixedStream = TRUE;
307 return (IGetFrame_GetFrame(iface, lStart) ? AVIERR_OK : AVIERR_ERROR);
310 static HRESULT WINAPI IGetFrame_fnEnd(IGetFrame *iface)
312 IGetFrameImpl *This = (IGetFrameImpl *)iface;
314 TRACE("(%p)\n", iface);
316 This->bFixedStream = FALSE;
318 return AVIERR_OK;
321 static HRESULT WINAPI IGetFrame_fnSetFormat(IGetFrame *iface,
322 LPBITMAPINFOHEADER lpbiWanted,
323 LPVOID lpBits, INT x, INT y,
324 INT dx, INT dy)
326 IGetFrameImpl *This = (IGetFrameImpl *)iface;
328 AVISTREAMINFOW sInfo;
329 LPBITMAPINFOHEADER lpbi = lpbiWanted;
330 BOOL bBestDisplay = FALSE;
332 TRACE("(%p,%p,%p,%d,%d,%d,%d)\n", iface, lpbiWanted, lpBits,
333 x, y, dx, dy);
335 if (This->pStream == NULL)
336 return AVIERR_ERROR;
338 if (lpbiWanted == (LPBITMAPINFOHEADER)AVIGETFRAMEF_BESTDISPLAYFMT) {
339 lpbi = NULL;
340 bBestDisplay = TRUE;
343 IAVIStream_Info(This->pStream, &sInfo, sizeof(sInfo));
344 if (sInfo.fccType != streamtypeVIDEO)
345 return AVIERR_UNSUPPORTED;
347 This->bFormatChanges =
348 (sInfo.dwFlags & AVISTREAMINFO_FORMATCHANGES ? TRUE : FALSE );
349 This->dwFormatChangeCount = sInfo.dwFormatChangeCount;
350 This->dwEditCount = sInfo.dwEditCount;
351 This->lCurrentFrame = -1;
353 /* get input format from stream */
354 if (This->lpInFormat == NULL) {
355 HRESULT hr;
357 This->cbInBuffer = (LONG)sInfo.dwSuggestedBufferSize;
358 if (This->cbInBuffer == 0)
359 This->cbInBuffer = 1024;
361 IAVIStream_ReadFormat(This->pStream, sInfo.dwStart,
362 NULL, &This->cbInFormat);
364 This->lpInFormat = HeapAlloc(GetProcessHeap(), 0, This->cbInFormat + This->cbInBuffer);
365 if (This->lpInFormat == NULL) {
366 AVIFILE_CloseCompressor(This);
367 return AVIERR_MEMORY;
370 hr = IAVIStream_ReadFormat(This->pStream, sInfo.dwStart, This->lpInFormat, &This->cbInFormat);
371 if (FAILED(hr)) {
372 AVIFILE_CloseCompressor(This);
373 return hr;
376 This->lpInBuffer = ((LPBYTE)This->lpInFormat) + This->cbInFormat;
379 /* check input format */
380 if (This->lpInFormat->biClrUsed == 0 && This->lpInFormat->biBitCount <= 8)
381 This->lpInFormat->biClrUsed = 1u << This->lpInFormat->biBitCount;
382 if (This->lpInFormat->biSizeImage == 0 &&
383 This->lpInFormat->biCompression == BI_RGB) {
384 This->lpInFormat->biSizeImage =
385 DIBWIDTHBYTES(*This->lpInFormat) * This->lpInFormat->biHeight;
388 /* only to pass through? */
389 if (This->lpInFormat->biCompression == BI_RGB && lpBits == NULL) {
390 if (lpbi == NULL ||
391 (lpbi->biCompression == BI_RGB &&
392 lpbi->biWidth == This->lpInFormat->biWidth &&
393 lpbi->biHeight == This->lpInFormat->biHeight &&
394 lpbi->biBitCount == This->lpInFormat->biBitCount)) {
395 This->lpOutFormat = This->lpInFormat;
396 This->lpOutBuffer = DIBPTR(This->lpInFormat);
397 return AVIERR_OK;
401 /* need memory for output format? */
402 if (This->lpOutFormat == NULL) {
403 This->lpOutFormat =
404 HeapAlloc(GetProcessHeap(), 0, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
405 if (This->lpOutFormat == NULL) {
406 AVIFILE_CloseCompressor(This);
407 return AVIERR_MEMORY;
411 /* need handle to video compressor */
412 if (This->hic == NULL) {
413 FOURCC fccHandler;
415 if (This->lpInFormat->biCompression == BI_RGB)
416 fccHandler = comptypeDIB;
417 else if (This->lpInFormat->biCompression == BI_RLE8)
418 fccHandler = mmioFOURCC('R','L','E',' ');
419 else
420 fccHandler = sInfo.fccHandler;
422 if (lpbi != NULL) {
423 if (lpbi->biWidth == 0)
424 lpbi->biWidth = This->lpInFormat->biWidth;
425 if (lpbi->biHeight == 0)
426 lpbi->biHeight = This->lpInFormat->biHeight;
429 This->hic = ICLocate(ICTYPE_VIDEO, fccHandler, This->lpInFormat, lpbi, ICMODE_DECOMPRESS);
430 if (This->hic == NULL) {
431 AVIFILE_CloseCompressor(This);
432 return AVIERR_NOCOMPRESSOR;
436 /* output format given? */
437 if (lpbi != NULL) {
438 /* check the given output format ... */
439 if (lpbi->biClrUsed == 0 && lpbi->biBitCount <= 8)
440 lpbi->biClrUsed = 1u << lpbi->biBitCount;
442 /* ... and remember it */
443 memcpy(This->lpOutFormat, lpbi,
444 lpbi->biSize + lpbi->biClrUsed * sizeof(RGBQUAD));
445 if (lpbi->biBitCount <= 8)
446 ICDecompressGetPalette(This->hic, This->lpInFormat, This->lpOutFormat);
448 return AVIERR_OK;
449 } else {
450 if (bBestDisplay) {
451 ICGetDisplayFormat(This->hic, This->lpInFormat,
452 This->lpOutFormat, 0, dx, dy);
453 } else if (ICDecompressGetFormat(This->hic, This->lpInFormat,
454 This->lpOutFormat) < 0) {
455 AVIFILE_CloseCompressor(This);
456 return AVIERR_NOCOMPRESSOR;
459 /* check output format */
460 if (This->lpOutFormat->biClrUsed == 0 &&
461 This->lpOutFormat->biBitCount <= 8)
462 This->lpOutFormat->biClrUsed = 1u << This->lpOutFormat->biBitCount;
463 if (This->lpOutFormat->biSizeImage == 0 &&
464 This->lpOutFormat->biCompression == BI_RGB) {
465 This->lpOutFormat->biSizeImage =
466 DIBWIDTHBYTES(*This->lpOutFormat) * This->lpOutFormat->biHeight;
469 if (lpBits == NULL) {
470 register DWORD size = This->lpOutFormat->biClrUsed * sizeof(RGBQUAD);
472 size += This->lpOutFormat->biSize + This->lpOutFormat->biSizeImage;
473 This->lpOutFormat = HeapReAlloc(GetProcessHeap(), 0, This->lpOutFormat, size);
474 if (This->lpOutFormat == NULL) {
475 AVIFILE_CloseCompressor(This);
476 return AVIERR_MEMORY;
478 This->lpOutBuffer = DIBPTR(This->lpOutFormat);
479 } else
480 This->lpOutBuffer = lpBits;
482 /* for user size was irrelevant */
483 if (dx == -1)
484 dx = This->lpOutFormat->biWidth;
485 if (dy == -1)
486 dy = This->lpOutFormat->biHeight;
488 /* need to resize? */
489 if (x != 0 || y != 0) {
490 if (dy == This->lpOutFormat->biHeight &&
491 dx == This->lpOutFormat->biWidth)
492 This->bResize = FALSE;
493 else
494 This->bResize = TRUE;
497 if (This->bResize) {
498 This->x = x;
499 This->y = y;
500 This->dx = dx;
501 This->dy = dy;
503 if (ICDecompressExBegin(This->hic,0,This->lpInFormat,This->lpInBuffer,0,
504 0,This->lpInFormat->biWidth,
505 This->lpInFormat->biHeight,This->lpOutFormat,
506 This->lpOutBuffer, x, y, dx, dy) == ICERR_OK)
507 return AVIERR_OK;
508 } else if (ICDecompressBegin(This->hic, This->lpInFormat,
509 This->lpOutFormat) == ICERR_OK)
510 return AVIERR_OK;
512 AVIFILE_CloseCompressor(This);
514 return AVIERR_COMPRESSOR;
518 /***********************************************************************/