2 * Memory Allocator and Media Sample Implementation
4 * Copyright 2003 Robert Shearman
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include "quartz_private.h"
30 #include "wine/list.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
35 void dump_AM_SAMPLE2_PROPERTIES(AM_SAMPLE2_PROPERTIES * pProps)
39 TRACE("AM_SAMPLE2_PROPERTIES: (null)\n");
42 TRACE("\tcbData: %ld\n", pProps->cbData);
43 TRACE("\tdwTypeSpecificFlags: 0x%8lx\n", pProps->dwTypeSpecificFlags);
44 TRACE("\tdwSampleFlags: 0x%8lx\n", pProps->dwSampleFlags);
45 TRACE("\tlActual: %ld\n", pProps->lActual);
46 TRACE("\ttStart: %lx%08lx%s\n", (LONG)(pProps->tStart >> 32), (LONG)pProps->tStart, pProps->dwSampleFlags & AM_SAMPLE_TIMEVALID ? "" : " (not valid)");
47 TRACE("\ttStop: %lx%08lx%s\n", (LONG)(pProps->tStop >> 32), (LONG)pProps->tStop, pProps->dwSampleFlags & AM_SAMPLE_STOPVALID ? "" : " (not valid)");
48 TRACE("\tdwStreamId: 0x%lx\n", pProps->dwStreamId);
49 TRACE("\tpMediaType: %p\n", pProps->pMediaType);
50 TRACE("\tpbBuffer: %p\n", pProps->pbBuffer);
51 TRACE("\tcbBuffer: %ld\n", pProps->cbBuffer);
54 typedef struct BaseMemAllocator
56 const IMemAllocatorVtbl * lpVtbl;
59 ALLOCATOR_PROPERTIES * pProps;
60 CRITICAL_SECTION csState;
61 HRESULT (* fnAlloc) (IMemAllocator *);
62 HRESULT (* fnFree)(IMemAllocator *);
67 struct list free_list;
68 struct list used_list;
71 typedef struct StdMediaSample2
73 const IMediaSample2Vtbl * lpvtbl;
76 AM_SAMPLE2_PROPERTIES props;
77 IMemAllocator * pParent;
78 struct list listentry;
83 static const struct IMemAllocatorVtbl BaseMemAllocator_VTable;
84 static const struct IMediaSample2Vtbl StdMediaSample2_VTable;
86 #define AM_SAMPLE2_PROP_SIZE_WRITABLE (unsigned int)(&((AM_SAMPLE2_PROPERTIES *)0)->pbBuffer)
89 #define INVALID_MEDIA_TIME _I64_MAX
91 #define INVALID_MEDIA_TIME ((long long)(~0ull >> 1))
94 static HRESULT BaseMemAllocator_Init(HRESULT (* fnAlloc)(IMemAllocator *), HRESULT (* fnFree)(IMemAllocator *), BaseMemAllocator * pMemAlloc)
96 assert(fnAlloc && fnFree);
98 pMemAlloc->lpVtbl = &BaseMemAllocator_VTable;
101 pMemAlloc->pProps = NULL;
102 list_init(&pMemAlloc->free_list);
103 list_init(&pMemAlloc->used_list);
104 pMemAlloc->fnAlloc = fnAlloc;
105 pMemAlloc->fnFree = fnFree;
106 pMemAlloc->bDecommitQueued = FALSE;
107 pMemAlloc->bCommitted = FALSE;
108 pMemAlloc->hSemWaiting = NULL;
109 pMemAlloc->lWaiting = 0;
111 InitializeCriticalSection(&pMemAlloc->csState);
116 static HRESULT WINAPI BaseMemAllocator_QueryInterface(IMemAllocator * iface, REFIID riid, LPVOID * ppv)
118 BaseMemAllocator *This = (BaseMemAllocator *)iface;
119 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
123 if (IsEqualIID(riid, &IID_IUnknown))
125 else if (IsEqualIID(riid, &IID_IMemAllocator))
130 IUnknown_AddRef((IUnknown *)(*ppv));
134 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
136 return E_NOINTERFACE;
139 static ULONG WINAPI BaseMemAllocator_AddRef(IMemAllocator * iface)
141 BaseMemAllocator *This = (BaseMemAllocator *)iface;
142 ULONG ref = InterlockedIncrement(&This->ref);
144 TRACE("(%p)->() AddRef from %ld\n", iface, ref - 1);
149 static ULONG WINAPI BaseMemAllocator_Release(IMemAllocator * iface)
151 BaseMemAllocator *This = (BaseMemAllocator *)iface;
152 ULONG ref = InterlockedDecrement(&This->ref);
154 TRACE("(%p)->() Release from %ld\n", iface, ref + 1);
158 CloseHandle(This->hSemWaiting);
159 if (This->bCommitted)
161 HeapFree(GetProcessHeap(), 0, This->pProps);
168 static HRESULT WINAPI BaseMemAllocator_SetProperties(IMemAllocator * iface, ALLOCATOR_PROPERTIES *pRequest, ALLOCATOR_PROPERTIES *pActual)
170 BaseMemAllocator *This = (BaseMemAllocator *)iface;
173 TRACE("(%p, %p)\n", pRequest, pActual);
175 EnterCriticalSection(&This->csState);
177 if (!list_empty(&This->used_list))
178 hr = VFW_E_BUFFERS_OUTSTANDING;
179 else if (This->bCommitted)
180 hr = VFW_E_ALREADY_COMMITTED;
184 This->pProps = HeapAlloc(GetProcessHeap(), 0, sizeof(*This->pProps));
190 memcpy(This->pProps, pRequest, sizeof(*This->pProps));
192 memcpy(pActual, pRequest, sizeof(*pActual));
198 LeaveCriticalSection(&This->csState);
203 static HRESULT WINAPI BaseMemAllocator_GetProperties(IMemAllocator * iface, ALLOCATOR_PROPERTIES *pProps)
205 BaseMemAllocator *This = (BaseMemAllocator *)iface;
208 TRACE("(%p)\n", pProps);
210 EnterCriticalSection(&This->csState);
212 /* NOTE: this is different from the native version.
213 * It would silently succeed if the properties had
214 * not been set, but would fail further on down the
215 * line with some obscure error like having an
216 * invalid alignment. Whether or not our version
217 * will cause any problems remains to be seen */
219 hr = VFW_E_SIZENOTSET;
221 memcpy(pProps, This->pProps, sizeof(*pProps));
223 LeaveCriticalSection(&This->csState);
228 static HRESULT WINAPI BaseMemAllocator_Commit(IMemAllocator * iface)
230 BaseMemAllocator *This = (BaseMemAllocator *)iface;
235 EnterCriticalSection(&This->csState);
238 hr = VFW_E_SIZENOTSET;
239 else if (This->bCommitted)
240 hr = VFW_E_ALREADY_COMMITTED;
241 else if (This->bDecommitQueued)
243 This->bDecommitQueued = FALSE;
248 if (!(This->hSemWaiting = CreateSemaphoreW(NULL, This->pProps->cBuffers, This->pProps->cBuffers, NULL)))
250 ERR("Couldn't create semaphore (error was %ld)\n", GetLastError());
251 hr = HRESULT_FROM_WIN32(GetLastError());
255 hr = This->fnAlloc(iface);
257 This->bCommitted = TRUE;
259 ERR("fnAlloc failed with error 0x%lx\n", hr);
263 LeaveCriticalSection(&This->csState);
268 static HRESULT WINAPI BaseMemAllocator_Decommit(IMemAllocator * iface)
270 BaseMemAllocator *This = (BaseMemAllocator *)iface;
275 EnterCriticalSection(&This->csState);
277 if (!This->bCommitted)
278 hr = VFW_E_NOT_COMMITTED;
281 if (!list_empty(&This->used_list))
283 This->bDecommitQueued = TRUE;
284 /* notify ALL waiting threads that they cannot be allocated a buffer any more */
285 ReleaseSemaphore(This->hSemWaiting, This->lWaiting, NULL);
291 assert(This->lWaiting == 0);
293 This->bCommitted = FALSE;
294 CloseHandle(This->hSemWaiting);
295 This->hSemWaiting = NULL;
297 hr = This->fnFree(iface);
299 ERR("fnFree failed with error 0x%lx\n", hr);
303 LeaveCriticalSection(&This->csState);
308 static HRESULT WINAPI BaseMemAllocator_GetBuffer(IMemAllocator * iface, IMediaSample ** pSample, REFERENCE_TIME *pStartTime, REFERENCE_TIME *pEndTime, DWORD dwFlags)
310 BaseMemAllocator *This = (BaseMemAllocator *)iface;
313 /* NOTE: The pStartTime and pEndTime parameters are not applied to the sample.
314 * The allocator might use these values to determine which buffer it retrieves */
316 TRACE("(%p, %p, %p, %lx)\n", pSample, pStartTime, pEndTime, dwFlags);
320 if (!This->bCommitted)
321 return VFW_E_NOT_COMMITTED;
324 if (WaitForSingleObject(This->hSemWaiting, (dwFlags & AM_GBF_NOWAIT) ? 0 : INFINITE) != WAIT_OBJECT_0)
327 return VFW_E_TIMEOUT;
331 EnterCriticalSection(&This->csState);
333 if (!This->bCommitted)
334 hr = VFW_E_NOT_COMMITTED;
335 else if (This->bDecommitQueued)
339 struct list * free = list_head(&This->free_list);
341 list_add_head(&This->used_list, free);
343 *pSample = (IMediaSample *)LIST_ENTRY(free, StdMediaSample2, listentry);
345 assert(((StdMediaSample2 *)*pSample)->ref == 0);
347 IMediaSample_AddRef(*pSample);
350 LeaveCriticalSection(&This->csState);
355 static HRESULT WINAPI BaseMemAllocator_ReleaseBuffer(IMemAllocator * iface, IMediaSample * pSample)
357 BaseMemAllocator *This = (BaseMemAllocator *)iface;
358 StdMediaSample2 * pStdSample = (StdMediaSample2 *)pSample;
361 TRACE("(%p)\n", pSample);
363 /* FIXME: make sure that sample is currently on the used list */
365 /* FIXME: we should probably check the ref count on the sample before freeing
366 * it to make sure that it is not still in use */
367 EnterCriticalSection(&This->csState);
369 if (!This->bCommitted)
370 ERR("Releasing a buffer when the allocator is not committed?!?\n");
372 /* remove from used_list */
373 list_remove(&pStdSample->listentry);
375 list_add_head(&This->free_list, &pStdSample->listentry);
377 if (list_empty(&This->used_list) && This->bDecommitQueued && This->bCommitted)
381 assert(This->lWaiting == 0);
383 This->bCommitted = FALSE;
384 This->bDecommitQueued = FALSE;
386 CloseHandle(This->hSemWaiting);
387 This->hSemWaiting = NULL;
389 if (FAILED(hrfree = This->fnFree(iface)))
390 ERR("fnFree failed with error 0x%lx\n", hrfree);
393 LeaveCriticalSection(&This->csState);
395 /* notify a waiting thread that there is now a free buffer */
396 if (!ReleaseSemaphore(This->hSemWaiting, 1, NULL))
398 ERR("ReleaseSemaphore failed with error %ld\n", GetLastError());
399 hr = HRESULT_FROM_WIN32(GetLastError());
405 static const IMemAllocatorVtbl BaseMemAllocator_VTable =
407 BaseMemAllocator_QueryInterface,
408 BaseMemAllocator_AddRef,
409 BaseMemAllocator_Release,
410 BaseMemAllocator_SetProperties,
411 BaseMemAllocator_GetProperties,
412 BaseMemAllocator_Commit,
413 BaseMemAllocator_Decommit,
414 BaseMemAllocator_GetBuffer,
415 BaseMemAllocator_ReleaseBuffer
418 static HRESULT StdMediaSample2_Construct(BYTE * pbBuffer, LONG cbBuffer, IMemAllocator * pParent, StdMediaSample2 ** ppSample)
420 assert(pbBuffer && pParent && (cbBuffer > 0));
422 if (!(*ppSample = CoTaskMemAlloc(sizeof(StdMediaSample2))))
423 return E_OUTOFMEMORY;
425 (*ppSample)->lpvtbl = &StdMediaSample2_VTable;
426 (*ppSample)->ref = 0;
427 ZeroMemory(&(*ppSample)->props, sizeof((*ppSample)->props));
429 /* NOTE: no need to AddRef as the parent is guaranteed to be around
430 * at least as long as us and we don't want to create circular
431 * dependencies on the ref count */
432 (*ppSample)->pParent = pParent;
433 (*ppSample)->props.cbData = sizeof(AM_SAMPLE2_PROPERTIES);
434 (*ppSample)->props.cbBuffer = (*ppSample)->props.lActual = cbBuffer;
435 (*ppSample)->props.pbBuffer = pbBuffer;
436 (*ppSample)->tMediaStart = INVALID_MEDIA_TIME;
437 (*ppSample)->tMediaEnd = 0;
442 static void StdMediaSample2_Delete(StdMediaSample2 * This)
444 /* NOTE: does not remove itself from the list it belongs to */
448 static HRESULT WINAPI StdMediaSample2_QueryInterface(IMediaSample2 * iface, REFIID riid, LPVOID * ppv)
450 StdMediaSample2 *This = (StdMediaSample2 *)iface;
451 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
455 if (IsEqualIID(riid, &IID_IUnknown))
457 else if (IsEqualIID(riid, &IID_IMediaSample))
459 else if (IsEqualIID(riid, &IID_IMediaSample2))
464 IUnknown_AddRef((IUnknown *)(*ppv));
468 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
470 return E_NOINTERFACE;
473 static ULONG WINAPI StdMediaSample2_AddRef(IMediaSample2 * iface)
475 StdMediaSample2 *This = (StdMediaSample2 *)iface;
476 ULONG ref = InterlockedIncrement(&This->ref);
478 TRACE("(%p)->() AddRef from %ld\n", iface, ref - 1);
483 static ULONG WINAPI StdMediaSample2_Release(IMediaSample2 * iface)
485 StdMediaSample2 *This = (StdMediaSample2 *)iface;
486 ULONG ref = InterlockedDecrement(&This->ref);
488 TRACE("(%p)->() Release from %ld\n", iface, ref + 1);
492 IMemAllocator_ReleaseBuffer(This->pParent, (IMediaSample *)iface);
498 static HRESULT WINAPI StdMediaSample2_GetPointer(IMediaSample2 * iface, BYTE ** ppBuffer)
500 StdMediaSample2 *This = (StdMediaSample2 *)iface;
502 TRACE("(%p)\n", ppBuffer);
504 *ppBuffer = This->props.pbBuffer;
509 static long WINAPI StdMediaSample2_GetSize(IMediaSample2 * iface)
511 StdMediaSample2 *This = (StdMediaSample2 *)iface;
513 TRACE("StdMediaSample2_GetSize()\n");
515 return This->props.cbBuffer;
518 static HRESULT WINAPI StdMediaSample2_GetTime(IMediaSample2 * iface, REFERENCE_TIME * pStart, REFERENCE_TIME * pEnd)
521 StdMediaSample2 *This = (StdMediaSample2 *)iface;
523 TRACE("(%p, %p)\n", pStart, pEnd);
525 if (!(This->props.dwSampleFlags & AM_SAMPLE_TIMEVALID))
526 hr = VFW_E_SAMPLE_TIME_NOT_SET;
527 else if (!(This->props.dwSampleFlags & AM_SAMPLE_STOPVALID))
529 *pStart = This->props.tStart;
530 *pEnd = This->props.tStart + 1;
532 hr = VFW_S_NO_STOP_TIME;
536 *pStart = This->props.tStart;
537 *pEnd = This->props.tStop;
545 static HRESULT WINAPI StdMediaSample2_SetTime(IMediaSample2 * iface, REFERENCE_TIME * pStart, REFERENCE_TIME * pEnd)
547 StdMediaSample2 *This = (StdMediaSample2 *)iface;
549 TRACE("(%p, %p)\n", pStart, pEnd);
553 This->props.tStart = *pStart;
554 This->props.dwSampleFlags |= AM_SAMPLE_TIMEVALID;
557 This->props.dwSampleFlags &= ~AM_SAMPLE_TIMEVALID;
561 This->props.tStop = *pEnd;
562 This->props.dwSampleFlags |= AM_SAMPLE_STOPVALID;
565 This->props.dwSampleFlags &= ~AM_SAMPLE_STOPVALID;
570 static HRESULT WINAPI StdMediaSample2_IsSyncPoint(IMediaSample2 * iface)
572 StdMediaSample2 *This = (StdMediaSample2 *)iface;
576 return (This->props.dwSampleFlags & AM_SAMPLE_SPLICEPOINT) ? S_OK : S_FALSE;
579 static HRESULT WINAPI StdMediaSample2_SetSyncPoint(IMediaSample2 * iface, BOOL bIsSyncPoint)
581 StdMediaSample2 *This = (StdMediaSample2 *)iface;
583 TRACE("(%s)\n", bIsSyncPoint ? "TRUE" : "FALSE");
585 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_SPLICEPOINT) | bIsSyncPoint ? AM_SAMPLE_SPLICEPOINT : 0;
590 static HRESULT WINAPI StdMediaSample2_IsPreroll(IMediaSample2 * iface)
592 StdMediaSample2 *This = (StdMediaSample2 *)iface;
596 return (This->props.dwSampleFlags & AM_SAMPLE_PREROLL) ? S_OK : S_FALSE;
599 static HRESULT WINAPI StdMediaSample2_SetPreroll(IMediaSample2 * iface, BOOL bIsPreroll)
601 StdMediaSample2 *This = (StdMediaSample2 *)iface;
603 TRACE("(%s)\n", bIsPreroll ? "TRUE" : "FALSE");
605 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_PREROLL) | bIsPreroll ? AM_SAMPLE_PREROLL : 0;
610 static LONG WINAPI StdMediaSample2_GetActualDataLength(IMediaSample2 * iface)
612 StdMediaSample2 *This = (StdMediaSample2 *)iface;
616 return This->props.lActual;
619 static HRESULT WINAPI StdMediaSample2_SetActualDataLength(IMediaSample2 * iface, LONG len)
621 StdMediaSample2 *This = (StdMediaSample2 *)iface;
623 TRACE("(%ld)\n", len);
625 if ((len > This->props.cbBuffer) || (len < 0))
626 return VFW_E_BUFFER_OVERFLOW;
629 This->props.lActual = len;
634 static HRESULT WINAPI StdMediaSample2_GetMediaType(IMediaSample2 * iface, AM_MEDIA_TYPE ** ppMediaType)
636 StdMediaSample2 *This = (StdMediaSample2 *)iface;
638 TRACE("(%p)\n", ppMediaType);
640 if (!This->props.pMediaType) {
641 /* Make sure we return a NULL pointer (required by native Quartz dll) */
647 if (!(*ppMediaType = CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE))))
648 return E_OUTOFMEMORY;
650 return CopyMediaType(*ppMediaType, This->props.pMediaType);
653 static HRESULT WINAPI StdMediaSample2_SetMediaType(IMediaSample2 * iface, AM_MEDIA_TYPE * pMediaType)
655 StdMediaSample2 *This = (StdMediaSample2 *)iface;
657 TRACE("(%p)\n", pMediaType);
659 if (This->props.pMediaType)
660 DeleteMediaType(This->props.pMediaType);
661 else if (!(This->props.pMediaType = CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE))))
662 return E_OUTOFMEMORY;
664 return CopyMediaType(This->props.pMediaType, pMediaType);
667 static HRESULT WINAPI StdMediaSample2_IsDiscontinuity(IMediaSample2 * iface)
669 StdMediaSample2 *This = (StdMediaSample2 *)iface;
673 return (This->props.dwSampleFlags & AM_SAMPLE_DATADISCONTINUITY) ? S_OK : S_FALSE;
676 static HRESULT WINAPI StdMediaSample2_SetDiscontinuity(IMediaSample2 * iface, BOOL bIsDiscontinuity)
678 StdMediaSample2 *This = (StdMediaSample2 *)iface;
680 TRACE("(%s)\n", bIsDiscontinuity ? "TRUE" : "FALSE");
682 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_DATADISCONTINUITY) | bIsDiscontinuity ? AM_SAMPLE_DATADISCONTINUITY : 0;
687 static HRESULT WINAPI StdMediaSample2_GetMediaTime(IMediaSample2 * iface, LONGLONG * pStart, LONGLONG * pEnd)
689 StdMediaSample2 *This = (StdMediaSample2 *)iface;
691 TRACE("(%p, %p)\n", pStart, pEnd);
693 if (This->tMediaStart == INVALID_MEDIA_TIME)
694 return VFW_E_MEDIA_TIME_NOT_SET;
696 *pStart = This->tMediaStart;
697 *pEnd = This->tMediaEnd;
702 static HRESULT WINAPI StdMediaSample2_SetMediaTime(IMediaSample2 * iface, LONGLONG * pStart, LONGLONG * pEnd)
704 StdMediaSample2 *This = (StdMediaSample2 *)iface;
706 TRACE("(%p, %p)\n", pStart, pEnd);
709 This->tMediaStart = *pStart;
711 This->tMediaStart = INVALID_MEDIA_TIME;
714 This->tMediaEnd = *pEnd;
721 static HRESULT WINAPI StdMediaSample2_GetProperties(IMediaSample2 * iface, DWORD cbProperties, BYTE * pbProperties)
723 StdMediaSample2 *This = (StdMediaSample2 *)iface;
725 TRACE("(%ld, %p)\n", cbProperties, pbProperties);
727 memcpy(pbProperties, &This->props, min(cbProperties, sizeof(This->props)));
732 static HRESULT WINAPI StdMediaSample2_SetProperties(IMediaSample2 * iface, DWORD cbProperties, const BYTE * pbProperties)
734 StdMediaSample2 *This = (StdMediaSample2 *)iface;
736 TRACE("(%ld, %p)\n", cbProperties, pbProperties);
738 /* NOTE: pbBuffer and cbBuffer are read-only */
739 memcpy(&This->props, pbProperties, min(cbProperties, AM_SAMPLE2_PROP_SIZE_WRITABLE));
744 static const IMediaSample2Vtbl StdMediaSample2_VTable =
746 StdMediaSample2_QueryInterface,
747 StdMediaSample2_AddRef,
748 StdMediaSample2_Release,
749 StdMediaSample2_GetPointer,
750 StdMediaSample2_GetSize,
751 StdMediaSample2_GetTime,
752 StdMediaSample2_SetTime,
753 StdMediaSample2_IsSyncPoint,
754 StdMediaSample2_SetSyncPoint,
755 StdMediaSample2_IsPreroll,
756 StdMediaSample2_SetPreroll,
757 StdMediaSample2_GetActualDataLength,
758 StdMediaSample2_SetActualDataLength,
759 StdMediaSample2_GetMediaType,
760 StdMediaSample2_SetMediaType,
761 StdMediaSample2_IsDiscontinuity,
762 StdMediaSample2_SetDiscontinuity,
763 StdMediaSample2_GetMediaTime,
764 StdMediaSample2_SetMediaTime,
765 StdMediaSample2_GetProperties,
766 StdMediaSample2_SetProperties
769 typedef struct StdMemAllocator
771 BaseMemAllocator base;
775 static HRESULT StdMemAllocator_Alloc(IMemAllocator * iface)
777 StdMemAllocator *This = (StdMemAllocator *)iface;
778 StdMediaSample2 * pSample = NULL;
782 assert(list_empty(&This->base.free_list));
784 /* check alignment */
787 /* we do not allow a courser alignment than the OS page size */
788 if ((si.dwPageSize % This->base.pProps->cbAlign) != 0)
789 return VFW_E_BADALIGN;
791 /* FIXME: each sample has to have its buffer start on the right alignment.
792 * We don't do this at the moment */
794 /* allocate memory */
795 This->pMemory = VirtualAlloc(NULL, (This->base.pProps->cbBuffer + This->base.pProps->cbPrefix) * This->base.pProps->cBuffers, MEM_COMMIT, PAGE_READWRITE);
797 for (i = This->base.pProps->cBuffers - 1; i >= 0; i--)
799 /* pbBuffer does not start at the base address, it starts at base + cbPrefix */
800 BYTE * pbBuffer = (BYTE *)This->pMemory + i * (This->base.pProps->cbBuffer + This->base.pProps->cbPrefix) + This->base.pProps->cbPrefix;
802 StdMediaSample2_Construct(pbBuffer, This->base.pProps->cbBuffer, iface, &pSample);
804 list_add_head(&This->base.free_list, &pSample->listentry);
810 static HRESULT StdMemAllocator_Free(IMemAllocator * iface)
812 StdMemAllocator *This = (StdMemAllocator *)iface;
813 struct list * cursor;
815 assert(list_empty(&This->base.used_list));
817 while ((cursor = list_head(&This->base.free_list)) != NULL)
820 StdMediaSample2_Delete(LIST_ENTRY(cursor, StdMediaSample2, listentry));
824 if (!VirtualFree(This->pMemory, 0, MEM_RELEASE))
826 ERR("Couldn't free memory. Error: %ld\n", GetLastError());
827 return HRESULT_FROM_WIN32(GetLastError());
833 HRESULT StdMemAllocator_create(LPUNKNOWN lpUnkOuter, LPVOID * ppv)
835 StdMemAllocator * pMemAlloc;
841 return CLASS_E_NOAGGREGATION;
843 if (!(pMemAlloc = CoTaskMemAlloc(sizeof(*pMemAlloc))))
844 return E_OUTOFMEMORY;
846 pMemAlloc->pMemory = NULL;
848 if (SUCCEEDED(hr = BaseMemAllocator_Init(StdMemAllocator_Alloc, StdMemAllocator_Free, &pMemAlloc->base)))
849 *ppv = (LPVOID)pMemAlloc;
851 CoTaskMemFree(pMemAlloc);