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
5e1882fe
Commit
5e1882fe
authored
Sep 11, 2017
by
Fabian Maurer
Committed by
Alexandre Julliard
Sep 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfidl.idl: Add interfaces IMFClockStateSink, IMFGetService.
Signed-off-by:
Fabian Maurer
<
dark.shadow4@web.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
87d1de6c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
mfidl.idl
include/mfidl.idl
+38
-0
No files found.
include/mfidl.idl
View file @
5e1882fe
...
...
@@ -212,6 +212,44 @@ interface IMFStreamDescriptor : IMFAttributes
HRESULT
GetMediaTypeHandler
(
[
out
]
IMFMediaTypeHandler
**
handler
)
;
}
[
object
,
uuid
(
f6696e82
-
74
f7
-
4
f3d
-
a178
-
8
a5e09c3659f
)
]
interface
IMFClockStateSink
:
IUnknown
{
HRESULT
OnClockStart
(
[
in
]
MFTIME
hnsSystemTime
,
[
in
]
LONGLONG
llClockStartOffset
)
;
HRESULT
OnClockStop
(
[
in
]
MFTIME
hnssSystemTime
)
;
HRESULT
OnClockPause
(
[
in
]
MFTIME
hnsSystemTime
)
;
HRESULT
OnClockRestart
(
[
in
]
MFTIME
hnsSystemTime
)
;
HRESULT
OnClockSetRate
(
[
in
]
MFTIME
hnsSystemTime
,
[
in
]
float
flRate
)
;
}
[
object
,
uuid
(
fa993888
-
4383
-
415
a
-
a930
-
dd472a8cf6f7
)
]
interface
IMFGetService
:
IUnknown
{
HRESULT
GetService
(
[
in
]
REFGUID
guidService
,
[
in
]
REFIID
riid
,
[
out
,
iid_is
(
riid
)
]
LPVOID
*
ppvObject
)
;
}
cpp_quote
(
"HRESULT WINAPI MFCreateMediaSession(IMFAttributes *config, IMFMediaSession **session);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateSourceResolver(IMFSourceResolver **resolver);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateTopology(IMFTopology **topology);"
)
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