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
f3f08d32
Commit
f3f08d32
authored
Nov 20, 2018
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 21, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IMFSequencerSource interface.
Signed-off-by:
Alistair Leslie-Hughes
<
leslie_alistair@hotmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9e84dfcf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
0 deletions
+55
-0
mfidl.idl
include/mfidl.idl
+55
-0
No files found.
include/mfidl.idl
View file @
f3f08d32
...
...
@@ -21,6 +21,7 @@ import "mftransform.idl";
typedef
unsigned
__int64
TOPOID
;
typedef
LONGLONG
MFTIME
;
typedef
DWORD
MFSequencerElementId
;
typedef
enum
MF_TOPOLOGY_TYPE
{
...
...
@@ -250,6 +251,60 @@ interface IMFGetService : IUnknown
)
;
}
[
object
,
uuid
(
03
cb2711
-
24
d7
-
4
db6
-
a17f
-
f3a7a479a536
),
]
interface
IMFPresentationDescriptor
:
IMFAttributes
{
HRESULT
GetStreamDescriptorCount
(
[
out
]
DWORD
*
count
)
;
HRESULT
GetStreamDescriptorByIndex
(
[
in
]
DWORD
index
,
[
out
]
BOOL
*
selected
,
[
out
]
IMFStreamDescriptor
**
descriptor
)
;
HRESULT
SelectStream
(
[
in
]
DWORD
index
)
;
HRESULT
DeselectStream
(
[
in
]
DWORD
index
)
;
HRESULT
Clone
(
[
out
]
IMFPresentationDescriptor
**
descriptor
)
;
}
[
object
,
uuid
(
197
cd219
-
19
cb
-
4
de1
-
a64c
-
acf2edcbe59e
),
local
]
interface
IMFSequencerSource
:
IUnknown
{
HRESULT
AppendTopology
(
[
in
]
IMFTopology
*
topology
,
[
in
]
DWORD
flags
,
[
out
]
MFSequencerElementId
*
element
)
;
HRESULT
DeleteTopology
(
[
in
]
MFSequencerElementId
element
)
;
HRESULT
GetPresentationContext
(
[
in
]
IMFPresentationDescriptor
*
pd
,
[
out
,
optional
]
MFSequencerElementId
*
id
,
[
out
,
optional
]
IMFTopology
**
topology
)
;
HRESULT
UpdateTopology
(
[
in
]
MFSequencerElementId
od
,
[
in
]
IMFTopology
*
topology
)
;
HRESULT
UpdateTopologyFlags
(
[
in
]
MFSequencerElementId
id
,
[
in
]
DWORD
flags
)
;
}
;
cpp_quote
(
"HRESULT WINAPI MFCreateMediaSession(IMFAttributes *config, IMFMediaSession **session);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateMFByteStreamOnStream(IStream *stream, IMFByteStream **bytestream);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateSourceResolver(IMFSourceResolver **resolver);"
)
...
...
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