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
ba10e610
Commit
ba10e610
authored
Apr 12, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Apr 14, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Silence seeking fixmes on transform filter.
parent
5fb4224f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
transform.c
dlls/quartz/transform.c
+7
-3
No files found.
dlls/quartz/transform.c
View file @
ba10e610
...
...
@@ -139,21 +139,25 @@ static const IMediaSeekingVtbl TransformFilter_Seeking_Vtbl =
MediaSeekingImpl_GetPreroll
};
/* These shouldn't be implemented by default.
* Usually only source filters should implement these
* and even it's not needed all of the time
*/
static
HRESULT
TransformFilter_ChangeCurrent
(
IBaseFilter
*
iface
)
{
FIXM
E
(
"(%p) filter hasn't implemented current position change!
\n
"
,
iface
);
TRAC
E
(
"(%p) filter hasn't implemented current position change!
\n
"
,
iface
);
return
S_OK
;
}
static
HRESULT
TransformFilter_ChangeStop
(
IBaseFilter
*
iface
)
{
FIXM
E
(
"(%p) filter hasn't implemented stop position change!
\n
"
,
iface
);
TRAC
E
(
"(%p) filter hasn't implemented stop position change!
\n
"
,
iface
);
return
S_OK
;
}
static
HRESULT
TransformFilter_ChangeRate
(
IBaseFilter
*
iface
)
{
FIXM
E
(
"(%p) filter hasn't implemented rate change!
\n
"
,
iface
);
TRAC
E
(
"(%p) filter hasn't implemented rate change!
\n
"
,
iface
);
return
S_OK
;
}
...
...
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