Commit 40c60e8c authored by Paul Chitescu's avatar Paul Chitescu Committed by Alexandre Julliard

qedit: Mostly stubbed out implementation of SampleGrabber filter.

parent 9fab263d
...@@ -8,7 +8,8 @@ IMPORTS = strmiids uuid oleaut32 ole32 advapi32 kernel32 ...@@ -8,7 +8,8 @@ IMPORTS = strmiids uuid oleaut32 ole32 advapi32 kernel32
C_SRCS = \ C_SRCS = \
main.c \ main.c \
mediadet.c \ mediadet.c \
regsvr.c regsvr.c \
samplegrabber.c
@MAKE_DLL_RULES@ @MAKE_DLL_RULES@
......
...@@ -53,6 +53,7 @@ struct object_creation_info ...@@ -53,6 +53,7 @@ struct object_creation_info
static const struct object_creation_info object_creation[] = static const struct object_creation_info object_creation[] =
{ {
{ &CLSID_MediaDet, MediaDet_create }, { &CLSID_MediaDet, MediaDet_create },
{ &CLSID_SampleGrabber, SampleGrabber_create },
}; };
static HRESULT WINAPI static HRESULT WINAPI
......
...@@ -36,5 +36,6 @@ ...@@ -36,5 +36,6 @@
#include "qedit.h" #include "qedit.h"
HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj); HRESULT MediaDet_create(IUnknown *pUnkOuter, LPVOID *ppObj);
HRESULT SampleGrabber_create(IUnknown *pUnkOuter, LPVOID *ppObj);
#endif /* __QEDIT_PRIVATE_INCLUDED__ */ #endif /* __QEDIT_PRIVATE_INCLUDED__ */
...@@ -294,6 +294,12 @@ static struct regsvr_coclass const coclass_list[] = { ...@@ -294,6 +294,12 @@ static struct regsvr_coclass const coclass_list[] = {
"qedit.dll", "qedit.dll",
"Both" "Both"
}, },
{ &CLSID_SampleGrabber,
"Sample Grabber",
NULL,
"qedit.dll",
"Both"
},
{ NULL } /* list terminator */ { NULL } /* list terminator */
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment