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
d81df26f
Commit
d81df26f
authored
Nov 26, 2023
by
Aida Jonikienė
Committed by
Alexandre Julliard
Dec 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsdmo: Only print effect_inplace_Process() FIXME once.
GTA San Andreas really spams this message in certain situations.
parent
602f68f2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
main.c
dlls/dsdmo/main.c
+11
-0
No files found.
dlls/dsdmo/main.c
View file @
d81df26f
...
...
@@ -399,8 +399,19 @@ static ULONG WINAPI effect_inplace_Release(IMediaObjectInPlace *iface)
static
HRESULT
WINAPI
effect_inplace_Process
(
IMediaObjectInPlace
*
iface
,
ULONG
size
,
BYTE
*
data
,
REFERENCE_TIME
start
,
DWORD
flags
)
{
static
unsigned
int
once
;
if
(
!
once
++
)
{
FIXME
(
"iface %p, size %lu, data %p, start %s, flags %#lx, stub!
\n
"
,
iface
,
size
,
data
,
wine_dbgstr_longlong
(
start
),
flags
);
}
else
{
WARN
(
"iface %p, size %lu, data %p, start %s, flags %#lx, stub!
\n
"
,
iface
,
size
,
data
,
wine_dbgstr_longlong
(
start
),
flags
);
}
return
E_NOTIMPL
;
}
...
...
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