Get rid of the no longer used ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
[wine/multimedia.git] / dlls / quartz / memallocator.c
blob3fb59fef9873e9d386bcd504c5739760d5c925a4
1 /*
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
21 #include <assert.h>
22 #include <limits.h>
23 #include <stdarg.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "vfwmsgs.h"
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)
37 if (!pProps)
39 TRACE("AM_SAMPLE2_PROPERTIES: (null)\n");
40 return;
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;
58 ULONG ref;
59 ALLOCATOR_PROPERTIES * pProps;
60 CRITICAL_SECTION csState;
61 HRESULT (* fnAlloc) (IMemAllocator *);
62 HRESULT (* fnFree)(IMemAllocator *);
63 HANDLE hSemWaiting;
64 BOOL bDecommitQueued;
65 BOOL bCommitted;
66 LONG lWaiting;
67 struct list free_list;
68 struct list used_list;
69 } BaseMemAllocator;
71 typedef struct StdMediaSample2
73 const IMediaSample2Vtbl * lpvtbl;
75 ULONG ref;
76 AM_SAMPLE2_PROPERTIES props;
77 IMemAllocator * pParent;
78 struct list listentry;
79 LONGLONG tMediaStart;
80 LONGLONG tMediaEnd;
81 } StdMediaSample2;
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)
88 #ifdef _I64_MAX
89 #define INVALID_MEDIA_TIME _I64_MAX
90 #else
91 #define INVALID_MEDIA_TIME ((long long)(~0ull >> 1))
92 #endif
94 static HRESULT BaseMemAllocator_Init(HRESULT (* fnAlloc)(IMemAllocator *), HRESULT (* fnFree)(IMemAllocator *), BaseMemAllocator * pMemAlloc)
96 assert(fnAlloc && fnFree);
98 pMemAlloc->lpVtbl = &BaseMemAllocator_VTable;
100 pMemAlloc->ref = 1;
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);
113 return S_OK;
116 static HRESULT WINAPI BaseMemAllocator_QueryInterface(IMemAllocator * iface, REFIID riid, LPVOID * ppv)
118 ICOM_THIS(BaseMemAllocator, iface);
119 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
121 *ppv = NULL;
123 if (IsEqualIID(riid, &IID_IUnknown))
124 *ppv = (LPVOID)This;
125 else if (IsEqualIID(riid, &IID_IMemAllocator))
126 *ppv = (LPVOID)This;
128 if (*ppv)
130 IUnknown_AddRef((IUnknown *)(*ppv));
131 return S_OK;
134 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
136 return E_NOINTERFACE;
139 static ULONG WINAPI BaseMemAllocator_AddRef(IMemAllocator * iface)
141 ICOM_THIS(BaseMemAllocator, iface);
143 TRACE("()\n");
145 return InterlockedIncrement(&This->ref);
148 static ULONG WINAPI BaseMemAllocator_Release(IMemAllocator * iface)
150 ICOM_THIS(BaseMemAllocator, iface);
152 TRACE("()\n");
154 if (!InterlockedDecrement(&This->ref))
156 CloseHandle(This->hSemWaiting);
157 if (This->bCommitted)
158 This->fnFree(iface);
159 if (This->pProps)
160 HeapFree(GetProcessHeap(), 0, This->pProps);
161 CoTaskMemFree(This);
162 return 0;
164 return This->ref;
167 static HRESULT WINAPI BaseMemAllocator_SetProperties(IMemAllocator * iface, ALLOCATOR_PROPERTIES *pRequest, ALLOCATOR_PROPERTIES *pActual)
169 ICOM_THIS(BaseMemAllocator, iface);
170 HRESULT hr;
172 TRACE("(%p, %p)\n", pRequest, pActual);
174 EnterCriticalSection(&This->csState);
176 if (!list_empty(&This->used_list))
177 hr = VFW_E_BUFFERS_OUTSTANDING;
178 else if (This->bCommitted)
179 hr = VFW_E_ALREADY_COMMITTED;
180 else
182 if (!This->pProps)
183 This->pProps = HeapAlloc(GetProcessHeap(), 0, sizeof(*This->pProps));
185 if (!This->pProps)
186 hr = E_OUTOFMEMORY;
187 else
189 memcpy(This->pProps, pRequest, sizeof(*This->pProps));
191 memcpy(pActual, pRequest, sizeof(*pActual));
193 hr = S_OK;
197 LeaveCriticalSection(&This->csState);
199 return hr;
202 static HRESULT WINAPI BaseMemAllocator_GetProperties(IMemAllocator * iface, ALLOCATOR_PROPERTIES *pProps)
204 ICOM_THIS(BaseMemAllocator, iface);
205 HRESULT hr = S_OK;
207 TRACE("(%p)\n", pProps);
209 EnterCriticalSection(&This->csState);
211 /* NOTE: this is different from the native version.
212 * It would silently succeed if the properties had
213 * not been set, but would fail further on down the
214 * line with some obscure error like having an
215 * invalid alignment. Whether or not our version
216 * will cause any problems remains to be seen */
217 if (!This->pProps)
218 hr = VFW_E_SIZENOTSET;
219 else
220 memcpy(pProps, This->pProps, sizeof(*pProps));
222 LeaveCriticalSection(&This->csState);
224 return hr;
227 static HRESULT WINAPI BaseMemAllocator_Commit(IMemAllocator * iface)
229 ICOM_THIS(BaseMemAllocator, iface);
230 HRESULT hr;
232 TRACE("()\n");
234 EnterCriticalSection(&This->csState);
236 if (!This->pProps)
237 hr = VFW_E_SIZENOTSET;
238 else if (This->bCommitted)
239 hr = VFW_E_ALREADY_COMMITTED;
240 else if (This->bDecommitQueued)
242 This->bDecommitQueued = FALSE;
243 hr = S_OK;
245 else
247 if (!(This->hSemWaiting = CreateSemaphoreW(NULL, This->pProps->cBuffers, This->pProps->cBuffers, NULL)))
249 ERR("Couldn't create semaphore (error was %ld)\n", GetLastError());
250 hr = HRESULT_FROM_WIN32(GetLastError());
252 else
254 hr = This->fnAlloc(iface);
255 if (SUCCEEDED(hr))
256 This->bCommitted = TRUE;
257 else
258 ERR("fnAlloc failed with error 0x%lx\n", hr);
262 LeaveCriticalSection(&This->csState);
264 return hr;
267 static HRESULT WINAPI BaseMemAllocator_Decommit(IMemAllocator * iface)
269 ICOM_THIS(BaseMemAllocator, iface);
270 HRESULT hr;
272 TRACE("()\n");
274 EnterCriticalSection(&This->csState);
276 if (!This->bCommitted)
277 hr = VFW_E_NOT_COMMITTED;
278 else
280 if (!list_empty(&This->used_list))
282 This->bDecommitQueued = TRUE;
283 /* notify ALL waiting threads that they cannot be allocated a buffer any more */
284 ReleaseSemaphore(This->hSemWaiting, This->lWaiting, NULL);
286 hr = S_OK;
288 else
290 assert(This->lWaiting == 0);
292 This->bCommitted = FALSE;
293 CloseHandle(This->hSemWaiting);
294 This->hSemWaiting = NULL;
296 hr = This->fnFree(iface);
297 if (FAILED(hr))
298 ERR("fnFree failed with error 0x%lx\n", hr);
302 LeaveCriticalSection(&This->csState);
304 return hr;
307 static HRESULT WINAPI BaseMemAllocator_GetBuffer(IMemAllocator * iface, IMediaSample ** pSample, REFERENCE_TIME *pStartTime, REFERENCE_TIME *pEndTime, DWORD dwFlags)
309 ICOM_THIS(BaseMemAllocator, iface);
310 HRESULT hr = S_OK;
312 /* NOTE: The pStartTime and pEndTime parameters are not applied to the sample.
313 * The allocator might use these values to determine which buffer it retrieves */
315 TRACE("(%p, %p, %p, %lx)\n", pSample, pStartTime, pEndTime, dwFlags);
317 *pSample = NULL;
319 if (!This->bCommitted)
320 return VFW_E_NOT_COMMITTED;
322 This->lWaiting++;
323 if (WaitForSingleObject(This->hSemWaiting, (dwFlags & AM_GBF_NOWAIT) ? 0 : INFINITE) != WAIT_OBJECT_0)
325 This->lWaiting--;
326 return VFW_E_TIMEOUT;
328 This->lWaiting--;
330 EnterCriticalSection(&This->csState);
332 if (!This->bCommitted)
333 hr = VFW_E_NOT_COMMITTED;
334 else if (This->bDecommitQueued)
335 hr = VFW_E_TIMEOUT;
336 else
338 struct list * free = list_head(&This->free_list);
339 list_remove(free);
340 list_add_head(&This->used_list, free);
342 *pSample = (IMediaSample *)LIST_ENTRY(free, StdMediaSample2, listentry);
344 assert(((StdMediaSample2 *)*pSample)->ref == 0);
346 IMediaSample_AddRef(*pSample);
349 LeaveCriticalSection(&This->csState);
351 return hr;
354 static HRESULT WINAPI BaseMemAllocator_ReleaseBuffer(IMemAllocator * iface, IMediaSample * pSample)
356 ICOM_THIS(BaseMemAllocator, iface);
357 StdMediaSample2 * pStdSample = (StdMediaSample2 *)pSample;
358 HRESULT hr = S_OK;
360 TRACE("(%p)\n", pSample);
362 /* FIXME: make sure that sample is currently on the used list */
364 /* FIXME: we should probably check the ref count on the sample before freeing
365 * it to make sure that it is not still in use */
366 EnterCriticalSection(&This->csState);
368 if (!This->bCommitted)
369 ERR("Releasing a buffer when the allocator is not committed?!?\n");
371 /* remove from used_list */
372 list_remove(&pStdSample->listentry);
374 list_add_head(&This->free_list, &pStdSample->listentry);
376 if (list_empty(&This->used_list) && This->bDecommitQueued && This->bCommitted)
378 HRESULT hrfree;
380 assert(This->lWaiting == 0);
382 This->bCommitted = FALSE;
383 This->bDecommitQueued = FALSE;
385 CloseHandle(This->hSemWaiting);
386 This->hSemWaiting = NULL;
388 if (FAILED(hrfree = This->fnFree(iface)))
389 ERR("fnFree failed with error 0x%lx\n", hrfree);
392 LeaveCriticalSection(&This->csState);
394 /* notify a waiting thread that there is now a free buffer */
395 if (!ReleaseSemaphore(This->hSemWaiting, 1, NULL))
397 ERR("ReleaseSemaphore failed with error %ld\n", GetLastError());
398 hr = HRESULT_FROM_WIN32(GetLastError());
401 return hr;
404 static const IMemAllocatorVtbl BaseMemAllocator_VTable =
406 BaseMemAllocator_QueryInterface,
407 BaseMemAllocator_AddRef,
408 BaseMemAllocator_Release,
409 BaseMemAllocator_SetProperties,
410 BaseMemAllocator_GetProperties,
411 BaseMemAllocator_Commit,
412 BaseMemAllocator_Decommit,
413 BaseMemAllocator_GetBuffer,
414 BaseMemAllocator_ReleaseBuffer
417 static HRESULT StdMediaSample2_Construct(BYTE * pbBuffer, LONG cbBuffer, IMemAllocator * pParent, StdMediaSample2 ** ppSample)
419 assert(pbBuffer && pParent && (cbBuffer > 0));
421 if (!(*ppSample = CoTaskMemAlloc(sizeof(StdMediaSample2))))
422 return E_OUTOFMEMORY;
424 (*ppSample)->lpvtbl = &StdMediaSample2_VTable;
425 (*ppSample)->ref = 0;
426 ZeroMemory(&(*ppSample)->props, sizeof((*ppSample)->props));
428 /* NOTE: no need to AddRef as the parent is guaranteed to be around
429 * at least as long as us and we don't want to create circular
430 * dependencies on the ref count */
431 (*ppSample)->pParent = pParent;
432 (*ppSample)->props.cbData = sizeof(AM_SAMPLE2_PROPERTIES);
433 (*ppSample)->props.cbBuffer = (*ppSample)->props.lActual = cbBuffer;
434 (*ppSample)->props.pbBuffer = pbBuffer;
435 (*ppSample)->tMediaStart = INVALID_MEDIA_TIME;
436 (*ppSample)->tMediaEnd = 0;
438 return S_OK;
441 static void StdMediaSample2_Delete(StdMediaSample2 * This)
443 /* NOTE: does not remove itself from the list it belongs to */
444 CoTaskMemFree(This);
447 static HRESULT WINAPI StdMediaSample2_QueryInterface(IMediaSample2 * iface, REFIID riid, LPVOID * ppv)
449 ICOM_THIS(StdMediaSample2, iface);
450 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
452 *ppv = NULL;
454 if (IsEqualIID(riid, &IID_IUnknown))
455 *ppv = (LPVOID)This;
456 else if (IsEqualIID(riid, &IID_IMediaSample))
457 *ppv = (LPVOID)This;
458 else if (IsEqualIID(riid, &IID_IMediaSample2))
459 *ppv = (LPVOID)This;
461 if (*ppv)
463 IUnknown_AddRef((IUnknown *)(*ppv));
464 return S_OK;
467 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
469 return E_NOINTERFACE;
472 static ULONG WINAPI StdMediaSample2_AddRef(IMediaSample2 * iface)
474 ICOM_THIS(StdMediaSample2, iface);
476 TRACE("(%p)->() AddRef from %ld\n", iface, This->ref);
478 return InterlockedIncrement(&This->ref);
481 static ULONG WINAPI StdMediaSample2_Release(IMediaSample2 * iface)
483 ICOM_THIS(StdMediaSample2, iface);
485 TRACE("(%p)->() Release from %ld\n", iface, This->ref);
487 if (!InterlockedDecrement(&This->ref))
489 IMemAllocator_ReleaseBuffer(This->pParent, (IMediaSample *)iface);
490 return 0;
492 return This->ref;
495 static HRESULT WINAPI StdMediaSample2_GetPointer(IMediaSample2 * iface, BYTE ** ppBuffer)
497 ICOM_THIS(StdMediaSample2, iface);
499 TRACE("(%p)\n", ppBuffer);
501 *ppBuffer = This->props.pbBuffer;
503 return S_OK;
506 static long WINAPI StdMediaSample2_GetSize(IMediaSample2 * iface)
508 ICOM_THIS(StdMediaSample2, iface);
510 TRACE("StdMediaSample2_GetSize()\n");
512 return This->props.cbBuffer;
515 static HRESULT WINAPI StdMediaSample2_GetTime(IMediaSample2 * iface, REFERENCE_TIME * pStart, REFERENCE_TIME * pEnd)
517 HRESULT hr;
518 ICOM_THIS(StdMediaSample2, iface);
520 TRACE("(%p, %p)\n", pStart, pEnd);
522 if (!(This->props.dwSampleFlags & AM_SAMPLE_TIMEVALID))
523 hr = VFW_E_SAMPLE_TIME_NOT_SET;
524 else if (!(This->props.dwSampleFlags & AM_SAMPLE_STOPVALID))
526 *pStart = This->props.tStart;
527 *pEnd = This->props.tStart + 1;
529 hr = VFW_S_NO_STOP_TIME;
531 else
533 *pStart = This->props.tStart;
534 *pEnd = This->props.tStop;
536 hr = S_OK;
539 return S_OK;
542 static HRESULT WINAPI StdMediaSample2_SetTime(IMediaSample2 * iface, REFERENCE_TIME * pStart, REFERENCE_TIME * pEnd)
544 ICOM_THIS(StdMediaSample2, iface);
546 TRACE("(%p, %p)\n", pStart, pEnd);
548 if (pStart)
550 This->props.tStart = *pStart;
551 This->props.dwSampleFlags |= AM_SAMPLE_TIMEVALID;
553 else
554 This->props.dwSampleFlags &= ~AM_SAMPLE_TIMEVALID;
556 if (pEnd)
558 This->props.tStop = *pEnd;
559 This->props.dwSampleFlags |= AM_SAMPLE_STOPVALID;
561 else
562 This->props.dwSampleFlags &= ~AM_SAMPLE_STOPVALID;
564 return S_OK;
567 static HRESULT WINAPI StdMediaSample2_IsSyncPoint(IMediaSample2 * iface)
569 ICOM_THIS(StdMediaSample2, iface);
571 TRACE("()\n");
573 return (This->props.dwSampleFlags & AM_SAMPLE_SPLICEPOINT) ? S_OK : S_FALSE;
576 static HRESULT WINAPI StdMediaSample2_SetSyncPoint(IMediaSample2 * iface, BOOL bIsSyncPoint)
578 ICOM_THIS(StdMediaSample2, iface);
580 TRACE("(%s)\n", bIsSyncPoint ? "TRUE" : "FALSE");
582 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_SPLICEPOINT) | bIsSyncPoint ? AM_SAMPLE_SPLICEPOINT : 0;
584 return S_OK;
587 static HRESULT WINAPI StdMediaSample2_IsPreroll(IMediaSample2 * iface)
589 ICOM_THIS(StdMediaSample2, iface);
591 TRACE("()\n");
593 return (This->props.dwSampleFlags & AM_SAMPLE_PREROLL) ? S_OK : S_FALSE;
596 static HRESULT WINAPI StdMediaSample2_SetPreroll(IMediaSample2 * iface, BOOL bIsPreroll)
598 ICOM_THIS(StdMediaSample2, iface);
600 TRACE("(%s)\n", bIsPreroll ? "TRUE" : "FALSE");
602 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_PREROLL) | bIsPreroll ? AM_SAMPLE_PREROLL : 0;
604 return S_OK;
607 static LONG WINAPI StdMediaSample2_GetActualDataLength(IMediaSample2 * iface)
609 ICOM_THIS(StdMediaSample2, iface);
611 TRACE("()\n");
613 return This->props.lActual;
616 static HRESULT WINAPI StdMediaSample2_SetActualDataLength(IMediaSample2 * iface, LONG len)
618 ICOM_THIS(StdMediaSample2, iface);
620 TRACE("(%ld)\n", len);
622 if ((len > This->props.cbBuffer) || (len < 0))
623 return VFW_E_BUFFER_OVERFLOW;
624 else
626 This->props.lActual = len;
627 return S_OK;
631 static HRESULT WINAPI StdMediaSample2_GetMediaType(IMediaSample2 * iface, AM_MEDIA_TYPE ** ppMediaType)
633 ICOM_THIS(StdMediaSample2, iface);
635 TRACE("(%p)\n", ppMediaType);
637 if (!This->props.pMediaType)
638 return S_FALSE;
640 if (!(*ppMediaType = CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE))))
641 return E_OUTOFMEMORY;
643 return CopyMediaType(*ppMediaType, This->props.pMediaType);
646 static HRESULT WINAPI StdMediaSample2_SetMediaType(IMediaSample2 * iface, AM_MEDIA_TYPE * pMediaType)
648 ICOM_THIS(StdMediaSample2, iface);
650 TRACE("(%p)\n", pMediaType);
652 if (This->props.pMediaType)
653 DeleteMediaType(This->props.pMediaType);
654 else if (!(This->props.pMediaType = CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE))))
655 return E_OUTOFMEMORY;
657 return CopyMediaType(This->props.pMediaType, pMediaType);
660 static HRESULT WINAPI StdMediaSample2_IsDiscontinuity(IMediaSample2 * iface)
662 ICOM_THIS(StdMediaSample2, iface);
664 TRACE("()\n");
666 return (This->props.dwSampleFlags & AM_SAMPLE_DATADISCONTINUITY) ? S_OK : S_FALSE;
669 static HRESULT WINAPI StdMediaSample2_SetDiscontinuity(IMediaSample2 * iface, BOOL bIsDiscontinuity)
671 ICOM_THIS(StdMediaSample2, iface);
673 TRACE("(%s)\n", bIsDiscontinuity ? "TRUE" : "FALSE");
675 This->props.dwSampleFlags = (This->props.dwSampleFlags & ~AM_SAMPLE_DATADISCONTINUITY) | bIsDiscontinuity ? AM_SAMPLE_DATADISCONTINUITY : 0;
677 return S_OK;
680 static HRESULT WINAPI StdMediaSample2_GetMediaTime(IMediaSample2 * iface, LONGLONG * pStart, LONGLONG * pEnd)
682 ICOM_THIS(StdMediaSample2, iface);
684 TRACE("(%p, %p)\n", pStart, pEnd);
686 if (This->tMediaStart == INVALID_MEDIA_TIME)
687 return VFW_E_MEDIA_TIME_NOT_SET;
689 *pStart = This->tMediaStart;
690 *pEnd = This->tMediaEnd;
692 return E_NOTIMPL;
695 static HRESULT WINAPI StdMediaSample2_SetMediaTime(IMediaSample2 * iface, LONGLONG * pStart, LONGLONG * pEnd)
697 ICOM_THIS(StdMediaSample2, iface);
699 TRACE("(%p, %p)\n", pStart, pEnd);
701 if (pStart)
702 This->tMediaStart = *pStart;
703 else
704 This->tMediaStart = INVALID_MEDIA_TIME;
706 if (pEnd)
707 This->tMediaEnd = *pEnd;
708 else
709 This->tMediaEnd = 0;
711 return S_OK;
714 static HRESULT WINAPI StdMediaSample2_GetProperties(IMediaSample2 * iface, DWORD cbProperties, BYTE * pbProperties)
716 ICOM_THIS(StdMediaSample2, iface);
718 TRACE("(%ld, %p)\n", cbProperties, pbProperties);
720 memcpy(pbProperties, &This->props, min(cbProperties, sizeof(This->props)));
722 return S_OK;
725 static HRESULT WINAPI StdMediaSample2_SetProperties(IMediaSample2 * iface, DWORD cbProperties, const BYTE * pbProperties)
727 ICOM_THIS(StdMediaSample2, iface);
729 TRACE("(%ld, %p)\n", cbProperties, pbProperties);
731 /* NOTE: pbBuffer and cbBuffer are read-only */
732 memcpy(&This->props, pbProperties, min(cbProperties, AM_SAMPLE2_PROP_SIZE_WRITABLE));
734 return S_OK;
737 static const IMediaSample2Vtbl StdMediaSample2_VTable =
739 StdMediaSample2_QueryInterface,
740 StdMediaSample2_AddRef,
741 StdMediaSample2_Release,
742 StdMediaSample2_GetPointer,
743 StdMediaSample2_GetSize,
744 StdMediaSample2_GetTime,
745 StdMediaSample2_SetTime,
746 StdMediaSample2_IsSyncPoint,
747 StdMediaSample2_SetSyncPoint,
748 StdMediaSample2_IsPreroll,
749 StdMediaSample2_SetPreroll,
750 StdMediaSample2_GetActualDataLength,
751 StdMediaSample2_SetActualDataLength,
752 StdMediaSample2_GetMediaType,
753 StdMediaSample2_SetMediaType,
754 StdMediaSample2_IsDiscontinuity,
755 StdMediaSample2_SetDiscontinuity,
756 StdMediaSample2_GetMediaTime,
757 StdMediaSample2_SetMediaTime,
758 StdMediaSample2_GetProperties,
759 StdMediaSample2_SetProperties
762 typedef struct StdMemAllocator
764 BaseMemAllocator base;
765 LPVOID pMemory;
766 } StdMemAllocator;
768 static HRESULT StdMemAllocator_Alloc(IMemAllocator * iface)
770 ICOM_THIS(StdMemAllocator, iface);
771 StdMediaSample2 * pSample = NULL;
772 SYSTEM_INFO si;
773 long i;
775 assert(list_empty(&This->base.free_list));
777 /* check alignment */
778 GetSystemInfo(&si);
780 /* we do not allow a courser alignment than the OS page size */
781 if ((si.dwPageSize % This->base.pProps->cbAlign) != 0)
782 return VFW_E_BADALIGN;
784 /* FIXME: each sample has to have its buffer start on the right alignment.
785 * We don't do this at the moment */
787 /* allocate memory */
788 This->pMemory = VirtualAlloc(NULL, (This->base.pProps->cbBuffer + This->base.pProps->cbPrefix) * This->base.pProps->cBuffers, MEM_COMMIT, PAGE_READWRITE);
790 for (i = This->base.pProps->cBuffers - 1; i >= 0; i--)
792 /* pbBuffer does not start at the base address, it starts at base + cbPrefix */
793 BYTE * pbBuffer = (BYTE *)This->pMemory + i * (This->base.pProps->cbBuffer + This->base.pProps->cbPrefix) + This->base.pProps->cbPrefix;
795 StdMediaSample2_Construct(pbBuffer, This->base.pProps->cbBuffer, iface, &pSample);
797 list_add_head(&This->base.free_list, &pSample->listentry);
800 return S_OK;
803 static HRESULT StdMemAllocator_Free(IMemAllocator * iface)
805 ICOM_THIS(StdMemAllocator, iface);
806 struct list * cursor;
808 assert(list_empty(&This->base.used_list));
810 while ((cursor = list_head(&This->base.free_list)) != NULL)
812 list_remove(cursor);
813 StdMediaSample2_Delete(LIST_ENTRY(cursor, StdMediaSample2, listentry));
816 /* free memory */
817 if (!VirtualFree(This->pMemory, 0, MEM_RELEASE))
819 ERR("Couldn't free memory. Error: %ld\n", GetLastError());
820 return HRESULT_FROM_WIN32(GetLastError());
823 return S_OK;
826 HRESULT StdMemAllocator_create(LPUNKNOWN lpUnkOuter, LPVOID * ppv)
828 StdMemAllocator * pMemAlloc;
829 HRESULT hr;
831 *ppv = NULL;
833 if (lpUnkOuter)
834 return CLASS_E_NOAGGREGATION;
836 if (!(pMemAlloc = CoTaskMemAlloc(sizeof(*pMemAlloc))))
837 return E_OUTOFMEMORY;
839 pMemAlloc->pMemory = NULL;
841 if (SUCCEEDED(hr = BaseMemAllocator_Init(StdMemAllocator_Alloc, StdMemAllocator_Free, &pMemAlloc->base)))
842 *ppv = (LPVOID)pMemAlloc;
843 else
844 CoTaskMemFree(pMemAlloc);
846 return hr;