Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
efff5abf
Commit
efff5abf
authored
Apr 03, 2012
by
Christian Costa
Committed by
Alexandre Julliard
Apr 04, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
amstream: Implement IAMMultiMediaStreamImpl_Seek.
parent
0f8553b5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
amstream.c
dlls/amstream/amstream.c
+3
-3
No files found.
dlls/amstream/amstream.c
View file @
efff5abf
...
...
@@ -211,13 +211,13 @@ static HRESULT WINAPI IAMMultiMediaStreamImpl_GetDuration(IAMMultiMediaStream* i
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_Seek
(
IAMMultiMediaStream
*
iface
,
STREAM_TIME
SeekT
ime
)
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_Seek
(
IAMMultiMediaStream
*
iface
,
STREAM_TIME
seek_t
ime
)
{
IAMMultiMediaStreamImpl
*
This
=
impl_from_IAMMultiMediaStream
(
iface
);
FIXME
(
"(%p/%p)->() stub!
\n
"
,
This
,
iface
);
TRACE
(
"(%p/%p)->(%s)
\n
"
,
This
,
iface
,
wine_dbgstr_longlong
(
seek_time
)
);
return
E_NOTIMPL
;
return
IMediaSeeking_SetPositions
(
This
->
media_seeking
,
&
seek_time
,
AM_SEEKING_AbsolutePositioning
,
NULL
,
AM_SEEKING_NoPositioning
)
;
}
static
HRESULT
WINAPI
IAMMultiMediaStreamImpl_GetEndOfStream
(
IAMMultiMediaStream
*
iface
,
HANDLE
*
phEOS
)
...
...
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