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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #define NONAMELESSUNION
22 #define NONAMELESSSTRUCT
24 #include "quartz_private.h"
26 #include "wine/debug.h"
27 #include "wine/unicode.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
38 static const WCHAR wszOutputPinName
[] = { 'O','u','t','p','u','t',0 };
40 typedef struct AsyncReader
43 IFileSourceFilter IFileSourceFilter_iface
;
44 IAMFilterMiscFlags IAMFilterMiscFlags_iface
;
51 static inline AsyncReader
*impl_from_BaseFilter(BaseFilter
*iface
)
53 return CONTAINING_RECORD(iface
, AsyncReader
, filter
);
56 static inline AsyncReader
*impl_from_IBaseFilter(IBaseFilter
*iface
)
58 return CONTAINING_RECORD(iface
, AsyncReader
, filter
.IBaseFilter_iface
);
61 static inline AsyncReader
*impl_from_IFileSourceFilter(IFileSourceFilter
*iface
)
63 return CONTAINING_RECORD(iface
, AsyncReader
, IFileSourceFilter_iface
);
66 static inline AsyncReader
*impl_from_IAMFilterMiscFlags(IAMFilterMiscFlags
*iface
)
68 return CONTAINING_RECORD(iface
, AsyncReader
, IAMFilterMiscFlags_iface
);
71 static const IBaseFilterVtbl AsyncReader_Vtbl
;
72 static const IFileSourceFilterVtbl FileSource_Vtbl
;
73 static const IAsyncReaderVtbl FileAsyncReader_Vtbl
;
74 static const IAMFilterMiscFlagsVtbl IAMFilterMiscFlags_Vtbl
;
76 static HRESULT
FileAsyncReader_Construct(HANDLE hFile
, IBaseFilter
* pBaseFilter
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
);
78 static const WCHAR mediatype_name
[] = {
79 'M', 'e', 'd', 'i', 'a', ' ', 'T', 'y', 'p', 'e', 0 };
80 static const WCHAR subtype_name
[] = {
81 'S', 'u', 'b', 't', 'y', 'p', 'e', 0 };
82 static const WCHAR source_filter_name
[] = {
83 'S','o','u','r','c','e',' ','F','i','l','t','e','r',0};
85 static HRESULT
process_extensions(HKEY hkeyExtensions
, LPCOLESTR pszFileName
, GUID
* majorType
, GUID
* minorType
, GUID
* sourceFilter
)
96 /* Get the part of the name that matters */
97 extension
= PathFindExtensionW(pszFileName
);
98 if (*extension
!= '.')
101 l
= RegOpenKeyExW(hkeyExtensions
, extension
, 0, KEY_READ
, &hsub
);
107 size
= sizeof(keying
);
108 l
= RegQueryValueExW(hsub
, mediatype_name
, NULL
, NULL
, (LPBYTE
)keying
, &size
);
110 CLSIDFromString(keying
, majorType
);
115 size
= sizeof(keying
);
117 l
= RegQueryValueExW(hsub
, subtype_name
, NULL
, NULL
, (LPBYTE
)keying
, &size
);
119 CLSIDFromString(keying
, minorType
);
124 size
= sizeof(keying
);
126 l
= RegQueryValueExW(hsub
, source_filter_name
, NULL
, NULL
, (LPBYTE
)keying
, &size
);
128 CLSIDFromString(keying
, sourceFilter
);
138 static unsigned char byte_from_hex_char(WCHAR wHex
)
140 switch (tolowerW(wHex
))
152 return (wHex
- '0') & 0xf;
159 return (wHex
- 'a' + 10) & 0xf;
165 static HRESULT
process_pattern_string(LPCWSTR wszPatternString
, IAsyncReader
* pReader
)
175 TRACE("\t\tPattern string: %s\n", debugstr_w(wszPatternString
));
177 /* format: "offset, bytestocompare, mask, value" */
179 ulOffset
= strtolW(wszPatternString
, NULL
, 10);
181 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
184 wszPatternString
++; /* skip ',' */
186 ulBytes
= strtolW(wszPatternString
, NULL
, 10);
188 pbMask
= HeapAlloc(GetProcessHeap(), 0, ulBytes
);
189 pbValue
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, ulBytes
);
190 pbFile
= HeapAlloc(GetProcessHeap(), 0, ulBytes
);
192 /* default mask is match everything */
193 memset(pbMask
, 0xFF, ulBytes
);
195 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
200 wszPatternString
++; /* skip ',' */
201 while (!isxdigitW(*wszPatternString
) && (*wszPatternString
!= ',')) wszPatternString
++;
203 for (strpos
= 0; isxdigitW(*wszPatternString
) && (strpos
/2 < ulBytes
); wszPatternString
++, strpos
++)
205 if ((strpos
% 2) == 1) /* odd numbered position */
206 pbMask
[strpos
/ 2] |= byte_from_hex_char(*wszPatternString
);
208 pbMask
[strpos
/ 2] = byte_from_hex_char(*wszPatternString
) << 4;
211 if (!(wszPatternString
= strchrW(wszPatternString
, ',')))
214 wszPatternString
++; /* skip ',' */
219 for ( ; !isxdigitW(*wszPatternString
) && (*wszPatternString
!= ','); wszPatternString
++)
222 for (strpos
= 0; isxdigitW(*wszPatternString
) && (strpos
/2 < ulBytes
); wszPatternString
++, strpos
++)
224 if ((strpos
% 2) == 1) /* odd numbered position */
225 pbValue
[strpos
/ 2] |= byte_from_hex_char(*wszPatternString
);
227 pbValue
[strpos
/ 2] = byte_from_hex_char(*wszPatternString
) << 4;
232 hr
= IAsyncReader_SyncRead(pReader
, ulOffset
, ulBytes
, pbFile
);
237 for (i
= 0; i
< ulBytes
; i
++)
238 if ((pbFile
[i
] & pbMask
[i
]) != pbValue
[i
])
245 HeapFree(GetProcessHeap(), 0, pbMask
);
246 HeapFree(GetProcessHeap(), 0, pbValue
);
247 HeapFree(GetProcessHeap(), 0, pbFile
);
249 /* if we encountered no errors with this string, and there is a following tuple, then we
250 * have to match that as well to succeed */
251 if ((hr
== S_OK
) && (wszPatternString
= strchrW(wszPatternString
, ',')))
252 return process_pattern_string(wszPatternString
+ 1, pReader
);
257 HRESULT
GetClassMediaFile(IAsyncReader
* pReader
, LPCOLESTR pszFileName
, GUID
* majorType
, GUID
* minorType
, GUID
* sourceFilter
)
259 HKEY hkeyMediaType
= NULL
;
263 static const WCHAR wszMediaType
[] = {'M','e','d','i','a',' ','T','y','p','e',0};
265 TRACE("(%p, %s, %p, %p)\n", pReader
, debugstr_w(pszFileName
), majorType
, minorType
);
268 *majorType
= GUID_NULL
;
270 *minorType
= GUID_NULL
;
272 *sourceFilter
= GUID_NULL
;
274 lRet
= RegOpenKeyExW(HKEY_CLASSES_ROOT
, wszMediaType
, 0, KEY_READ
, &hkeyMediaType
);
275 hr
= HRESULT_FROM_WIN32(lRet
);
281 for (indexMajor
= 0; !bFound
; indexMajor
++)
284 WCHAR wszMajorKeyName
[CHARS_IN_GUID
];
285 DWORD dwKeyNameLength
= sizeof(wszMajorKeyName
) / sizeof(wszMajorKeyName
[0]);
286 static const WCHAR wszExtensions
[] = {'E','x','t','e','n','s','i','o','n','s',0};
288 if (RegEnumKeyExW(hkeyMediaType
, indexMajor
, wszMajorKeyName
, &dwKeyNameLength
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
)
290 if (RegOpenKeyExW(hkeyMediaType
, wszMajorKeyName
, 0, KEY_READ
, &hkeyMajor
) != ERROR_SUCCESS
)
292 TRACE("%s\n", debugstr_w(wszMajorKeyName
));
293 if (!strcmpW(wszExtensions
, wszMajorKeyName
))
295 if (process_extensions(hkeyMajor
, pszFileName
, majorType
, minorType
, sourceFilter
) == S_OK
)
298 /* We need a reader interface to check bytes */
303 for (indexMinor
= 0; !bFound
; indexMinor
++)
306 WCHAR wszMinorKeyName
[CHARS_IN_GUID
];
307 DWORD dwMinorKeyNameLen
= sizeof(wszMinorKeyName
) / sizeof(wszMinorKeyName
[0]);
308 WCHAR wszSourceFilterKeyName
[CHARS_IN_GUID
];
309 DWORD dwSourceFilterKeyNameLen
= sizeof(wszSourceFilterKeyName
);
313 if (RegEnumKeyExW(hkeyMajor
, indexMinor
, wszMinorKeyName
, &dwMinorKeyNameLen
, NULL
, NULL
, NULL
, NULL
) != ERROR_SUCCESS
)
316 if (RegOpenKeyExW(hkeyMajor
, wszMinorKeyName
, 0, KEY_READ
, &hkeyMinor
) != ERROR_SUCCESS
)
319 TRACE("\t%s\n", debugstr_w(wszMinorKeyName
));
321 if (RegQueryInfoKeyW(hkeyMinor
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, &maxValueLen
, NULL
, NULL
) != ERROR_SUCCESS
)
324 for (indexValue
= 0; !bFound
; indexValue
++)
327 WCHAR wszValueName
[14]; /* longest name we should encounter will be "Source Filter" */
328 LPWSTR wszPatternString
= HeapAlloc(GetProcessHeap(), 0, maxValueLen
);
329 DWORD dwValueNameLen
= sizeof(wszValueName
) / sizeof(wszValueName
[0]); /* remember this is in chars */
330 DWORD dwDataLen
= maxValueLen
; /* remember this is in bytes */
332 if (RegEnumValueW(hkeyMinor
, indexValue
, wszValueName
, &dwValueNameLen
, NULL
, &dwType
, (LPBYTE
)wszPatternString
, &dwDataLen
) != ERROR_SUCCESS
)
334 HeapFree(GetProcessHeap(), 0, wszPatternString
);
338 if (strcmpW(wszValueName
, source_filter_name
)==0) {
339 HeapFree(GetProcessHeap(), 0, wszPatternString
);
343 /* if it is not the source filter value */
344 if (process_pattern_string(wszPatternString
, pReader
) == S_OK
)
346 HeapFree(GetProcessHeap(), 0, wszPatternString
);
347 if (majorType
&& FAILED(CLSIDFromString(wszMajorKeyName
, majorType
)))
349 if (minorType
&& FAILED(CLSIDFromString(wszMinorKeyName
, minorType
)))
353 /* Look up the source filter key */
354 if (RegQueryValueExW(hkeyMinor
, source_filter_name
, NULL
, NULL
, (LPBYTE
)wszSourceFilterKeyName
, &dwSourceFilterKeyNameLen
))
356 if (FAILED(CLSIDFromString(wszSourceFilterKeyName
, sourceFilter
)))
361 HeapFree(GetProcessHeap(), 0, wszPatternString
);
363 CloseHandle(hkeyMinor
);
366 CloseHandle(hkeyMajor
);
369 CloseHandle(hkeyMediaType
);
371 if (SUCCEEDED(hr
) && !bFound
)
373 ERR("Media class not found\n");
378 TRACE("Found file's class:\n");
380 TRACE("\tmajor = %s\n", qzdebugstr_guid(majorType
));
382 TRACE("\tsubtype = %s\n", qzdebugstr_guid(minorType
));
384 TRACE("\tsource filter = %s\n", qzdebugstr_guid(sourceFilter
));
390 static IPin
* WINAPI
AsyncReader_GetPin(BaseFilter
*iface
, int pos
)
392 AsyncReader
*This
= impl_from_BaseFilter(iface
);
394 if (pos
>= 1 || !This
->pOutputPin
)
397 IPin_AddRef(This
->pOutputPin
);
398 return This
->pOutputPin
;
401 static LONG WINAPI
AsyncReader_GetPinCount(BaseFilter
*iface
)
403 AsyncReader
*This
= impl_from_BaseFilter(iface
);
405 if (!This
->pOutputPin
)
411 static const BaseFilterFuncTable BaseFuncTable
= {
413 AsyncReader_GetPinCount
416 HRESULT
AsyncReader_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
418 AsyncReader
*pAsyncRead
;
421 return CLASS_E_NOAGGREGATION
;
423 pAsyncRead
= CoTaskMemAlloc(sizeof(AsyncReader
));
426 return E_OUTOFMEMORY
;
428 BaseFilter_Init(&pAsyncRead
->filter
, &AsyncReader_Vtbl
, &CLSID_AsyncReader
, (DWORD_PTR
)(__FILE__
": AsyncReader.csFilter"), &BaseFuncTable
);
430 pAsyncRead
->IFileSourceFilter_iface
.lpVtbl
= &FileSource_Vtbl
;
431 pAsyncRead
->IAMFilterMiscFlags_iface
.lpVtbl
= &IAMFilterMiscFlags_Vtbl
;
432 pAsyncRead
->pOutputPin
= NULL
;
434 pAsyncRead
->pszFileName
= NULL
;
435 pAsyncRead
->pmt
= NULL
;
439 TRACE("-- created at %p\n", pAsyncRead
);
444 /** IUnknown methods **/
446 static HRESULT WINAPI
AsyncReader_QueryInterface(IBaseFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
448 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
450 TRACE("(%s, %p)\n", qzdebugstr_guid(riid
), ppv
);
454 if (IsEqualIID(riid
, &IID_IUnknown
))
455 *ppv
= &This
->filter
.IBaseFilter_iface
;
456 else if (IsEqualIID(riid
, &IID_IPersist
))
457 *ppv
= &This
->filter
.IBaseFilter_iface
;
458 else if (IsEqualIID(riid
, &IID_IMediaFilter
))
459 *ppv
= &This
->filter
.IBaseFilter_iface
;
460 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
461 *ppv
= &This
->filter
.IBaseFilter_iface
;
462 else if (IsEqualIID(riid
, &IID_IFileSourceFilter
))
463 *ppv
= &This
->IFileSourceFilter_iface
;
464 else if (IsEqualIID(riid
, &IID_IAMFilterMiscFlags
))
465 *ppv
= &This
->IAMFilterMiscFlags_iface
;
469 IUnknown_AddRef((IUnknown
*)(*ppv
));
473 if (!IsEqualIID(riid
, &IID_IPin
) && !IsEqualIID(riid
, &IID_IMediaSeeking
) &&
474 !IsEqualIID(riid
, &IID_IVideoWindow
) && !IsEqualIID(riid
, &IID_IBasicAudio
))
475 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
477 return E_NOINTERFACE
;
480 static ULONG WINAPI
AsyncReader_Release(IBaseFilter
* iface
)
482 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
483 ULONG refCount
= InterlockedDecrement(&This
->filter
.refCount
);
485 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
489 if (This
->pOutputPin
)
492 if(SUCCEEDED(IPin_ConnectedTo(This
->pOutputPin
, &pConnectedTo
)))
494 IPin_Disconnect(pConnectedTo
);
495 IPin_Release(pConnectedTo
);
497 IPin_Disconnect(This
->pOutputPin
);
498 IPin_Release(This
->pOutputPin
);
500 CoTaskMemFree(This
->pszFileName
);
502 FreeMediaType(This
->pmt
);
503 BaseFilter_Destroy(&This
->filter
);
511 /** IMediaFilter methods **/
513 static HRESULT WINAPI
AsyncReader_Stop(IBaseFilter
* iface
)
515 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
519 This
->filter
.state
= State_Stopped
;
524 static HRESULT WINAPI
AsyncReader_Pause(IBaseFilter
* iface
)
526 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
530 This
->filter
.state
= State_Paused
;
535 static HRESULT WINAPI
AsyncReader_Run(IBaseFilter
* iface
, REFERENCE_TIME tStart
)
537 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
539 TRACE("(%x%08x)\n", (ULONG
)(tStart
>> 32), (ULONG
)tStart
);
541 This
->filter
.state
= State_Running
;
546 /** IBaseFilter methods **/
548 static HRESULT WINAPI
AsyncReader_FindPin(IBaseFilter
* iface
, LPCWSTR Id
, IPin
**ppPin
)
550 AsyncReader
*This
= impl_from_IBaseFilter(iface
);
551 TRACE("(%s, %p)\n", debugstr_w(Id
), ppPin
);
556 if (strcmpW(Id
, wszOutputPinName
))
559 return VFW_E_NOT_FOUND
;
562 *ppPin
= This
->pOutputPin
;
567 static const IBaseFilterVtbl AsyncReader_Vtbl
=
569 AsyncReader_QueryInterface
,
570 BaseFilterImpl_AddRef
,
572 BaseFilterImpl_GetClassID
,
576 BaseFilterImpl_GetState
,
577 BaseFilterImpl_SetSyncSource
,
578 BaseFilterImpl_GetSyncSource
,
579 BaseFilterImpl_EnumPins
,
581 BaseFilterImpl_QueryFilterInfo
,
582 BaseFilterImpl_JoinFilterGraph
,
583 BaseFilterImpl_QueryVendorInfo
586 static HRESULT WINAPI
FileSource_QueryInterface(IFileSourceFilter
* iface
, REFIID riid
, LPVOID
* ppv
)
588 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
590 return IBaseFilter_QueryInterface(&This
->filter
.IBaseFilter_iface
, riid
, ppv
);
593 static ULONG WINAPI
FileSource_AddRef(IFileSourceFilter
* iface
)
595 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
597 return IBaseFilter_AddRef(&This
->filter
.IBaseFilter_iface
);
600 static ULONG WINAPI
FileSource_Release(IFileSourceFilter
* iface
)
602 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
604 return IBaseFilter_Release(&This
->filter
.IBaseFilter_iface
);
607 static HRESULT WINAPI
FileSource_Load(IFileSourceFilter
* iface
, LPCOLESTR pszFileName
, const AM_MEDIA_TYPE
* pmt
)
611 IAsyncReader
* pReader
= NULL
;
612 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
614 TRACE("(%s, %p)\n", debugstr_w(pszFileName
), pmt
);
617 /* FIXME: check the sharing values that native uses */
618 hFile
= CreateFileW(pszFileName
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, FILE_FLAG_OVERLAPPED
, NULL
);
620 if (hFile
== INVALID_HANDLE_VALUE
)
622 return HRESULT_FROM_WIN32(GetLastError());
626 hr
= FileAsyncReader_Construct(hFile
, &This
->filter
.IBaseFilter_iface
, &This
->filter
.csFilter
, &This
->pOutputPin
);
627 BaseFilterImpl_IncrementPinVersion(&This
->filter
);
630 hr
= IPin_QueryInterface(This
->pOutputPin
, &IID_IAsyncReader
, (LPVOID
*)&pReader
);
632 /* store file name & media type */
635 CoTaskMemFree(This
->pszFileName
);
637 FreeMediaType(This
->pmt
);
639 This
->pszFileName
= CoTaskMemAlloc((strlenW(pszFileName
) + 1) * sizeof(WCHAR
));
640 strcpyW(This
->pszFileName
, pszFileName
);
642 This
->pmt
= CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE
));
645 This
->pmt
->bFixedSizeSamples
= TRUE
;
646 This
->pmt
->bTemporalCompression
= FALSE
;
647 This
->pmt
->cbFormat
= 0;
648 This
->pmt
->pbFormat
= NULL
;
649 This
->pmt
->pUnk
= NULL
;
650 This
->pmt
->lSampleSize
= 0;
651 This
->pmt
->formattype
= FORMAT_None
;
652 hr
= GetClassMediaFile(pReader
, pszFileName
, &This
->pmt
->majortype
, &This
->pmt
->subtype
, NULL
);
655 CoTaskMemFree(This
->pmt
);
660 CopyMediaType(This
->pmt
, pmt
);
664 IAsyncReader_Release(pReader
);
668 if (This
->pOutputPin
)
670 IPin_Release(This
->pOutputPin
);
671 This
->pOutputPin
= NULL
;
674 CoTaskMemFree(This
->pszFileName
);
676 FreeMediaType(This
->pmt
);
677 This
->pszFileName
= NULL
;
683 /* FIXME: check return codes */
687 static HRESULT WINAPI
FileSource_GetCurFile(IFileSourceFilter
* iface
, LPOLESTR
* ppszFileName
, AM_MEDIA_TYPE
* pmt
)
689 AsyncReader
*This
= impl_from_IFileSourceFilter(iface
);
691 TRACE("(%p, %p)\n", ppszFileName
, pmt
);
696 /* copy file name & media type if available, otherwise clear the outputs */
697 if (This
->pszFileName
)
699 *ppszFileName
= CoTaskMemAlloc((strlenW(This
->pszFileName
) + 1) * sizeof(WCHAR
));
700 strcpyW(*ppszFileName
, This
->pszFileName
);
703 *ppszFileName
= NULL
;
708 CopyMediaType(pmt
, This
->pmt
);
710 ZeroMemory(pmt
, sizeof(*pmt
));
716 static const IFileSourceFilterVtbl FileSource_Vtbl
=
718 FileSource_QueryInterface
,
722 FileSource_GetCurFile
726 /* the dwUserData passed back to user */
727 typedef struct DATAREQUEST
729 IMediaSample
* pSample
; /* sample passed to us by user */
730 DWORD_PTR dwUserData
; /* user data passed to us */
731 OVERLAPPED ovl
; /* our overlapped structure */
734 typedef struct FileAsyncReader
737 IAsyncReader IAsyncReader_iface
;
739 ALLOCATOR_PROPERTIES allocProps
;
742 /* Why would you need more? Every sample has its own handle */
746 CRITICAL_SECTION csList
; /* critical section to prevent concurrency issues */
747 DATAREQUEST
*sample_list
;
749 /* Have a handle for every sample, and then one more as flushing handle */
753 static inline FileAsyncReader
*impl_from_IPin(IPin
*iface
)
755 return CONTAINING_RECORD(iface
, FileAsyncReader
, pin
.pin
.IPin_iface
);
758 static inline FileAsyncReader
*impl_from_BasePin(BasePin
*iface
)
760 return CONTAINING_RECORD(iface
, FileAsyncReader
, pin
.pin
);
763 static inline FileAsyncReader
*impl_from_BaseOutputPin(BaseOutputPin
*iface
)
765 return CONTAINING_RECORD(iface
, FileAsyncReader
, pin
);
768 static inline BaseOutputPin
*impl_BaseOututPin_from_BasePin(BasePin
*iface
)
770 return CONTAINING_RECORD(iface
, BaseOutputPin
, pin
);
773 static inline FileAsyncReader
*impl_from_IAsyncReader(IAsyncReader
*iface
)
775 return CONTAINING_RECORD(iface
, FileAsyncReader
, IAsyncReader_iface
);
778 static HRESULT WINAPI
FileAsyncReaderPin_QueryAccept(IPin
*iface
, const AM_MEDIA_TYPE
*pmt
)
780 FileAsyncReader
*This
= impl_from_IPin(iface
);
781 AM_MEDIA_TYPE
*pmt_filter
= impl_from_IBaseFilter(This
->pin
.pin
.pinInfo
.pFilter
)->pmt
;
783 FIXME("(%p, %p)\n", iface
, pmt
);
785 if (IsEqualGUID(&pmt
->majortype
, &pmt_filter
->majortype
) &&
786 IsEqualGUID(&pmt
->subtype
, &pmt_filter
->subtype
) &&
787 IsEqualGUID(&pmt
->formattype
, &FORMAT_None
))
793 static HRESULT WINAPI
FileAsyncReaderPin_GetMediaType(BasePin
*iface
, int iPosition
, AM_MEDIA_TYPE
*pmt
)
795 FileAsyncReader
*This
= impl_from_BasePin(iface
);
799 return VFW_S_NO_MORE_ITEMS
;
800 CopyMediaType(pmt
, impl_from_IBaseFilter(This
->pin
.pin
.pinInfo
.pFilter
)->pmt
);
804 /* overridden pin functions */
806 static HRESULT WINAPI
FileAsyncReaderPin_QueryInterface(IPin
* iface
, REFIID riid
, LPVOID
* ppv
)
808 FileAsyncReader
*This
= impl_from_IPin(iface
);
809 TRACE("(%s, %p)\n", qzdebugstr_guid(riid
), ppv
);
813 if (IsEqualIID(riid
, &IID_IUnknown
) || IsEqualIID(riid
, &IID_IPin
))
814 *ppv
= &This
->pin
.pin
.IPin_iface
;
815 else if (IsEqualIID(riid
, &IID_IAsyncReader
))
816 *ppv
= &This
->IAsyncReader_iface
;
820 IUnknown_AddRef((IUnknown
*)*ppv
);
824 if (!IsEqualIID(riid
, &IID_IMediaSeeking
))
825 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
827 return E_NOINTERFACE
;
830 static ULONG WINAPI
FileAsyncReaderPin_Release(IPin
* iface
)
832 FileAsyncReader
*This
= impl_from_IPin(iface
);
833 ULONG refCount
= InterlockedDecrement(&This
->pin
.pin
.refCount
);
836 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
840 CoTaskMemFree(This
->sample_list
);
841 if (This
->handle_list
)
843 for (x
= 0; x
<= This
->samples
; ++x
)
844 CloseHandle(This
->handle_list
[x
]);
845 CoTaskMemFree(This
->handle_list
);
847 CloseHandle(This
->hFile
);
848 This
->csList
.DebugInfo
->Spare
[0] = 0;
849 DeleteCriticalSection(&This
->csList
);
850 BaseOutputPin_Destroy(&This
->pin
);
856 static const IPinVtbl FileAsyncReaderPin_Vtbl
=
858 FileAsyncReaderPin_QueryInterface
,
860 FileAsyncReaderPin_Release
,
861 BaseOutputPinImpl_Connect
,
862 BaseOutputPinImpl_ReceiveConnection
,
863 BasePinImpl_Disconnect
,
864 BasePinImpl_ConnectedTo
,
865 BasePinImpl_ConnectionMediaType
,
866 BasePinImpl_QueryPinInfo
,
867 BasePinImpl_QueryDirection
,
869 FileAsyncReaderPin_QueryAccept
,
870 BasePinImpl_EnumMediaTypes
,
871 BasePinImpl_QueryInternalConnections
,
872 BaseOutputPinImpl_EndOfStream
,
873 BaseOutputPinImpl_BeginFlush
,
874 BaseOutputPinImpl_EndFlush
,
875 BasePinImpl_NewSegment
878 /* Function called as a helper to IPin_Connect */
879 /* specific AM_MEDIA_TYPE - it cannot be NULL */
880 /* this differs from standard OutputPin_AttemptConnection only in that it
881 * doesn't need the IMemInputPin interface on the receiving pin */
882 static HRESULT WINAPI
FileAsyncReaderPin_AttemptConnection(BasePin
* iface
, IPin
* pReceivePin
, const AM_MEDIA_TYPE
* pmt
)
884 BaseOutputPin
*This
= impl_BaseOututPin_from_BasePin(iface
);
887 TRACE("(%p, %p)\n", pReceivePin
, pmt
);
888 dump_AM_MEDIA_TYPE(pmt
);
890 /* FIXME: call queryacceptproc */
892 This
->pin
.pConnectedTo
= pReceivePin
;
893 IPin_AddRef(pReceivePin
);
894 CopyMediaType(&This
->pin
.mtCurrent
, pmt
);
896 hr
= IPin_ReceiveConnection(pReceivePin
, &iface
->IPin_iface
, pmt
);
900 IPin_Release(This
->pin
.pConnectedTo
);
901 This
->pin
.pConnectedTo
= NULL
;
902 FreeMediaType(&This
->pin
.mtCurrent
);
905 TRACE(" -- %x\n", hr
);
909 static HRESULT WINAPI
FileAsyncReaderPin_DecideBufferSize(BaseOutputPin
*iface
, IMemAllocator
*pAlloc
, ALLOCATOR_PROPERTIES
*ppropInputRequest
)
911 FileAsyncReader
*This
= impl_from_BaseOutputPin(iface
);
912 ALLOCATOR_PROPERTIES actual
;
914 if (ppropInputRequest
->cbAlign
&& ppropInputRequest
->cbAlign
!= This
->allocProps
.cbAlign
)
915 FIXME("Requested Buffer cbAlign mismatch %i,%i\n",This
->allocProps
.cbAlign
, ppropInputRequest
->cbAlign
);
916 if (ppropInputRequest
->cbPrefix
)
917 FIXME("Requested Buffer cbPrefix mismatch %i,%i\n",This
->allocProps
.cbPrefix
, ppropInputRequest
->cbPrefix
);
918 if (ppropInputRequest
->cbBuffer
)
919 FIXME("Requested Buffer cbBuffer mismatch %i,%i\n",This
->allocProps
.cbBuffer
, ppropInputRequest
->cbBuffer
);
920 if (ppropInputRequest
->cBuffers
)
921 FIXME("Requested Buffer cBuffers mismatch %i,%i\n",This
->allocProps
.cBuffers
, ppropInputRequest
->cBuffers
);
923 return IMemAllocator_SetProperties(pAlloc
, &This
->allocProps
, &actual
);
926 static const BaseOutputPinFuncTable output_BaseOutputFuncTable
= {
929 FileAsyncReaderPin_AttemptConnection
,
930 BasePinImpl_GetMediaTypeVersion
,
931 FileAsyncReaderPin_GetMediaType
933 FileAsyncReaderPin_DecideBufferSize
,
934 BaseOutputPinImpl_DecideAllocator
,
935 BaseOutputPinImpl_BreakConnect
938 static HRESULT
FileAsyncReader_Construct(HANDLE hFile
, IBaseFilter
* pBaseFilter
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
)
944 piOutput
.dir
= PINDIR_OUTPUT
;
945 piOutput
.pFilter
= pBaseFilter
;
946 strcpyW(piOutput
.achName
, wszOutputPinName
);
947 hr
= BaseOutputPin_Construct(&FileAsyncReaderPin_Vtbl
, sizeof(FileAsyncReader
), &piOutput
, &output_BaseOutputFuncTable
, pCritSec
, ppPin
);
951 FileAsyncReader
*pPinImpl
= (FileAsyncReader
*)*ppPin
;
952 pPinImpl
->IAsyncReader_iface
.lpVtbl
= &FileAsyncReader_Vtbl
;
953 pPinImpl
->hFile
= hFile
;
954 pPinImpl
->bFlushing
= FALSE
;
955 pPinImpl
->sample_list
= NULL
;
956 pPinImpl
->handle_list
= NULL
;
957 pPinImpl
->queued_number
= 0;
958 InitializeCriticalSection(&pPinImpl
->csList
);
959 pPinImpl
->csList
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": FileAsyncReader.csList");
966 static HRESULT WINAPI
FileAsyncReader_QueryInterface(IAsyncReader
* iface
, REFIID riid
, LPVOID
* ppv
)
968 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
970 return IPin_QueryInterface(&This
->pin
.pin
.IPin_iface
, riid
, ppv
);
973 static ULONG WINAPI
FileAsyncReader_AddRef(IAsyncReader
* iface
)
975 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
977 return IPin_AddRef(&This
->pin
.pin
.IPin_iface
);
980 static ULONG WINAPI
FileAsyncReader_Release(IAsyncReader
* iface
)
982 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
984 return IPin_Release(&This
->pin
.pin
.IPin_iface
);
987 #define DEF_ALIGNMENT 1
989 static HRESULT WINAPI
FileAsyncReader_RequestAllocator(IAsyncReader
* iface
, IMemAllocator
* pPreferred
, ALLOCATOR_PROPERTIES
* pProps
, IMemAllocator
** ppActual
)
991 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
995 TRACE("(%p, %p, %p)\n", pPreferred
, pProps
, ppActual
);
997 if (!pProps
->cbAlign
|| (pProps
->cbAlign
% DEF_ALIGNMENT
) != 0)
998 pProps
->cbAlign
= DEF_ALIGNMENT
;
1002 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
1003 /* FIXME: check we are still aligned */
1006 IMemAllocator_AddRef(pPreferred
);
1007 *ppActual
= pPreferred
;
1008 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
1015 hr
= CoCreateInstance(&CLSID_MemoryAllocator
, NULL
, CLSCTX_INPROC
, &IID_IMemAllocator
, (LPVOID
*)&pPreferred
);
1019 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
1020 /* FIXME: check we are still aligned */
1023 *ppActual
= pPreferred
;
1024 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
1031 CoTaskMemFree(This
->sample_list
);
1032 if (This
->handle_list
)
1035 for (x
= 0; x
<= This
->samples
; ++x
)
1036 CloseHandle(This
->handle_list
[x
]);
1037 CoTaskMemFree(This
->handle_list
);
1040 This
->samples
= pProps
->cBuffers
;
1041 This
->oldest_sample
= 0;
1042 TRACE("Samples: %u\n", This
->samples
);
1043 This
->sample_list
= CoTaskMemAlloc(sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1044 This
->handle_list
= CoTaskMemAlloc(sizeof(HANDLE
) * pProps
->cBuffers
* 2);
1046 if (This
->sample_list
&& This
->handle_list
)
1049 ZeroMemory(This
->sample_list
, sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1050 for (x
= 0; x
< This
->samples
; ++x
)
1052 This
->sample_list
[x
].ovl
.hEvent
= This
->handle_list
[x
] = CreateEventW(NULL
, 0, 0, NULL
);
1053 if (x
+ 1 < This
->samples
)
1054 This
->handle_list
[This
->samples
+ 1 + x
] = This
->handle_list
[x
];
1056 This
->handle_list
[This
->samples
] = CreateEventW(NULL
, 1, 0, NULL
);
1057 This
->allocProps
= *pProps
;
1062 CoTaskMemFree(This
->sample_list
);
1063 CoTaskMemFree(This
->handle_list
);
1065 This
->sample_list
= NULL
;
1066 This
->handle_list
= NULL
;
1074 IMemAllocator_Release(pPreferred
);
1077 TRACE("-- %x\n", hr
);
1081 /* we could improve the Request/WaitForNext mechanism by allowing out of order samples.
1082 * however, this would be quite complicated to do and may be a bit error prone */
1083 static HRESULT WINAPI
FileAsyncReader_Request(IAsyncReader
* iface
, IMediaSample
* pSample
, DWORD_PTR dwUser
)
1086 REFERENCE_TIME Start
;
1087 REFERENCE_TIME Stop
;
1088 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1089 LPBYTE pBuffer
= NULL
;
1091 TRACE("(%p, %lx)\n", pSample
, dwUser
);
1096 /* get start and stop positions in bytes */
1098 hr
= IMediaSample_GetTime(pSample
, &Start
, &Stop
);
1101 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1103 EnterCriticalSection(&This
->csList
);
1104 if (This
->bFlushing
)
1106 LeaveCriticalSection(&This
->csList
);
1107 return VFW_E_WRONG_STATE
;
1112 DWORD dwLength
= (DWORD
) BYTES_FROM_MEDIATIME(Stop
- Start
);
1113 DATAREQUEST
*pDataRq
;
1116 /* Try to insert above the waiting sample if possible */
1117 for (x
= This
->oldest_sample
; x
< This
->samples
; ++x
)
1119 if (!This
->sample_list
[x
].pSample
)
1123 if (x
>= This
->samples
)
1124 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1126 if (!This
->sample_list
[x
].pSample
)
1130 /* There must be a sample we have found */
1131 assert(x
< This
->samples
);
1132 ++This
->queued_number
;
1134 pDataRq
= This
->sample_list
+ x
;
1136 pDataRq
->ovl
.u
.s
.Offset
= (DWORD
) BYTES_FROM_MEDIATIME(Start
);
1137 pDataRq
->ovl
.u
.s
.OffsetHigh
= (DWORD
)(BYTES_FROM_MEDIATIME(Start
) >> (sizeof(DWORD
) * 8));
1138 pDataRq
->dwUserData
= dwUser
;
1140 /* we violate traditional COM rules here by maintaining
1141 * a reference to the sample, but not calling AddRef, but
1142 * that's what MSDN says to do */
1143 pDataRq
->pSample
= pSample
;
1145 /* this is definitely not how it is implemented on Win9x
1146 * as they do not support async reads on files, but it is
1147 * sooo much easier to use this than messing around with threads!
1149 if (!ReadFile(This
->hFile
, pBuffer
, dwLength
, NULL
, &pDataRq
->ovl
))
1150 hr
= HRESULT_FROM_WIN32(GetLastError());
1152 /* ERROR_IO_PENDING is not actually an error since this is what we want! */
1153 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1157 LeaveCriticalSection(&This
->csList
);
1159 TRACE("-- %x\n", hr
);
1163 static HRESULT WINAPI
FileAsyncReader_WaitForNext(IAsyncReader
* iface
, DWORD dwTimeout
, IMediaSample
** ppSample
, DWORD_PTR
* pdwUser
)
1166 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1169 TRACE("(%u, %p, %p)\n", dwTimeout
, ppSample
, pdwUser
);
1174 EnterCriticalSection(&This
->csList
);
1175 if (!This
->bFlushing
)
1177 LONG oldest
= This
->oldest_sample
;
1179 if (!This
->queued_number
)
1181 /* It could be that nothing is queued right now, but that can be fixed */
1182 WARN("Called without samples in queue and not flushing!!\n");
1184 LeaveCriticalSection(&This
->csList
);
1186 /* wait for an object to read, or time out */
1187 buffer
= WaitForMultipleObjectsEx(This
->samples
+1, This
->handle_list
+ oldest
, FALSE
, dwTimeout
, TRUE
);
1189 EnterCriticalSection(&This
->csList
);
1190 if (buffer
<= This
->samples
)
1192 /* Re-scale the buffer back to normal */
1195 /* Uh oh, we overshot the flusher handle, renormalize it back to 0..Samples-1 */
1196 if (buffer
> This
->samples
)
1197 buffer
-= This
->samples
+ 1;
1198 assert(buffer
<= This
->samples
);
1201 if (buffer
>= This
->samples
)
1203 if (buffer
!= This
->samples
)
1205 FIXME("Returned: %u (%08x)\n", buffer
, GetLastError());
1209 hr
= VFW_E_WRONG_STATE
;
1213 --This
->queued_number
;
1216 if (This
->bFlushing
&& buffer
== ~0)
1218 for (buffer
= 0; buffer
< This
->samples
; ++buffer
)
1220 if (This
->sample_list
[buffer
].pSample
)
1222 ResetEvent(This
->handle_list
[buffer
]);
1226 if (buffer
== This
->samples
)
1228 assert(!This
->queued_number
);
1233 --This
->queued_number
;
1240 REFERENCE_TIME rtStart
, rtStop
;
1241 REFERENCE_TIME rtSampleStart
, rtSampleStop
;
1242 DATAREQUEST
*pDataRq
= This
->sample_list
+ buffer
;
1245 /* get any errors */
1246 if (!This
->bFlushing
&& !GetOverlappedResult(This
->hFile
, &pDataRq
->ovl
, &dwBytes
, FALSE
))
1247 hr
= HRESULT_FROM_WIN32(GetLastError());
1249 /* Return the sample no matter what so it can be destroyed */
1250 *ppSample
= pDataRq
->pSample
;
1251 *pdwUser
= pDataRq
->dwUserData
;
1253 if (This
->bFlushing
)
1254 hr
= VFW_E_WRONG_STATE
;
1259 /* Set the time on the sample */
1260 IMediaSample_SetActualDataLength(pDataRq
->pSample
, dwBytes
);
1262 rtStart
= (DWORD64
)pDataRq
->ovl
.u
.s
.Offset
+ ((DWORD64
)pDataRq
->ovl
.u
.s
.OffsetHigh
<< 32);
1263 rtStart
= MEDIATIME_FROM_BYTES(rtStart
);
1264 rtStop
= rtStart
+ MEDIATIME_FROM_BYTES(dwBytes
);
1266 IMediaSample_GetTime(pDataRq
->pSample
, &rtSampleStart
, &rtSampleStop
);
1267 assert(rtStart
== rtSampleStart
);
1268 assert(rtStop
<= rtSampleStop
);
1270 IMediaSample_SetTime(pDataRq
->pSample
, &rtStart
, &rtStop
);
1271 assert(rtStart
== rtSampleStart
);
1273 assert(rtStop
== rtSampleStop
);
1275 assert(rtStop
== rtStart
);
1277 This
->sample_list
[buffer
].pSample
= NULL
;
1278 assert(This
->oldest_sample
< This
->samples
);
1280 if (buffer
== This
->oldest_sample
)
1283 for (x
= This
->oldest_sample
+ 1; x
< This
->samples
; ++x
)
1284 if (This
->sample_list
[x
].pSample
)
1286 if (x
>= This
->samples
)
1287 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1288 if (This
->sample_list
[x
].pSample
)
1290 if (This
->oldest_sample
== x
)
1291 /* No samples found, reset to 0 */
1293 This
->oldest_sample
= x
;
1296 LeaveCriticalSection(&This
->csList
);
1298 TRACE("-- %x\n", hr
);
1302 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
);
1304 static HRESULT WINAPI
FileAsyncReader_SyncReadAligned(IAsyncReader
* iface
, IMediaSample
* pSample
)
1307 REFERENCE_TIME tStart
;
1308 REFERENCE_TIME tStop
;
1311 TRACE("(%p)\n", pSample
);
1313 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
1316 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1319 hr
= FileAsyncReader_SyncRead(iface
,
1320 BYTES_FROM_MEDIATIME(tStart
),
1321 (LONG
) BYTES_FROM_MEDIATIME(tStop
- tStart
),
1324 TRACE("-- %x\n", hr
);
1328 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
)
1332 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1334 TRACE("(%x%08x, %d, %p)\n", (ULONG
)(llPosition
>> 32), (ULONG
)llPosition
, lLength
, pBuffer
);
1336 ZeroMemory(&ovl
, sizeof(ovl
));
1338 ovl
.hEvent
= CreateEventW(NULL
, 0, 0, NULL
);
1339 /* NOTE: llPosition is the actual byte position to start reading from */
1340 ovl
.u
.s
.Offset
= (DWORD
) llPosition
;
1341 ovl
.u
.s
.OffsetHigh
= (DWORD
) (llPosition
>> (sizeof(DWORD
) * 8));
1343 if (!ReadFile(This
->hFile
, pBuffer
, lLength
, NULL
, &ovl
))
1344 hr
= HRESULT_FROM_WIN32(GetLastError());
1346 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1353 if (!GetOverlappedResult(This
->hFile
, &ovl
, &dwBytesRead
, TRUE
))
1354 hr
= HRESULT_FROM_WIN32(GetLastError());
1357 CloseHandle(ovl
.hEvent
);
1359 TRACE("-- %x\n", hr
);
1363 static HRESULT WINAPI
FileAsyncReader_Length(IAsyncReader
* iface
, LONGLONG
* pTotal
, LONGLONG
* pAvailable
)
1367 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1369 TRACE("(%p, %p)\n", pTotal
, pAvailable
);
1371 if (((dwSizeLow
= GetFileSize(This
->hFile
, &dwSizeHigh
)) == -1) &&
1372 (GetLastError() != NO_ERROR
))
1373 return HRESULT_FROM_WIN32(GetLastError());
1375 *pTotal
= (LONGLONG
)dwSizeLow
| (LONGLONG
)dwSizeHigh
<< (sizeof(DWORD
) * 8);
1377 *pAvailable
= *pTotal
;
1382 static HRESULT WINAPI
FileAsyncReader_BeginFlush(IAsyncReader
* iface
)
1384 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1388 EnterCriticalSection(&This
->csList
);
1389 This
->bFlushing
= TRUE
;
1390 CancelIo(This
->hFile
);
1391 SetEvent(This
->handle_list
[This
->samples
]);
1392 LeaveCriticalSection(&This
->csList
);
1397 static HRESULT WINAPI
FileAsyncReader_EndFlush(IAsyncReader
* iface
)
1399 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1404 EnterCriticalSection(&This
->csList
);
1405 ResetEvent(This
->handle_list
[This
->samples
]);
1406 This
->bFlushing
= FALSE
;
1407 for (x
= 0; x
< This
->samples
; ++x
)
1408 assert(!This
->sample_list
[x
].pSample
);
1410 LeaveCriticalSection(&This
->csList
);
1415 static const IAsyncReaderVtbl FileAsyncReader_Vtbl
=
1417 FileAsyncReader_QueryInterface
,
1418 FileAsyncReader_AddRef
,
1419 FileAsyncReader_Release
,
1420 FileAsyncReader_RequestAllocator
,
1421 FileAsyncReader_Request
,
1422 FileAsyncReader_WaitForNext
,
1423 FileAsyncReader_SyncReadAligned
,
1424 FileAsyncReader_SyncRead
,
1425 FileAsyncReader_Length
,
1426 FileAsyncReader_BeginFlush
,
1427 FileAsyncReader_EndFlush
,
1431 static HRESULT WINAPI
AMFilterMiscFlags_QueryInterface(IAMFilterMiscFlags
*iface
, REFIID riid
, void **ppv
) {
1432 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1433 return IUnknown_QueryInterface((IUnknown
*)This
, riid
, ppv
);
1436 static ULONG WINAPI
AMFilterMiscFlags_AddRef(IAMFilterMiscFlags
*iface
) {
1437 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1438 return IUnknown_AddRef((IUnknown
*)This
);
1441 static ULONG WINAPI
AMFilterMiscFlags_Release(IAMFilterMiscFlags
*iface
) {
1442 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1443 return IUnknown_Release((IUnknown
*)This
);
1446 static ULONG WINAPI
AMFilterMiscFlags_GetMiscFlags(IAMFilterMiscFlags
*iface
) {
1447 return AM_FILTER_MISC_FLAGS_IS_SOURCE
;
1450 static const IAMFilterMiscFlagsVtbl IAMFilterMiscFlags_Vtbl
= {
1451 AMFilterMiscFlags_QueryInterface
,
1452 AMFilterMiscFlags_AddRef
,
1453 AMFilterMiscFlags_Release
,
1454 AMFilterMiscFlags_GetMiscFlags