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
84acd2f4
Commit
84acd2f4
authored
Jun 26, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxva2: Add missing processor service method stubs.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
93412525
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
main.c
dlls/dxva2/main.c
+21
-0
No files found.
dlls/dxva2/main.c
View file @
84acd2f4
...
...
@@ -188,6 +188,25 @@ static HRESULT WINAPI device_manager_processor_service_GetProcAmpRange(
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
device_manager_processor_service_GetFilterPropertyRange
(
IDirectXVideoProcessorService
*
iface
,
REFGUID
deviceguid
,
const
DXVA2_VideoDesc
*
video_desc
,
D3DFORMAT
rt_format
,
UINT
filter_setting
,
DXVA2_ValueRange
*
range
)
{
FIXME
(
"%p, %s, %p, %d, %d, %p.
\n
"
,
iface
,
debugstr_guid
(
deviceguid
),
video_desc
,
rt_format
,
filter_setting
,
range
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
device_manager_processor_service_CreateVideoProcessor
(
IDirectXVideoProcessorService
*
iface
,
REFGUID
deviceguid
,
const
DXVA2_VideoDesc
*
video_desc
,
D3DFORMAT
rt_format
,
UINT
max_substreams
,
IDirectXVideoProcessor
**
processor
)
{
FIXME
(
"%p, %s, %p, %d, %u, %p.
\n
"
,
iface
,
debugstr_guid
(
deviceguid
),
video_desc
,
rt_format
,
max_substreams
,
processor
);
return
E_NOTIMPL
;
}
static
const
IDirectXVideoProcessorServiceVtbl
device_manager_processor_service_vtbl
=
{
device_manager_processor_service_QueryInterface
,
...
...
@@ -200,6 +219,8 @@ static const IDirectXVideoProcessorServiceVtbl device_manager_processor_service_
device_manager_processor_service_GetVideoProcessorSubStreamFormats
,
device_manager_processor_service_GetVideoProcessorCaps
,
device_manager_processor_service_GetProcAmpRange
,
device_manager_processor_service_GetFilterPropertyRange
,
device_manager_processor_service_CreateVideoProcessor
,
};
static
HRESULT
WINAPI
device_manager_QueryInterface
(
IDirect3DDeviceManager9
*
iface
,
REFIID
riid
,
void
**
obj
)
...
...
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