Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d969b802
Commit
d969b802
authored
Apr 03, 2012
by
Aric Stewart
Committed by
Alexandre Julliard
Apr 05, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Add initial VMR9 stub.
parent
ee0bfd36
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
392 additions
and
1 deletion
+392
-1
Makefile.in
dlls/quartz/Makefile.in
+2
-1
main.c
dlls/quartz/main.c
+1
-0
quartz_private.h
dlls/quartz/quartz_private.h
+1
-0
quartz_strmif.idl
dlls/quartz/quartz_strmif.idl
+7
-0
regsvr.c
dlls/quartz/regsvr.c
+12
-0
vmr9.c
dlls/quartz/vmr9.c
+369
-0
No files found.
dlls/quartz/Makefile.in
View file @
d969b802
MODULE
=
quartz.dll
IMPORTLIB
=
quartz
IMPORTS
=
strmiids strmbase uuid dsound msacm32 msvfw32 ole32 oleaut32 shlwapi rpcrt4 user32 gdi32 advapi32
IMPORTS
=
strmiids
dxguid
strmbase uuid dsound msacm32 msvfw32 ole32 oleaut32 shlwapi rpcrt4 user32 gdi32 advapi32
EXTRADEFS
=
-DENTRY_PREFIX
=
QUARTZ_
-DPROXY_DELEGATION
-DWINE_REGISTER_DLL
C_SRCS
=
\
...
...
@@ -24,6 +24,7 @@ C_SRCS = \
regsvr.c
\
systemclock.c
\
videorenderer.c
\
vmr9.c
\
waveparser.c
RC_SRCS
=
version.rc
...
...
dlls/quartz/main.c
View file @
d969b802
...
...
@@ -71,6 +71,7 @@ static const struct object_creation_info object_creation[] =
{
&
CLSID_MPEG1Splitter
,
MPEGSplitter_create
},
{
&
CLSID_VideoRenderer
,
VideoRenderer_create
},
{
&
CLSID_NullRenderer
,
NullRenderer_create
},
{
&
CLSID_VideoMixingRenderer9
,
VMR9Impl_create
},
{
&
CLSID_VideoRendererDefault
,
VideoRendererDefault_create
},
{
&
CLSID_DSoundRender
,
DSoundRender_create
},
{
&
CLSID_AudioRender
,
DSoundRender_create
},
...
...
dlls/quartz/quartz_private.h
View file @
d969b802
...
...
@@ -56,6 +56,7 @@ HRESULT VideoRendererDefault_create(IUnknown * pUnkOuter, LPVOID * ppv) DECLSPEC
HRESULT
QUARTZ_CreateSystemClock
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
ACMWrapper_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
WAVEParser_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
VMR9Impl_create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppv
)
DECLSPEC_HIDDEN
;
HRESULT
EnumMonikerImpl_Create
(
IMoniker
**
ppMoniker
,
ULONG
nMonikerCount
,
IEnumMoniker
**
ppEnum
)
DECLSPEC_HIDDEN
;
...
...
dlls/quartz/quartz_strmif.idl
View file @
d969b802
...
...
@@ -150,3 +150,10 @@ coclass ACMWrapper { interface IBaseFilter; }
uuid
(
d51bd5a1
-
7548
-
11
cf
-
a520
-
0080
c77ef58a
)
]
coclass
WAVEParser
{
interface
IBaseFilter
; }
[
helpstring
(
"Video Mixing Renderer 9"
),
threading
(
both
),
uuid
(
51b4
abf3
-
748
f
-
4
e3b
-
a276
-
c828330e926a
)
]
coclass
VideoMixingRenderer9
{
interface
IBaseFilter
; }
dlls/quartz/regsvr.c
View file @
d969b802
...
...
@@ -958,6 +958,18 @@ static struct regsvr_filter const filter_list[] = {
{
0xFFFFFFFF
},
}
},
{
&
CLSID_VideoMixingRenderer9
,
&
CLSID_LegacyAmFilterCategory
,
{
'V'
,
'i'
,
'd'
,
'e'
,
'o'
,
' '
,
'M'
,
'i'
,
'x'
,
'i'
,
'n'
,
'g'
,
' '
,
'R'
,
'e'
,
'n'
,
'd'
,
'e'
,
'r'
,
'e'
,
'r'
,
' '
,
'9'
,
0
},
0x200000
,
{
{
REG_PINFLAG_B_RENDERER
,
{
{
&
MEDIATYPE_Video
,
&
GUID_NULL
},
{
NULL
}
},
},
{
0xFFFFFFFF
},
}
},
{
&
CLSID_DSoundRender
,
&
CLSID_LegacyAmFilterCategory
,
{
'A'
,
'u'
,
'd'
,
'i'
,
'o'
,
' '
,
'R'
,
'e'
,
'n'
,
'd'
,
'e'
,
'r'
,
'e'
,
'r'
,
0
},
...
...
dlls/quartz/vmr9.c
0 → 100644
View file @
d969b802
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment