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
fc3377d0
Commit
fc3377d0
authored
Jun 10, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Jun 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Forward some messages from IMediaSeekingPassThru.
parent
6cfc6bd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
control.c
dlls/quartz/control.c
+20
-4
No files found.
dlls/quartz/control.c
View file @
fc3377d0
...
...
@@ -782,11 +782,17 @@ static HRESULT WINAPI MediaSeekingPassThru_SetTimeFormat(IMediaSeeking * iface,
static
HRESULT
WINAPI
MediaSeekingPassThru_GetDuration
(
IMediaSeeking
*
iface
,
LONGLONG
*
pDuration
)
{
ICOM_THIS_MULTI
(
PassThruImpl
,
IMediaSeeking_vtbl
,
iface
);
PIN_INFO
info
;
HRESULT
hr
;
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
pDuration
);
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
IPin_QueryPinInfo
(
This
->
pin
,
&
info
);
hr
=
ForwardCmdSeek
(
NULL
,
info
.
pFilter
,
fwd_getduration
,
pDuration
);
IBaseFilter_Release
(
info
.
pFilter
);
return
hr
;
}
static
HRESULT
WINAPI
MediaSeekingPassThru_GetStopPosition
(
IMediaSeeking
*
iface
,
LONGLONG
*
pStop
)
...
...
@@ -823,11 +829,21 @@ static HRESULT WINAPI MediaSeekingPassThru_ConvertTimeFormat(IMediaSeeking * ifa
static
HRESULT
WINAPI
MediaSeekingPassThru_SetPositions
(
IMediaSeeking
*
iface
,
LONGLONG
*
pCurrent
,
DWORD
dwCurrentFlags
,
LONGLONG
*
pStop
,
DWORD
dwStopFlags
)
{
ICOM_THIS_MULTI
(
PassThruImpl
,
IMediaSeeking_vtbl
,
iface
);
struct
pos_args
args
;
PIN_INFO
info
;
HRESULT
hr
;
TRACE
(
"(%p/%p)->(%p, %p)
\n
"
,
iface
,
This
,
pCurrent
,
pStop
);
args
.
current
=
pCurrent
;
args
.
stop
=
pStop
;
args
.
curflags
=
dwCurrentFlags
;
args
.
stopflags
=
dwStopFlags
;
FIXME
(
"stub
\n
"
);
return
E_NOTIMPL
;
IPin_QueryPinInfo
(
This
->
pin
,
&
info
);
hr
=
ForwardCmdSeek
(
NULL
,
info
.
pFilter
,
fwd_setposition
,
&
args
);
IBaseFilter_Release
(
info
.
pFilter
);
return
hr
;
}
static
HRESULT
WINAPI
MediaSeekingPassThru_GetPositions
(
IMediaSeeking
*
iface
,
LONGLONG
*
pCurrent
,
LONGLONG
*
pStop
)
...
...
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