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
5568f33d
Commit
5568f33d
authored
May 17, 2010
by
Maarten Lankhorst
Committed by
Alexandre Julliard
May 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Forward IMediaFilter to IMediaControl.
parent
44827a03
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
12 deletions
+8
-12
filtergraph.c
dlls/quartz/filtergraph.c
+8
-12
No files found.
dlls/quartz/filtergraph.c
View file @
5568f33d
...
...
@@ -5055,30 +5055,26 @@ static HRESULT WINAPI MediaFilter_GetClassID(IMediaFilter *iface, CLSID * pClass
static
HRESULT
WINAPI
MediaFilter_Stop
(
IMediaFilter
*
iface
)
{
FIXME
(
"(): stub
\n
"
);
return
E_NOTIMPL
;
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaFilter_vtbl
,
iface
);
return
MediaControl_Stop
((
IMediaControl
*
)
&
This
->
IMediaControl_vtbl
);
}
static
HRESULT
WINAPI
MediaFilter_Pause
(
IMediaFilter
*
iface
)
{
FIXME
(
"(): stub
\n
"
);
return
E_NOTIMPL
;
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaFilter_vtbl
,
iface
);
return
MediaControl_Pause
((
IMediaControl
*
)
&
This
->
IMediaControl_vtbl
);
}
static
HRESULT
WINAPI
MediaFilter_Run
(
IMediaFilter
*
iface
,
REFERENCE_TIME
tStart
)
{
FIXME
(
"(0x%s): stub
\n
"
,
wine_dbgstr_longlong
(
tStart
));
return
E_NOTIMPL
;
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaFilter_vtbl
,
iface
);
return
MediaControl_Run
((
IMediaControl
*
)
&
This
->
IMediaControl_vtbl
);
}
static
HRESULT
WINAPI
MediaFilter_GetState
(
IMediaFilter
*
iface
,
DWORD
dwMsTimeout
,
FILTER_STATE
*
pState
)
{
FIXME
(
"(%d, %p): stub
\n
"
,
dwMsTimeout
,
pState
);
return
E_NOTIMPL
;
ICOM_THIS_MULTI
(
IFilterGraphImpl
,
IMediaFilter_vtbl
,
iface
);
return
MediaControl_GetState
((
IMediaControl
*
)
&
This
->
IMediaControl_vtbl
,
dwMsTimeout
,
(
OAFilterState
*
)
pState
);
}
static
HRESULT
WINAPI
MediaFilter_SetSyncSource
(
IMediaFilter
*
iface
,
IReferenceClock
*
pClock
)
...
...
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