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
))
456 else if (IsEqualIID(riid
, &IID_IPersist
))
458 else if (IsEqualIID(riid
, &IID_IMediaFilter
))
460 else if (IsEqualIID(riid
, &IID_IBaseFilter
))
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
))
815 else if (IsEqualIID(riid
, &IID_IPin
))
817 else if (IsEqualIID(riid
, &IID_IAsyncReader
))
818 *ppv
= &This
->IAsyncReader_iface
;
822 IUnknown_AddRef((IUnknown
*)(*ppv
));
826 if (!IsEqualIID(riid
, &IID_IPin
) && !IsEqualIID(riid
, &IID_IMediaSeeking
))
827 FIXME("No interface for %s!\n", qzdebugstr_guid(riid
));
829 return E_NOINTERFACE
;
832 static ULONG WINAPI
FileAsyncReaderPin_Release(IPin
* iface
)
834 FileAsyncReader
*This
= impl_from_IPin(iface
);
835 ULONG refCount
= InterlockedDecrement(&This
->pin
.pin
.refCount
);
838 TRACE("(%p)->() Release from %d\n", This
, refCount
+ 1);
842 CoTaskMemFree(This
->sample_list
);
843 if (This
->handle_list
)
845 for (x
= 0; x
<= This
->samples
; ++x
)
846 CloseHandle(This
->handle_list
[x
]);
847 CoTaskMemFree(This
->handle_list
);
849 CloseHandle(This
->hFile
);
850 This
->csList
.DebugInfo
->Spare
[0] = 0;
851 DeleteCriticalSection(&This
->csList
);
852 BaseOutputPin_Destroy(&This
->pin
);
858 static const IPinVtbl FileAsyncReaderPin_Vtbl
=
860 FileAsyncReaderPin_QueryInterface
,
862 FileAsyncReaderPin_Release
,
863 BaseOutputPinImpl_Connect
,
864 BaseOutputPinImpl_ReceiveConnection
,
865 BasePinImpl_Disconnect
,
866 BasePinImpl_ConnectedTo
,
867 BasePinImpl_ConnectionMediaType
,
868 BasePinImpl_QueryPinInfo
,
869 BasePinImpl_QueryDirection
,
871 FileAsyncReaderPin_QueryAccept
,
872 BasePinImpl_EnumMediaTypes
,
873 BasePinImpl_QueryInternalConnections
,
874 BaseOutputPinImpl_EndOfStream
,
875 BaseOutputPinImpl_BeginFlush
,
876 BaseOutputPinImpl_EndFlush
,
877 BasePinImpl_NewSegment
880 /* Function called as a helper to IPin_Connect */
881 /* specific AM_MEDIA_TYPE - it cannot be NULL */
882 /* this differs from standard OutputPin_AttemptConnection only in that it
883 * doesn't need the IMemInputPin interface on the receiving pin */
884 static HRESULT WINAPI
FileAsyncReaderPin_AttemptConnection(BasePin
* iface
, IPin
* pReceivePin
, const AM_MEDIA_TYPE
* pmt
)
886 BaseOutputPin
*This
= impl_BaseOututPin_from_BasePin(iface
);
889 TRACE("(%p, %p)\n", pReceivePin
, pmt
);
890 dump_AM_MEDIA_TYPE(pmt
);
892 /* FIXME: call queryacceptproc */
894 This
->pin
.pConnectedTo
= pReceivePin
;
895 IPin_AddRef(pReceivePin
);
896 CopyMediaType(&This
->pin
.mtCurrent
, pmt
);
898 hr
= IPin_ReceiveConnection(pReceivePin
, &iface
->IPin_iface
, pmt
);
902 IPin_Release(This
->pin
.pConnectedTo
);
903 This
->pin
.pConnectedTo
= NULL
;
904 FreeMediaType(&This
->pin
.mtCurrent
);
907 TRACE(" -- %x\n", hr
);
911 static HRESULT WINAPI
FileAsyncReaderPin_DecideBufferSize(BaseOutputPin
*iface
, IMemAllocator
*pAlloc
, ALLOCATOR_PROPERTIES
*ppropInputRequest
)
913 FileAsyncReader
*This
= impl_from_BaseOutputPin(iface
);
914 ALLOCATOR_PROPERTIES actual
;
916 if (ppropInputRequest
->cbAlign
&& ppropInputRequest
->cbAlign
!= This
->allocProps
.cbAlign
)
917 FIXME("Requested Buffer cbAlign mismatch %i,%i\n",This
->allocProps
.cbAlign
, ppropInputRequest
->cbAlign
);
918 if (ppropInputRequest
->cbPrefix
)
919 FIXME("Requested Buffer cbPrefix mismatch %i,%i\n",This
->allocProps
.cbPrefix
, ppropInputRequest
->cbPrefix
);
920 if (ppropInputRequest
->cbBuffer
)
921 FIXME("Requested Buffer cbBuffer mismatch %i,%i\n",This
->allocProps
.cbBuffer
, ppropInputRequest
->cbBuffer
);
922 if (ppropInputRequest
->cBuffers
)
923 FIXME("Requested Buffer cBuffers mismatch %i,%i\n",This
->allocProps
.cBuffers
, ppropInputRequest
->cBuffers
);
925 return IMemAllocator_SetProperties(pAlloc
, &This
->allocProps
, &actual
);
928 static const BaseOutputPinFuncTable output_BaseOutputFuncTable
= {
931 FileAsyncReaderPin_AttemptConnection
,
932 BasePinImpl_GetMediaTypeVersion
,
933 FileAsyncReaderPin_GetMediaType
935 FileAsyncReaderPin_DecideBufferSize
,
936 BaseOutputPinImpl_DecideAllocator
,
937 BaseOutputPinImpl_BreakConnect
940 static HRESULT
FileAsyncReader_Construct(HANDLE hFile
, IBaseFilter
* pBaseFilter
, LPCRITICAL_SECTION pCritSec
, IPin
** ppPin
)
946 piOutput
.dir
= PINDIR_OUTPUT
;
947 piOutput
.pFilter
= pBaseFilter
;
948 strcpyW(piOutput
.achName
, wszOutputPinName
);
949 hr
= BaseOutputPin_Construct(&FileAsyncReaderPin_Vtbl
, sizeof(FileAsyncReader
), &piOutput
, &output_BaseOutputFuncTable
, pCritSec
, ppPin
);
953 FileAsyncReader
*pPinImpl
= (FileAsyncReader
*)*ppPin
;
954 pPinImpl
->IAsyncReader_iface
.lpVtbl
= &FileAsyncReader_Vtbl
;
955 pPinImpl
->hFile
= hFile
;
956 pPinImpl
->bFlushing
= FALSE
;
957 pPinImpl
->sample_list
= NULL
;
958 pPinImpl
->handle_list
= NULL
;
959 pPinImpl
->queued_number
= 0;
960 InitializeCriticalSection(&pPinImpl
->csList
);
961 pPinImpl
->csList
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": FileAsyncReader.csList");
968 static HRESULT WINAPI
FileAsyncReader_QueryInterface(IAsyncReader
* iface
, REFIID riid
, LPVOID
* ppv
)
970 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
972 return IPin_QueryInterface(&This
->pin
.pin
.IPin_iface
, riid
, ppv
);
975 static ULONG WINAPI
FileAsyncReader_AddRef(IAsyncReader
* iface
)
977 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
979 return IPin_AddRef(&This
->pin
.pin
.IPin_iface
);
982 static ULONG WINAPI
FileAsyncReader_Release(IAsyncReader
* iface
)
984 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
986 return IPin_Release(&This
->pin
.pin
.IPin_iface
);
989 #define DEF_ALIGNMENT 1
991 static HRESULT WINAPI
FileAsyncReader_RequestAllocator(IAsyncReader
* iface
, IMemAllocator
* pPreferred
, ALLOCATOR_PROPERTIES
* pProps
, IMemAllocator
** ppActual
)
993 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
997 TRACE("(%p, %p, %p)\n", pPreferred
, pProps
, ppActual
);
999 if (!pProps
->cbAlign
|| (pProps
->cbAlign
% DEF_ALIGNMENT
) != 0)
1000 pProps
->cbAlign
= DEF_ALIGNMENT
;
1004 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
1005 /* FIXME: check we are still aligned */
1008 IMemAllocator_AddRef(pPreferred
);
1009 *ppActual
= pPreferred
;
1010 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
1017 hr
= CoCreateInstance(&CLSID_MemoryAllocator
, NULL
, CLSCTX_INPROC
, &IID_IMemAllocator
, (LPVOID
*)&pPreferred
);
1021 hr
= IMemAllocator_SetProperties(pPreferred
, pProps
, pProps
);
1022 /* FIXME: check we are still aligned */
1025 *ppActual
= pPreferred
;
1026 TRACE("FileAsyncReader_RequestAllocator -- %x\n", hr
);
1033 CoTaskMemFree(This
->sample_list
);
1034 if (This
->handle_list
)
1037 for (x
= 0; x
<= This
->samples
; ++x
)
1038 CloseHandle(This
->handle_list
[x
]);
1039 CoTaskMemFree(This
->handle_list
);
1042 This
->samples
= pProps
->cBuffers
;
1043 This
->oldest_sample
= 0;
1044 TRACE("Samples: %u\n", This
->samples
);
1045 This
->sample_list
= CoTaskMemAlloc(sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1046 This
->handle_list
= CoTaskMemAlloc(sizeof(HANDLE
) * pProps
->cBuffers
* 2);
1048 if (This
->sample_list
&& This
->handle_list
)
1051 ZeroMemory(This
->sample_list
, sizeof(This
->sample_list
[0]) * pProps
->cBuffers
);
1052 for (x
= 0; x
< This
->samples
; ++x
)
1054 This
->sample_list
[x
].ovl
.hEvent
= This
->handle_list
[x
] = CreateEventW(NULL
, 0, 0, NULL
);
1055 if (x
+ 1 < This
->samples
)
1056 This
->handle_list
[This
->samples
+ 1 + x
] = This
->handle_list
[x
];
1058 This
->handle_list
[This
->samples
] = CreateEventW(NULL
, 1, 0, NULL
);
1059 This
->allocProps
= *pProps
;
1064 CoTaskMemFree(This
->sample_list
);
1065 CoTaskMemFree(This
->handle_list
);
1067 This
->sample_list
= NULL
;
1068 This
->handle_list
= NULL
;
1076 IMemAllocator_Release(pPreferred
);
1079 TRACE("-- %x\n", hr
);
1083 /* we could improve the Request/WaitForNext mechanism by allowing out of order samples.
1084 * however, this would be quite complicated to do and may be a bit error prone */
1085 static HRESULT WINAPI
FileAsyncReader_Request(IAsyncReader
* iface
, IMediaSample
* pSample
, DWORD_PTR dwUser
)
1088 REFERENCE_TIME Start
;
1089 REFERENCE_TIME Stop
;
1090 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1091 LPBYTE pBuffer
= NULL
;
1093 TRACE("(%p, %lx)\n", pSample
, dwUser
);
1098 /* get start and stop positions in bytes */
1100 hr
= IMediaSample_GetTime(pSample
, &Start
, &Stop
);
1103 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1105 EnterCriticalSection(&This
->csList
);
1106 if (This
->bFlushing
)
1108 LeaveCriticalSection(&This
->csList
);
1109 return VFW_E_WRONG_STATE
;
1114 DWORD dwLength
= (DWORD
) BYTES_FROM_MEDIATIME(Stop
- Start
);
1115 DATAREQUEST
*pDataRq
;
1118 /* Try to insert above the waiting sample if possible */
1119 for (x
= This
->oldest_sample
; x
< This
->samples
; ++x
)
1121 if (!This
->sample_list
[x
].pSample
)
1125 if (x
>= This
->samples
)
1126 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1128 if (!This
->sample_list
[x
].pSample
)
1132 /* There must be a sample we have found */
1133 assert(x
< This
->samples
);
1134 ++This
->queued_number
;
1136 pDataRq
= This
->sample_list
+ x
;
1138 pDataRq
->ovl
.u
.s
.Offset
= (DWORD
) BYTES_FROM_MEDIATIME(Start
);
1139 pDataRq
->ovl
.u
.s
.OffsetHigh
= (DWORD
)(BYTES_FROM_MEDIATIME(Start
) >> (sizeof(DWORD
) * 8));
1140 pDataRq
->dwUserData
= dwUser
;
1142 /* we violate traditional COM rules here by maintaining
1143 * a reference to the sample, but not calling AddRef, but
1144 * that's what MSDN says to do */
1145 pDataRq
->pSample
= pSample
;
1147 /* this is definitely not how it is implemented on Win9x
1148 * as they do not support async reads on files, but it is
1149 * sooo much easier to use this than messing around with threads!
1151 if (!ReadFile(This
->hFile
, pBuffer
, dwLength
, NULL
, &pDataRq
->ovl
))
1152 hr
= HRESULT_FROM_WIN32(GetLastError());
1154 /* ERROR_IO_PENDING is not actually an error since this is what we want! */
1155 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1159 LeaveCriticalSection(&This
->csList
);
1161 TRACE("-- %x\n", hr
);
1165 static HRESULT WINAPI
FileAsyncReader_WaitForNext(IAsyncReader
* iface
, DWORD dwTimeout
, IMediaSample
** ppSample
, DWORD_PTR
* pdwUser
)
1168 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1171 TRACE("(%u, %p, %p)\n", dwTimeout
, ppSample
, pdwUser
);
1176 EnterCriticalSection(&This
->csList
);
1177 if (!This
->bFlushing
)
1179 LONG oldest
= This
->oldest_sample
;
1181 if (!This
->queued_number
)
1183 /* It could be that nothing is queued right now, but that can be fixed */
1184 WARN("Called without samples in queue and not flushing!!\n");
1186 LeaveCriticalSection(&This
->csList
);
1188 /* wait for an object to read, or time out */
1189 buffer
= WaitForMultipleObjectsEx(This
->samples
+1, This
->handle_list
+ oldest
, FALSE
, dwTimeout
, TRUE
);
1191 EnterCriticalSection(&This
->csList
);
1192 if (buffer
<= This
->samples
)
1194 /* Re-scale the buffer back to normal */
1197 /* Uh oh, we overshot the flusher handle, renormalize it back to 0..Samples-1 */
1198 if (buffer
> This
->samples
)
1199 buffer
-= This
->samples
+ 1;
1200 assert(buffer
<= This
->samples
);
1203 if (buffer
>= This
->samples
)
1205 if (buffer
!= This
->samples
)
1207 FIXME("Returned: %u (%08x)\n", buffer
, GetLastError());
1211 hr
= VFW_E_WRONG_STATE
;
1215 --This
->queued_number
;
1218 if (This
->bFlushing
&& buffer
== ~0)
1220 for (buffer
= 0; buffer
< This
->samples
; ++buffer
)
1222 if (This
->sample_list
[buffer
].pSample
)
1224 ResetEvent(This
->handle_list
[buffer
]);
1228 if (buffer
== This
->samples
)
1230 assert(!This
->queued_number
);
1235 --This
->queued_number
;
1242 REFERENCE_TIME rtStart
, rtStop
;
1243 REFERENCE_TIME rtSampleStart
, rtSampleStop
;
1244 DATAREQUEST
*pDataRq
= This
->sample_list
+ buffer
;
1247 /* get any errors */
1248 if (!This
->bFlushing
&& !GetOverlappedResult(This
->hFile
, &pDataRq
->ovl
, &dwBytes
, FALSE
))
1249 hr
= HRESULT_FROM_WIN32(GetLastError());
1251 /* Return the sample no matter what so it can be destroyed */
1252 *ppSample
= pDataRq
->pSample
;
1253 *pdwUser
= pDataRq
->dwUserData
;
1255 if (This
->bFlushing
)
1256 hr
= VFW_E_WRONG_STATE
;
1261 /* Set the time on the sample */
1262 IMediaSample_SetActualDataLength(pDataRq
->pSample
, dwBytes
);
1264 rtStart
= (DWORD64
)pDataRq
->ovl
.u
.s
.Offset
+ ((DWORD64
)pDataRq
->ovl
.u
.s
.OffsetHigh
<< 32);
1265 rtStart
= MEDIATIME_FROM_BYTES(rtStart
);
1266 rtStop
= rtStart
+ MEDIATIME_FROM_BYTES(dwBytes
);
1268 IMediaSample_GetTime(pDataRq
->pSample
, &rtSampleStart
, &rtSampleStop
);
1269 assert(rtStart
== rtSampleStart
);
1270 assert(rtStop
<= rtSampleStop
);
1272 IMediaSample_SetTime(pDataRq
->pSample
, &rtStart
, &rtStop
);
1273 assert(rtStart
== rtSampleStart
);
1275 assert(rtStop
== rtSampleStop
);
1277 assert(rtStop
== rtStart
);
1279 This
->sample_list
[buffer
].pSample
= NULL
;
1280 assert(This
->oldest_sample
< This
->samples
);
1282 if (buffer
== This
->oldest_sample
)
1285 for (x
= This
->oldest_sample
+ 1; x
< This
->samples
; ++x
)
1286 if (This
->sample_list
[x
].pSample
)
1288 if (x
>= This
->samples
)
1289 for (x
= 0; x
< This
->oldest_sample
; ++x
)
1290 if (This
->sample_list
[x
].pSample
)
1292 if (This
->oldest_sample
== x
)
1293 /* No samples found, reset to 0 */
1295 This
->oldest_sample
= x
;
1298 LeaveCriticalSection(&This
->csList
);
1300 TRACE("-- %x\n", hr
);
1304 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
);
1306 static HRESULT WINAPI
FileAsyncReader_SyncReadAligned(IAsyncReader
* iface
, IMediaSample
* pSample
)
1309 REFERENCE_TIME tStart
;
1310 REFERENCE_TIME tStop
;
1313 TRACE("(%p)\n", pSample
);
1315 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
1318 hr
= IMediaSample_GetPointer(pSample
, &pBuffer
);
1321 hr
= FileAsyncReader_SyncRead(iface
,
1322 BYTES_FROM_MEDIATIME(tStart
),
1323 (LONG
) BYTES_FROM_MEDIATIME(tStop
- tStart
),
1326 TRACE("-- %x\n", hr
);
1330 static HRESULT WINAPI
FileAsyncReader_SyncRead(IAsyncReader
* iface
, LONGLONG llPosition
, LONG lLength
, BYTE
* pBuffer
)
1334 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1336 TRACE("(%x%08x, %d, %p)\n", (ULONG
)(llPosition
>> 32), (ULONG
)llPosition
, lLength
, pBuffer
);
1338 ZeroMemory(&ovl
, sizeof(ovl
));
1340 ovl
.hEvent
= CreateEventW(NULL
, 0, 0, NULL
);
1341 /* NOTE: llPosition is the actual byte position to start reading from */
1342 ovl
.u
.s
.Offset
= (DWORD
) llPosition
;
1343 ovl
.u
.s
.OffsetHigh
= (DWORD
) (llPosition
>> (sizeof(DWORD
) * 8));
1345 if (!ReadFile(This
->hFile
, pBuffer
, lLength
, NULL
, &ovl
))
1346 hr
= HRESULT_FROM_WIN32(GetLastError());
1348 if (hr
== HRESULT_FROM_WIN32(ERROR_IO_PENDING
))
1355 if (!GetOverlappedResult(This
->hFile
, &ovl
, &dwBytesRead
, TRUE
))
1356 hr
= HRESULT_FROM_WIN32(GetLastError());
1359 CloseHandle(ovl
.hEvent
);
1361 TRACE("-- %x\n", hr
);
1365 static HRESULT WINAPI
FileAsyncReader_Length(IAsyncReader
* iface
, LONGLONG
* pTotal
, LONGLONG
* pAvailable
)
1369 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1371 TRACE("(%p, %p)\n", pTotal
, pAvailable
);
1373 if (((dwSizeLow
= GetFileSize(This
->hFile
, &dwSizeHigh
)) == -1) &&
1374 (GetLastError() != NO_ERROR
))
1375 return HRESULT_FROM_WIN32(GetLastError());
1377 *pTotal
= (LONGLONG
)dwSizeLow
| (LONGLONG
)dwSizeHigh
<< (sizeof(DWORD
) * 8);
1379 *pAvailable
= *pTotal
;
1384 static HRESULT WINAPI
FileAsyncReader_BeginFlush(IAsyncReader
* iface
)
1386 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1390 EnterCriticalSection(&This
->csList
);
1391 This
->bFlushing
= TRUE
;
1392 CancelIo(This
->hFile
);
1393 SetEvent(This
->handle_list
[This
->samples
]);
1394 LeaveCriticalSection(&This
->csList
);
1399 static HRESULT WINAPI
FileAsyncReader_EndFlush(IAsyncReader
* iface
)
1401 FileAsyncReader
*This
= impl_from_IAsyncReader(iface
);
1406 EnterCriticalSection(&This
->csList
);
1407 ResetEvent(This
->handle_list
[This
->samples
]);
1408 This
->bFlushing
= FALSE
;
1409 for (x
= 0; x
< This
->samples
; ++x
)
1410 assert(!This
->sample_list
[x
].pSample
);
1412 LeaveCriticalSection(&This
->csList
);
1417 static const IAsyncReaderVtbl FileAsyncReader_Vtbl
=
1419 FileAsyncReader_QueryInterface
,
1420 FileAsyncReader_AddRef
,
1421 FileAsyncReader_Release
,
1422 FileAsyncReader_RequestAllocator
,
1423 FileAsyncReader_Request
,
1424 FileAsyncReader_WaitForNext
,
1425 FileAsyncReader_SyncReadAligned
,
1426 FileAsyncReader_SyncRead
,
1427 FileAsyncReader_Length
,
1428 FileAsyncReader_BeginFlush
,
1429 FileAsyncReader_EndFlush
,
1433 static HRESULT WINAPI
AMFilterMiscFlags_QueryInterface(IAMFilterMiscFlags
*iface
, REFIID riid
, void **ppv
) {
1434 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1435 return IUnknown_QueryInterface((IUnknown
*)This
, riid
, ppv
);
1438 static ULONG WINAPI
AMFilterMiscFlags_AddRef(IAMFilterMiscFlags
*iface
) {
1439 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1440 return IUnknown_AddRef((IUnknown
*)This
);
1443 static ULONG WINAPI
AMFilterMiscFlags_Release(IAMFilterMiscFlags
*iface
) {
1444 AsyncReader
*This
= impl_from_IAMFilterMiscFlags(iface
);
1445 return IUnknown_Release((IUnknown
*)This
);
1448 static ULONG WINAPI
AMFilterMiscFlags_GetMiscFlags(IAMFilterMiscFlags
*iface
) {
1449 return AM_FILTER_MISC_FLAGS_IS_SOURCE
;
1452 static const IAMFilterMiscFlagsVtbl IAMFilterMiscFlags_Vtbl
= {
1453 AMFilterMiscFlags_QueryInterface
,
1454 AMFilterMiscFlags_AddRef
,
1455 AMFilterMiscFlags_Release
,
1456 AMFilterMiscFlags_GetMiscFlags