mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-23 19:49:56 +00:00
dshow: fixup some COM objects, based on patches from Don Moir
Signed-off-by: rogerdpack <rogerpack2005@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
d5c0036d4a
commit
0cc8a62a78
@ -22,7 +22,7 @@
|
|||||||
#include "dshow_capture.h"
|
#include "dshow_capture.h"
|
||||||
|
|
||||||
DECLARE_QUERYINTERFACE(libAVEnumMediaTypes,
|
DECLARE_QUERYINTERFACE(libAVEnumMediaTypes,
|
||||||
{ {&IID_IUnknown,0}, {&IID_IEnumPins,0} })
|
{ {&IID_IUnknown,0}, {&IID_IEnumMediaTypes,0} })
|
||||||
DECLARE_ADDREF(libAVEnumMediaTypes)
|
DECLARE_ADDREF(libAVEnumMediaTypes)
|
||||||
DECLARE_RELEASE(libAVEnumMediaTypes)
|
DECLARE_RELEASE(libAVEnumMediaTypes)
|
||||||
|
|
||||||
@ -82,7 +82,7 @@ libAVEnumMediaTypes_Clone(libAVEnumMediaTypes *this, libAVEnumMediaTypes **enums
|
|||||||
static int
|
static int
|
||||||
libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
|
libAVEnumMediaTypes_Setup(libAVEnumMediaTypes *this, const AM_MEDIA_TYPE *type)
|
||||||
{
|
{
|
||||||
IEnumPinsVtbl *vtbl = this->vtbl;
|
IEnumMediaTypesVtbl *vtbl = this->vtbl;
|
||||||
SETVTBL(vtbl, libAVEnumMediaTypes, QueryInterface);
|
SETVTBL(vtbl, libAVEnumMediaTypes, QueryInterface);
|
||||||
SETVTBL(vtbl, libAVEnumMediaTypes, AddRef);
|
SETVTBL(vtbl, libAVEnumMediaTypes, AddRef);
|
||||||
SETVTBL(vtbl, libAVEnumMediaTypes, Release);
|
SETVTBL(vtbl, libAVEnumMediaTypes, Release);
|
||||||
|
Loading…
Reference in New Issue
Block a user