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
;
181 else if (pRequest
->cbAlign
== 0)
186 This
->pProps
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
->pProps
));
192 memcpy(This
->pProps
, pRequest
, sizeof(*This
->pProps
));
194 memcpy(pActual
, pRequest
, sizeof(*pActual
));
200 LeaveCriticalSection(&This
->csState
);
205 static HRESULT WINAPI
BaseMemAllocator_GetProperties(IMemAllocator
* iface
, ALLOCATOR_PROPERTIES
*pProps
)
207 BaseMemAllocator
*This
= (BaseMemAllocator
*)iface
;
210 TRACE("(%p)\n", pProps
);
212 EnterCriticalSection(&This
->csState
);
214 /* NOTE: this is different from the native version.
215 * It would silently succeed if the properties had
216 * not been set, but would fail further on down the
217 * line with some obscure error like having an
218 * invalid alignment. Whether or not our version
219 * will cause any problems remains to be seen */
221 hr
= VFW_E_SIZENOTSET
;
223 memcpy(pProps
, This
->pProps
, sizeof(*pProps
));
225 LeaveCriticalSection(&This
->csState
);
230 static HRESULT WINAPI
BaseMemAllocator_Commit(IMemAllocator
* iface
)
232 BaseMemAllocator
*This
= (BaseMemAllocator
*)iface
;
237 EnterCriticalSection(&This
->csState
);
240 hr
= VFW_E_SIZENOTSET
;
241 else if (This
->bCommitted
)
242 hr
= VFW_E_ALREADY_COMMITTED
;
243 else if (This
->bDecommitQueued
)
245 This
->bDecommitQueued
= FALSE
;
250 if (!(This
->hSemWaiting
= CreateSemaphoreW(NULL
, This
->pProps
->cBuffers
, This
->pProps
->cBuffers
, NULL
)))
252 ERR("Couldn't create semaphore (error was %ld)\n", GetLastError());
253 hr
= HRESULT_FROM_WIN32(GetLastError());
257 hr
= This
->fnAlloc(iface
);
259 This
->bCommitted
= TRUE
;
261 ERR("fnAlloc failed with error 0x%lx\n", hr
);
265 LeaveCriticalSection(&This
->csState
);
270 static HRESULT WINAPI
BaseMemAllocator_Decommit(IMemAllocator
* iface
)
272 BaseMemAllocator
*This
= (BaseMemAllocator
*)iface
;
277 EnterCriticalSection(&This
->csState
);
279 if (!This
->bCommitted
)
280 hr
= VFW_E_NOT_COMMITTED
;
283 if (!list_empty(&This
->used_list
))
285 This
->bDecommitQueued
= TRUE
;
286 /* notify ALL waiting threads that they cannot be allocated a buffer any more */
287 ReleaseSemaphore(This
->hSemWaiting
, This
->lWaiting
, NULL
);
293 assert(This
->lWaiting
== 0);
295 This
->bCommitted
= FALSE
;
296 CloseHandle(This
->hSemWaiting
);
297 This
->hSemWaiting
= NULL
;
299 hr
= This
->fnFree(iface
);
301 ERR("fnFree failed with error 0x%lx\n", hr
);
305 LeaveCriticalSection(&This
->csState
);
310 static HRESULT WINAPI
BaseMemAllocator_GetBuffer(IMemAllocator
* iface
, IMediaSample
** pSample
, REFERENCE_TIME
*pStartTime
, REFERENCE_TIME
*pEndTime
, DWORD dwFlags
)
312 BaseMemAllocator
*This
= (BaseMemAllocator
*)iface
;
315 /* NOTE: The pStartTime and pEndTime parameters are not applied to the sample.
316 * The allocator might use these values to determine which buffer it retrieves */
318 TRACE("(%p, %p, %p, %lx)\n", pSample
, pStartTime
, pEndTime
, dwFlags
);
322 if (!This
->bCommitted
)
323 return VFW_E_NOT_COMMITTED
;
326 if (WaitForSingleObject(This
->hSemWaiting
, (dwFlags
& AM_GBF_NOWAIT
) ? 0 : INFINITE
) != WAIT_OBJECT_0
)
329 return VFW_E_TIMEOUT
;
333 EnterCriticalSection(&This
->csState
);
335 if (!This
->bCommitted
)
336 hr
= VFW_E_NOT_COMMITTED
;
337 else if (This
->bDecommitQueued
)
341 struct list
* free
= list_head(&This
->free_list
);
343 list_add_head(&This
->used_list
, free
);
345 *pSample
= (IMediaSample
*)LIST_ENTRY(free
, StdMediaSample2
, listentry
);
347 assert(((StdMediaSample2
*)*pSample
)->ref
== 0);
349 IMediaSample_AddRef(*pSample
);
352 LeaveCriticalSection(&This
->csState
);
357 static HRESULT WINAPI
BaseMemAllocator_ReleaseBuffer(IMemAllocator
* iface
, IMediaSample
* pSample
)
359 BaseMemAllocator
*This
= (BaseMemAllocator
*)iface
;
360 StdMediaSample2
* pStdSample
= (StdMediaSample2
*)pSample
;
363 TRACE("(%p)\n", pSample
);
365 /* FIXME: make sure that sample is currently on the used list */
367 /* FIXME: we should probably check the ref count on the sample before freeing
368 * it to make sure that it is not still in use */
369 EnterCriticalSection(&This
->csState
);
371 if (!This
->bCommitted
)
372 ERR("Releasing a buffer when the allocator is not committed?!?\n");
374 /* remove from used_list */
375 list_remove(&pStdSample
->listentry
);
377 list_add_head(&This
->free_list
, &pStdSample
->listentry
);
379 if (list_empty(&This
->used_list
) && This
->bDecommitQueued
&& This
->bCommitted
)
383 assert(This
->lWaiting
== 0);
385 This
->bCommitted
= FALSE
;
386 This
->bDecommitQueued
= FALSE
;
388 CloseHandle(This
->hSemWaiting
);
389 This
->hSemWaiting
= NULL
;
391 if (FAILED(hrfree
= This
->fnFree(iface
)))
392 ERR("fnFree failed with error 0x%lx\n", hrfree
);
395 LeaveCriticalSection(&This
->csState
);
397 /* notify a waiting thread that there is now a free buffer */
398 if (!ReleaseSemaphore(This
->hSemWaiting
, 1, NULL
))
400 ERR("ReleaseSemaphore failed with error %ld\n", GetLastError());
401 hr
= HRESULT_FROM_WIN32(GetLastError());
407 static const IMemAllocatorVtbl BaseMemAllocator_VTable
=
409 BaseMemAllocator_QueryInterface
,
410 BaseMemAllocator_AddRef
,
411 BaseMemAllocator_Release
,
412 BaseMemAllocator_SetProperties
,
413 BaseMemAllocator_GetProperties
,
414 BaseMemAllocator_Commit
,
415 BaseMemAllocator_Decommit
,
416 BaseMemAllocator_GetBuffer
,
417 BaseMemAllocator_ReleaseBuffer
420 static HRESULT
StdMediaSample2_Construct(BYTE
* pbBuffer
, LONG cbBuffer
, IMemAllocator
* pParent
, StdMediaSample2
** ppSample
)
422 assert(pbBuffer
&& pParent
&& (cbBuffer
> 0));
424 if (!(*ppSample
= CoTaskMemAlloc(sizeof(StdMediaSample2
))))
425 return E_OUTOFMEMORY
;
427 (*ppSample
)->lpvtbl
= &StdMediaSample2_VTable
;
428 (*ppSample
)->ref
= 0;
429 ZeroMemory(&(*ppSample
)->props
, sizeof((*ppSample
)->props
));
431 /* NOTE: no need to AddRef as the parent is guaranteed to be around
432 * at least as long as us and we don't want to create circular
433 * dependencies on the ref count */
434 (*ppSample
)->pParent
= pParent
;
435 (*ppSample
)->props
.cbData
= sizeof(AM_SAMPLE2_PROPERTIES
);
436 (*ppSample
)->props
.cbBuffer
= (*ppSample
)->props
.lActual
= cbBuffer
;
437 (*ppSample
)->props
.pbBuffer
= pbBuffer
;
438 (*ppSample
)->tMediaStart
= INVALID_MEDIA_TIME
;
439 (*ppSample
)->tMediaEnd
= 0;
444 static void StdMediaSample2_Delete(StdMediaSample2
* This
)
446 /* NOTE: does not remove itself from the list it belongs to */
450 static HRESULT WINAPI
StdMediaSample2_QueryInterface(IMediaSample2
* iface
, REFIID riid
, LPVOID
* ppv
)
452 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
453 TRACE("(%s, %p)\n", qzdebugstr_guid(riid
), ppv
);
457 if (IsEqualIID(riid
, &IID_IUnknown
))
459 else if (IsEqualIID(riid
, &IID_IMediaSample
))
461 else if (IsEqualIID(riid
, &IID_IMediaSample2
))
466 IUnknown_AddRef((IUnknown
*)(*ppv
));
470 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
472 return E_NOINTERFACE
;
475 static ULONG WINAPI
StdMediaSample2_AddRef(IMediaSample2
* iface
)
477 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
478 ULONG ref
= InterlockedIncrement(&This
->ref
);
480 TRACE("(%p)->() AddRef from %ld\n", iface
, ref
- 1);
485 static ULONG WINAPI
StdMediaSample2_Release(IMediaSample2
* iface
)
487 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
488 ULONG ref
= InterlockedDecrement(&This
->ref
);
490 TRACE("(%p)->() Release from %ld\n", iface
, ref
+ 1);
494 IMemAllocator_ReleaseBuffer(This
->pParent
, (IMediaSample
*)iface
);
500 static HRESULT WINAPI
StdMediaSample2_GetPointer(IMediaSample2
* iface
, BYTE
** ppBuffer
)
502 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
504 TRACE("(%p)\n", ppBuffer
);
506 *ppBuffer
= This
->props
.pbBuffer
;
511 static long WINAPI
StdMediaSample2_GetSize(IMediaSample2
* iface
)
513 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
515 TRACE("StdMediaSample2_GetSize()\n");
517 return This
->props
.cbBuffer
;
520 static HRESULT WINAPI
StdMediaSample2_GetTime(IMediaSample2
* iface
, REFERENCE_TIME
* pStart
, REFERENCE_TIME
* pEnd
)
523 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
525 TRACE("(%p, %p)\n", pStart
, pEnd
);
527 if (!(This
->props
.dwSampleFlags
& AM_SAMPLE_TIMEVALID
))
528 hr
= VFW_E_SAMPLE_TIME_NOT_SET
;
529 else if (!(This
->props
.dwSampleFlags
& AM_SAMPLE_STOPVALID
))
531 *pStart
= This
->props
.tStart
;
532 *pEnd
= This
->props
.tStart
+ 1;
534 hr
= VFW_S_NO_STOP_TIME
;
538 *pStart
= This
->props
.tStart
;
539 *pEnd
= This
->props
.tStop
;
547 static HRESULT WINAPI
StdMediaSample2_SetTime(IMediaSample2
* iface
, REFERENCE_TIME
* pStart
, REFERENCE_TIME
* pEnd
)
549 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
551 TRACE("(%p, %p)\n", pStart
, pEnd
);
555 This
->props
.tStart
= *pStart
;
556 This
->props
.dwSampleFlags
|= AM_SAMPLE_TIMEVALID
;
559 This
->props
.dwSampleFlags
&= ~AM_SAMPLE_TIMEVALID
;
563 This
->props
.tStop
= *pEnd
;
564 This
->props
.dwSampleFlags
|= AM_SAMPLE_STOPVALID
;
567 This
->props
.dwSampleFlags
&= ~AM_SAMPLE_STOPVALID
;
572 static HRESULT WINAPI
StdMediaSample2_IsSyncPoint(IMediaSample2
* iface
)
574 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
578 return (This
->props
.dwSampleFlags
& AM_SAMPLE_SPLICEPOINT
) ? S_OK
: S_FALSE
;
581 static HRESULT WINAPI
StdMediaSample2_SetSyncPoint(IMediaSample2
* iface
, BOOL bIsSyncPoint
)
583 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
585 TRACE("(%s)\n", bIsSyncPoint
? "TRUE" : "FALSE");
587 This
->props
.dwSampleFlags
= (This
->props
.dwSampleFlags
& ~AM_SAMPLE_SPLICEPOINT
) | bIsSyncPoint
? AM_SAMPLE_SPLICEPOINT
: 0;
592 static HRESULT WINAPI
StdMediaSample2_IsPreroll(IMediaSample2
* iface
)
594 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
598 return (This
->props
.dwSampleFlags
& AM_SAMPLE_PREROLL
) ? S_OK
: S_FALSE
;
601 static HRESULT WINAPI
StdMediaSample2_SetPreroll(IMediaSample2
* iface
, BOOL bIsPreroll
)
603 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
605 TRACE("(%s)\n", bIsPreroll
? "TRUE" : "FALSE");
607 This
->props
.dwSampleFlags
= (This
->props
.dwSampleFlags
& ~AM_SAMPLE_PREROLL
) | bIsPreroll
? AM_SAMPLE_PREROLL
: 0;
612 static LONG WINAPI
StdMediaSample2_GetActualDataLength(IMediaSample2
* iface
)
614 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
618 return This
->props
.lActual
;
621 static HRESULT WINAPI
StdMediaSample2_SetActualDataLength(IMediaSample2
* iface
, LONG len
)
623 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
625 TRACE("(%ld)\n", len
);
627 if ((len
> This
->props
.cbBuffer
) || (len
< 0))
628 return VFW_E_BUFFER_OVERFLOW
;
631 This
->props
.lActual
= len
;
636 static HRESULT WINAPI
StdMediaSample2_GetMediaType(IMediaSample2
* iface
, AM_MEDIA_TYPE
** ppMediaType
)
638 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
640 TRACE("(%p)\n", ppMediaType
);
642 if (!This
->props
.pMediaType
) {
643 /* Make sure we return a NULL pointer (required by native Quartz dll) */
649 if (!(*ppMediaType
= CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE
))))
650 return E_OUTOFMEMORY
;
652 return CopyMediaType(*ppMediaType
, This
->props
.pMediaType
);
655 static HRESULT WINAPI
StdMediaSample2_SetMediaType(IMediaSample2
* iface
, AM_MEDIA_TYPE
* pMediaType
)
657 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
659 TRACE("(%p)\n", pMediaType
);
661 if (This
->props
.pMediaType
)
662 FreeMediaType(This
->props
.pMediaType
);
663 else if (!(This
->props
.pMediaType
= CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE
))))
664 return E_OUTOFMEMORY
;
666 return CopyMediaType(This
->props
.pMediaType
, pMediaType
);
669 static HRESULT WINAPI
StdMediaSample2_IsDiscontinuity(IMediaSample2
* iface
)
671 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
675 return (This
->props
.dwSampleFlags
& AM_SAMPLE_DATADISCONTINUITY
) ? S_OK
: S_FALSE
;
678 static HRESULT WINAPI
StdMediaSample2_SetDiscontinuity(IMediaSample2
* iface
, BOOL bIsDiscontinuity
)
680 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
682 TRACE("(%s)\n", bIsDiscontinuity
? "TRUE" : "FALSE");
684 This
->props
.dwSampleFlags
= (This
->props
.dwSampleFlags
& ~AM_SAMPLE_DATADISCONTINUITY
) | bIsDiscontinuity
? AM_SAMPLE_DATADISCONTINUITY
: 0;
689 static HRESULT WINAPI
StdMediaSample2_GetMediaTime(IMediaSample2
* iface
, LONGLONG
* pStart
, LONGLONG
* pEnd
)
691 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
693 TRACE("(%p, %p)\n", pStart
, pEnd
);
695 if (This
->tMediaStart
== INVALID_MEDIA_TIME
)
696 return VFW_E_MEDIA_TIME_NOT_SET
;
698 *pStart
= This
->tMediaStart
;
699 *pEnd
= This
->tMediaEnd
;
704 static HRESULT WINAPI
StdMediaSample2_SetMediaTime(IMediaSample2
* iface
, LONGLONG
* pStart
, LONGLONG
* pEnd
)
706 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
708 TRACE("(%p, %p)\n", pStart
, pEnd
);
711 This
->tMediaStart
= *pStart
;
713 This
->tMediaStart
= INVALID_MEDIA_TIME
;
716 This
->tMediaEnd
= *pEnd
;
723 static HRESULT WINAPI
StdMediaSample2_GetProperties(IMediaSample2
* iface
, DWORD cbProperties
, BYTE
* pbProperties
)
725 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
727 TRACE("(%ld, %p)\n", cbProperties
, pbProperties
);
729 memcpy(pbProperties
, &This
->props
, min(cbProperties
, sizeof(This
->props
)));
734 static HRESULT WINAPI
StdMediaSample2_SetProperties(IMediaSample2
* iface
, DWORD cbProperties
, const BYTE
* pbProperties
)
736 StdMediaSample2
*This
= (StdMediaSample2
*)iface
;
738 TRACE("(%ld, %p)\n", cbProperties
, pbProperties
);
740 /* NOTE: pbBuffer and cbBuffer are read-only */
741 memcpy(&This
->props
, pbProperties
, min(cbProperties
, AM_SAMPLE2_PROP_SIZE_WRITABLE
));
746 static const IMediaSample2Vtbl StdMediaSample2_VTable
=
748 StdMediaSample2_QueryInterface
,
749 StdMediaSample2_AddRef
,
750 StdMediaSample2_Release
,
751 StdMediaSample2_GetPointer
,
752 StdMediaSample2_GetSize
,
753 StdMediaSample2_GetTime
,
754 StdMediaSample2_SetTime
,
755 StdMediaSample2_IsSyncPoint
,
756 StdMediaSample2_SetSyncPoint
,
757 StdMediaSample2_IsPreroll
,
758 StdMediaSample2_SetPreroll
,
759 StdMediaSample2_GetActualDataLength
,
760 StdMediaSample2_SetActualDataLength
,
761 StdMediaSample2_GetMediaType
,
762 StdMediaSample2_SetMediaType
,
763 StdMediaSample2_IsDiscontinuity
,
764 StdMediaSample2_SetDiscontinuity
,
765 StdMediaSample2_GetMediaTime
,
766 StdMediaSample2_SetMediaTime
,
767 StdMediaSample2_GetProperties
,
768 StdMediaSample2_SetProperties
771 typedef struct StdMemAllocator
773 BaseMemAllocator base
;
777 static HRESULT
StdMemAllocator_Alloc(IMemAllocator
* iface
)
779 StdMemAllocator
*This
= (StdMemAllocator
*)iface
;
780 StdMediaSample2
* pSample
= NULL
;
784 assert(list_empty(&This
->base
.free_list
));
786 /* check alignment */
789 /* we do not allow a courser alignment than the OS page size */
790 if ((si
.dwPageSize
% This
->base
.pProps
->cbAlign
) != 0)
791 return VFW_E_BADALIGN
;
793 /* FIXME: each sample has to have its buffer start on the right alignment.
794 * We don't do this at the moment */
796 /* allocate memory */
797 This
->pMemory
= VirtualAlloc(NULL
, (This
->base
.pProps
->cbBuffer
+ This
->base
.pProps
->cbPrefix
) * This
->base
.pProps
->cBuffers
, MEM_COMMIT
, PAGE_READWRITE
);
799 for (i
= This
->base
.pProps
->cBuffers
- 1; i
>= 0; i
--)
801 /* pbBuffer does not start at the base address, it starts at base + cbPrefix */
802 BYTE
* pbBuffer
= (BYTE
*)This
->pMemory
+ i
* (This
->base
.pProps
->cbBuffer
+ This
->base
.pProps
->cbPrefix
) + This
->base
.pProps
->cbPrefix
;
804 StdMediaSample2_Construct(pbBuffer
, This
->base
.pProps
->cbBuffer
, iface
, &pSample
);
806 list_add_head(&This
->base
.free_list
, &pSample
->listentry
);
812 static HRESULT
StdMemAllocator_Free(IMemAllocator
* iface
)
814 StdMemAllocator
*This
= (StdMemAllocator
*)iface
;
815 struct list
* cursor
;
817 assert(list_empty(&This
->base
.used_list
));
819 while ((cursor
= list_head(&This
->base
.free_list
)) != NULL
)
822 StdMediaSample2_Delete(LIST_ENTRY(cursor
, StdMediaSample2
, listentry
));
826 if (!VirtualFree(This
->pMemory
, 0, MEM_RELEASE
))
828 ERR("Couldn't free memory. Error: %ld\n", GetLastError());
829 return HRESULT_FROM_WIN32(GetLastError());
835 HRESULT
StdMemAllocator_create(LPUNKNOWN lpUnkOuter
, LPVOID
* ppv
)
837 StdMemAllocator
* pMemAlloc
;
843 return CLASS_E_NOAGGREGATION
;
845 if (!(pMemAlloc
= CoTaskMemAlloc(sizeof(*pMemAlloc
))))
846 return E_OUTOFMEMORY
;
848 pMemAlloc
->pMemory
= NULL
;
850 if (SUCCEEDED(hr
= BaseMemAllocator_Init(StdMemAllocator_Alloc
, StdMemAllocator_Free
, &pMemAlloc
->base
)))
851 *ppv
= (LPVOID
)pMemAlloc
;
853 CoTaskMemFree(pMemAlloc
);