Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
7868f1b9
Commit
7868f1b9
authored
Feb 04, 2022
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxva2: Fix long types warnings in traces.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
aade29db
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
20 deletions
+19
-20
Makefile.in
dlls/dxva2/Makefile.in
+0
-1
main.c
dlls/dxva2/main.c
+19
-19
No files found.
dlls/dxva2/Makefile.in
View file @
7868f1b9
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
dxva2.dll
MODULE
=
dxva2.dll
IMPORTS
=
uuid ole32
IMPORTS
=
uuid ole32
IMPORTLIB
=
dxva2
IMPORTLIB
=
dxva2
...
...
dlls/dxva2/main.c
View file @
7868f1b9
...
@@ -163,7 +163,7 @@ static ULONG WINAPI video_processor_AddRef(IDirectXVideoProcessor *iface)
...
@@ -163,7 +163,7 @@ static ULONG WINAPI video_processor_AddRef(IDirectXVideoProcessor *iface)
struct
video_processor
*
processor
=
impl_from_IDirectXVideoProcessor
(
iface
);
struct
video_processor
*
processor
=
impl_from_IDirectXVideoProcessor
(
iface
);
ULONG
refcount
=
InterlockedIncrement
(
&
processor
->
refcount
);
ULONG
refcount
=
InterlockedIncrement
(
&
processor
->
refcount
);
TRACE
(
"%p, refcount %u.
\n
"
,
iface
,
refcount
);
TRACE
(
"%p, refcount %
l
u.
\n
"
,
iface
,
refcount
);
return
refcount
;
return
refcount
;
}
}
...
@@ -173,7 +173,7 @@ static ULONG WINAPI video_processor_Release(IDirectXVideoProcessor *iface)
...
@@ -173,7 +173,7 @@ static ULONG WINAPI video_processor_Release(IDirectXVideoProcessor *iface)
struct
video_processor
*
processor
=
impl_from_IDirectXVideoProcessor
(
iface
);
struct
video_processor
*
processor
=
impl_from_IDirectXVideoProcessor
(
iface
);
ULONG
refcount
=
InterlockedDecrement
(
&
processor
->
refcount
);
ULONG
refcount
=
InterlockedDecrement
(
&
processor
->
refcount
);
TRACE
(
"%p, refcount %u.
\n
"
,
iface
,
refcount
);
TRACE
(
"%p, refcount %
l
u.
\n
"
,
iface
,
refcount
);
if
(
!
refcount
)
if
(
!
refcount
)
{
{
...
@@ -314,7 +314,7 @@ static HRESULT WINAPI video_processor_VideoProcessBlt(IDirectXVideoProcessor *if
...
@@ -314,7 +314,7 @@ static HRESULT WINAPI video_processor_VideoProcessBlt(IDirectXVideoProcessor *if
if
(
FAILED
(
hr
=
IDirect3DSurface9_GetDevice
(
rt
,
&
device
)))
if
(
FAILED
(
hr
=
IDirect3DSurface9_GetDevice
(
rt
,
&
device
)))
{
{
WARN
(
"Failed to get surface device, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to get surface device, hr %#
l
x.
\n
"
,
hr
);
return
hr
;
return
hr
;
}
}
...
@@ -330,7 +330,7 @@ static HRESULT WINAPI video_processor_VideoProcessBlt(IDirectXVideoProcessor *if
...
@@ -330,7 +330,7 @@ static HRESULT WINAPI video_processor_VideoProcessBlt(IDirectXVideoProcessor *if
if
(
FAILED
(
hr
=
IDirect3DDevice9_StretchRect
(
device
,
samples
[
i
].
SrcSurface
,
&
samples
[
i
].
SrcRect
,
if
(
FAILED
(
hr
=
IDirect3DDevice9_StretchRect
(
device
,
samples
[
i
].
SrcSurface
,
&
samples
[
i
].
SrcRect
,
rt
,
&
dst_rect
,
D3DTEXF_POINT
)))
rt
,
&
dst_rect
,
D3DTEXF_POINT
)))
{
{
WARN
(
"Failed to copy sample %u, hr %#x.
\n
"
,
i
,
hr
);
WARN
(
"Failed to copy sample %u, hr %#
l
x.
\n
"
,
i
,
hr
);
}
}
}
}
...
@@ -398,7 +398,7 @@ static HRESULT WINAPI device_manager_processor_service_CreateSurface(IDirectXVid
...
@@ -398,7 +398,7 @@ static HRESULT WINAPI device_manager_processor_service_CreateSurface(IDirectXVid
unsigned
int
i
,
j
;
unsigned
int
i
,
j
;
HRESULT
hr
;
HRESULT
hr
;
TRACE
(
"%p, %u, %u, %u, %u, %u, %
u, %
u, %p, %p.
\n
"
,
iface
,
width
,
height
,
backbuffers
,
format
,
pool
,
usage
,
dxvaType
,
TRACE
(
"%p, %u, %u, %u, %u, %u, %
lu, %l
u, %p, %p.
\n
"
,
iface
,
width
,
height
,
backbuffers
,
format
,
pool
,
usage
,
dxvaType
,
surfaces
,
shared_handle
);
surfaces
,
shared_handle
);
if
(
backbuffers
>=
UINT_MAX
)
if
(
backbuffers
>=
UINT_MAX
)
...
@@ -679,7 +679,7 @@ static HRESULT WINAPI device_manager_decoder_service_CreateSurface(IDirectXVideo
...
@@ -679,7 +679,7 @@ static HRESULT WINAPI device_manager_decoder_service_CreateSurface(IDirectXVideo
UINT
width
,
UINT
height
,
UINT
backbuffers
,
D3DFORMAT
format
,
D3DPOOL
pool
,
DWORD
usage
,
DWORD
dxvaType
,
UINT
width
,
UINT
height
,
UINT
backbuffers
,
D3DFORMAT
format
,
D3DPOOL
pool
,
DWORD
usage
,
DWORD
dxvaType
,
IDirect3DSurface9
**
surfaces
,
HANDLE
*
shared_handle
)
IDirect3DSurface9
**
surfaces
,
HANDLE
*
shared_handle
)
{
{
FIXME
(
"%p, %u, %u, %u, %#x, %d, %
d, %
d, %p, %p.
\n
"
,
iface
,
width
,
height
,
backbuffers
,
format
,
pool
,
usage
,
FIXME
(
"%p, %u, %u, %u, %#x, %d, %
ld, %l
d, %p, %p.
\n
"
,
iface
,
width
,
height
,
backbuffers
,
format
,
pool
,
usage
,
dxvaType
,
surfaces
,
shared_handle
);
dxvaType
,
surfaces
,
shared_handle
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
...
@@ -753,7 +753,7 @@ static ULONG WINAPI device_manager_AddRef(IDirect3DDeviceManager9 *iface)
...
@@ -753,7 +753,7 @@ static ULONG WINAPI device_manager_AddRef(IDirect3DDeviceManager9 *iface)
struct
device_manager
*
manager
=
impl_from_IDirect3DDeviceManager9
(
iface
);
struct
device_manager
*
manager
=
impl_from_IDirect3DDeviceManager9
(
iface
);
ULONG
refcount
=
InterlockedIncrement
(
&
manager
->
refcount
);
ULONG
refcount
=
InterlockedIncrement
(
&
manager
->
refcount
);
TRACE
(
"%p, refcount %u.
\n
"
,
iface
,
refcount
);
TRACE
(
"%p, refcount %
l
u.
\n
"
,
iface
,
refcount
);
return
refcount
;
return
refcount
;
}
}
...
@@ -764,7 +764,7 @@ static ULONG WINAPI device_manager_Release(IDirect3DDeviceManager9 *iface)
...
@@ -764,7 +764,7 @@ static ULONG WINAPI device_manager_Release(IDirect3DDeviceManager9 *iface)
ULONG
refcount
=
InterlockedDecrement
(
&
manager
->
refcount
);
ULONG
refcount
=
InterlockedDecrement
(
&
manager
->
refcount
);
size_t
i
;
size_t
i
;
TRACE
(
"%p, refcount %u.
\n
"
,
iface
,
refcount
);
TRACE
(
"%p, refcount %
l
u.
\n
"
,
iface
,
refcount
);
if
(
!
refcount
)
if
(
!
refcount
)
{
{
...
@@ -1037,7 +1037,7 @@ static const IDirect3DDeviceManager9Vtbl device_manager_vtbl =
...
@@ -1037,7 +1037,7 @@ static const IDirect3DDeviceManager9Vtbl device_manager_vtbl =
BOOL
WINAPI
CapabilitiesRequestAndCapabilitiesReply
(
HMONITOR
monitor
,
LPSTR
buffer
,
DWORD
length
)
BOOL
WINAPI
CapabilitiesRequestAndCapabilitiesReply
(
HMONITOR
monitor
,
LPSTR
buffer
,
DWORD
length
)
{
{
FIXME
(
"
(%p, %p, %d): stub
\n
"
,
monitor
,
buffer
,
length
);
FIXME
(
"
%p, %p, %ld: stub.
\n
"
,
monitor
,
buffer
,
length
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1113,7 +1113,7 @@ BOOL WINAPI DestroyPhysicalMonitor( HMONITOR monitor )
...
@@ -1113,7 +1113,7 @@ BOOL WINAPI DestroyPhysicalMonitor( HMONITOR monitor )
BOOL
WINAPI
DestroyPhysicalMonitors
(
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
BOOL
WINAPI
DestroyPhysicalMonitors
(
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
{
{
FIXME
(
"
(0x%x, %p): stub
\n
"
,
arraySize
,
array
);
FIXME
(
"
%lu, %p: stub.
\n
"
,
arraySize
,
array
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1221,7 +1221,7 @@ HRESULT WINAPI GetNumberOfPhysicalMonitorsFromIDirect3DDevice9( IDirect3DDevice9
...
@@ -1221,7 +1221,7 @@ HRESULT WINAPI GetNumberOfPhysicalMonitorsFromIDirect3DDevice9( IDirect3DDevice9
BOOL
WINAPI
GetPhysicalMonitorsFromHMONITOR
(
HMONITOR
monitor
,
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
BOOL
WINAPI
GetPhysicalMonitorsFromHMONITOR
(
HMONITOR
monitor
,
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
{
{
FIXME
(
"
(%p, 0x%x, %p): stub
\n
"
,
monitor
,
arraySize
,
array
);
FIXME
(
"
%p, %lu, %p: stub.
\n
"
,
monitor
,
arraySize
,
array
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1229,7 +1229,7 @@ BOOL WINAPI GetPhysicalMonitorsFromHMONITOR( HMONITOR monitor, DWORD arraySize,
...
@@ -1229,7 +1229,7 @@ BOOL WINAPI GetPhysicalMonitorsFromHMONITOR( HMONITOR monitor, DWORD arraySize,
HRESULT
WINAPI
GetPhysicalMonitorsFromIDirect3DDevice9
(
IDirect3DDevice9
*
device
,
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
HRESULT
WINAPI
GetPhysicalMonitorsFromIDirect3DDevice9
(
IDirect3DDevice9
*
device
,
DWORD
arraySize
,
LPPHYSICAL_MONITOR
array
)
{
{
FIXME
(
"
(%p, 0x%x, %p): stub
\n
"
,
device
,
arraySize
,
array
);
FIXME
(
"
%p, %lu, %p: stub.
\n
"
,
device
,
arraySize
,
array
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -1301,7 +1301,7 @@ BOOL WINAPI SaveCurrentSettings( HMONITOR monitor )
...
@@ -1301,7 +1301,7 @@ BOOL WINAPI SaveCurrentSettings( HMONITOR monitor )
BOOL
WINAPI
SetMonitorBrightness
(
HMONITOR
monitor
,
DWORD
brightness
)
BOOL
WINAPI
SetMonitorBrightness
(
HMONITOR
monitor
,
DWORD
brightness
)
{
{
FIXME
(
"
(%p, 0x%x): stub
\n
"
,
monitor
,
brightness
);
FIXME
(
"
%p, %#lx: stub.
\n
"
,
monitor
,
brightness
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1317,7 +1317,7 @@ BOOL WINAPI SetMonitorColorTemperature( HMONITOR monitor, MC_COLOR_TEMPERATURE t
...
@@ -1317,7 +1317,7 @@ BOOL WINAPI SetMonitorColorTemperature( HMONITOR monitor, MC_COLOR_TEMPERATURE t
BOOL
WINAPI
SetMonitorContrast
(
HMONITOR
monitor
,
DWORD
contrast
)
BOOL
WINAPI
SetMonitorContrast
(
HMONITOR
monitor
,
DWORD
contrast
)
{
{
FIXME
(
"
(%p, 0x%x): stub
\n
"
,
monitor
,
contrast
);
FIXME
(
"
%p, %#lx: stub.
\n
"
,
monitor
,
contrast
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1325,7 +1325,7 @@ BOOL WINAPI SetMonitorContrast( HMONITOR monitor, DWORD contrast )
...
@@ -1325,7 +1325,7 @@ BOOL WINAPI SetMonitorContrast( HMONITOR monitor, DWORD contrast )
BOOL
WINAPI
SetMonitorDisplayAreaPosition
(
HMONITOR
monitor
,
MC_POSITION_TYPE
type
,
DWORD
position
)
BOOL
WINAPI
SetMonitorDisplayAreaPosition
(
HMONITOR
monitor
,
MC_POSITION_TYPE
type
,
DWORD
position
)
{
{
FIXME
(
"
(%p, 0x%x, 0x%x): stub
\n
"
,
monitor
,
type
,
position
);
FIXME
(
"
%p, 0x%x, %#lx: stub.
\n
"
,
monitor
,
type
,
position
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1333,7 +1333,7 @@ BOOL WINAPI SetMonitorDisplayAreaPosition( HMONITOR monitor, MC_POSITION_TYPE ty
...
@@ -1333,7 +1333,7 @@ BOOL WINAPI SetMonitorDisplayAreaPosition( HMONITOR monitor, MC_POSITION_TYPE ty
BOOL
WINAPI
SetMonitorDisplayAreaSize
(
HMONITOR
monitor
,
MC_SIZE_TYPE
type
,
DWORD
size
)
BOOL
WINAPI
SetMonitorDisplayAreaSize
(
HMONITOR
monitor
,
MC_SIZE_TYPE
type
,
DWORD
size
)
{
{
FIXME
(
"
(%p, 0x%x, 0x%x): stub
\n
"
,
monitor
,
type
,
size
);
FIXME
(
"
%p, 0x%x, %#lx: stub.
\n
"
,
monitor
,
type
,
size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1341,7 +1341,7 @@ BOOL WINAPI SetMonitorDisplayAreaSize( HMONITOR monitor, MC_SIZE_TYPE type, DWOR
...
@@ -1341,7 +1341,7 @@ BOOL WINAPI SetMonitorDisplayAreaSize( HMONITOR monitor, MC_SIZE_TYPE type, DWOR
BOOL
WINAPI
SetMonitorRedGreenOrBlueDrive
(
HMONITOR
monitor
,
MC_DRIVE_TYPE
type
,
DWORD
drive
)
BOOL
WINAPI
SetMonitorRedGreenOrBlueDrive
(
HMONITOR
monitor
,
MC_DRIVE_TYPE
type
,
DWORD
drive
)
{
{
FIXME
(
"
(%p, 0x%x, 0x%x): stub
\n
"
,
monitor
,
type
,
drive
);
FIXME
(
"
%p, 0x%x, %#lx: stub.
\n
"
,
monitor
,
type
,
drive
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1349,7 +1349,7 @@ BOOL WINAPI SetMonitorRedGreenOrBlueDrive( HMONITOR monitor, MC_DRIVE_TYPE type,
...
@@ -1349,7 +1349,7 @@ BOOL WINAPI SetMonitorRedGreenOrBlueDrive( HMONITOR monitor, MC_DRIVE_TYPE type,
BOOL
WINAPI
SetMonitorRedGreenOrBlueGain
(
HMONITOR
monitor
,
MC_GAIN_TYPE
type
,
DWORD
gain
)
BOOL
WINAPI
SetMonitorRedGreenOrBlueGain
(
HMONITOR
monitor
,
MC_GAIN_TYPE
type
,
DWORD
gain
)
{
{
FIXME
(
"
(%p, 0x%x, 0x%x): stub
\n
"
,
monitor
,
type
,
gain
);
FIXME
(
"
%p, 0x%x, %#lx: stub.
\n
"
,
monitor
,
type
,
gain
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
@@ -1357,7 +1357,7 @@ BOOL WINAPI SetMonitorRedGreenOrBlueGain( HMONITOR monitor, MC_GAIN_TYPE type, D
...
@@ -1357,7 +1357,7 @@ BOOL WINAPI SetMonitorRedGreenOrBlueGain( HMONITOR monitor, MC_GAIN_TYPE type, D
BOOL
WINAPI
SetVCPFeature
(
HMONITOR
monitor
,
BYTE
vcpCode
,
DWORD
value
)
BOOL
WINAPI
SetVCPFeature
(
HMONITOR
monitor
,
BYTE
vcpCode
,
DWORD
value
)
{
{
FIXME
(
"
(%p, 0x%02x, 0x%x): stub
\n
"
,
monitor
,
vcpCode
,
value
);
FIXME
(
"
%p, 0x%02x, %#lx: stub.
\n
"
,
monitor
,
vcpCode
,
value
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
return
FALSE
;
...
...
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