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
7a5f36d5
Commit
7a5f36d5
authored
Sep 11, 2023
by
Alfred Agrell
Committed by
Alexandre Julliard
Sep 12, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Fill in VMR9SurfaceAllocatorNotify_NotifyEvent stub.
parent
1f845238
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
vmr9.c
dlls/quartz/vmr9.c
+10
-2
No files found.
dlls/quartz/vmr9.c
View file @
7a5f36d5
...
...
@@ -2118,9 +2118,17 @@ static HRESULT WINAPI VMR9SurfaceAllocatorNotify_AllocateSurfaceHelper(IVMRSurfa
static
HRESULT
WINAPI
VMR9SurfaceAllocatorNotify_NotifyEvent
(
IVMRSurfaceAllocatorNotify9
*
iface
,
LONG
code
,
LONG_PTR
param1
,
LONG_PTR
param2
)
{
struct
quartz_vmr
*
This
=
impl_from_IVMRSurfaceAllocatorNotify9
(
iface
);
IMediaEventSink
*
sink
;
HRESULT
hr
;
FIXME
(
"(%p/%p)->(...) stub
\n
"
,
iface
,
This
);
return
E_NOTIMPL
;
TRACE
(
"filter %p, code %#lx, param1 %#Ix, param2 %#Ix.
\n
"
,
This
,
code
,
param1
,
param2
);
hr
=
IFilterGraph_QueryInterface
(
This
->
renderer
.
filter
.
graph
,
&
IID_IMediaEventSink
,
(
void
**
)
&
sink
);
if
(
FAILED
(
hr
))
return
hr
;
hr
=
IMediaEventSink_Notify
(
sink
,
code
,
param1
,
param2
);
IMediaEventSink_Release
(
sink
);
return
hr
;
}
static
const
IVMRSurfaceAllocatorNotify9Vtbl
VMR9_SurfaceAllocatorNotify_Vtbl
=
...
...
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