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
008a2fa0
Commit
008a2fa0
authored
May 28, 2017
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Added IMFSourceResolver definition.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e42a12d8
Show 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 @
008a2fa0
...
...
@@ -38,6 +38,13 @@ typedef enum _MFCLOCK_STATE
MFCLOCK_STATE_PAUSED
}
MFCLOCK_STATE
;
typedef
enum
MF_OBJECT_TYPE
{
MF_OBJECT_MEDIASOURCE
,
MF_OBJECT_BYTESTREAM
,
MF_OBJECT_INVALID
}
MF_OBJECT_TYPE
;
typedef
struct
_MFCLOCK_PROPERTIES
{
unsigned
__int64
qwCorrelationRate
;
...
...
@@ -124,3 +131,34 @@ interface IMFMediaSession : IMFMediaEventGenerator
HRESULT
GetSessionCapabilities
(
[
out
]
DWORD
*
caps
)
;
HRESULT
GetFullTopology
(
[
in
]
DWORD
flags
,
[
in
]
TOPOID
id
,
[
out
]
IMFTopology
**
topology
)
;
}
[
object
,
uuid
(
fbe5a32d
-
a497
-
4b61
-
bb85
-
97b1
a848a6e3
)
]
interface
IMFSourceResolver
:
IUnknown
{
[
local
]
HRESULT
CreateObjectFromURL
(
[
in
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
]
IPropertyStore
*
props
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
local
]
HRESULT
CreateObjectFromByteStream
(
[
in
]
IMFByteStream
*
stream
,
[
in
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
]
IPropertyStore
*
props
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
local
]
HRESULT
BeginCreateObjectFromURL
(
[
in
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
]
IPropertyStore
*
props
,
[
out
]
IUnknown
**
cancel_cookie
,
[
in
]
IMFAsyncCallback
*
callback
,
[
in
]
IUnknown
*
unk_state
)
;
[
call_as
(
BeginCreateObjectFromURL
)
]
HRESULT
RemoteBeginCreateObjectFromURL
(
[
in
,
string
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
]
IPropertyStore
*
props
,
[
in
]
IMFRemoteAsyncCallback
*
callback
)
;
[
local
]
HRESULT
EndCreateObjectFromURL
(
[
in
]
IMFAsyncResult
*
result
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
call_as
(
EndCreateObjectFromURL
)
]
HRESULT
RemoteEndCreateObjectFromURL
(
[
in
]
IUnknown
*
result
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
local
]
HRESULT
BeginCreateObjectFromByteStream
(
[
in
]
IMFByteStream
*
stream
,
[
in
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
]
IPropertyStore
*
props
,
[
out
]
IUnknown
**
cancel_cookie
,
[
in
]
IMFAsyncCallback
*
callback
,
[
in
]
IUnknown
*
unk_state
)
;
[
call_as
(
BeginCreateObjectFromByteStream
)
]
HRESULT
RemoteBeginCreateObjectFromByteStream
(
[
in
]
IMFByteStream
*
stream
,
[
in
,
unique
]
const
WCHAR
*
url
,
[
in
]
DWORD
flags
,
[
in
,
unique
]
IPropertyStore
*
props
,
[
in
]
IMFRemoteAsyncCallback
*
callback
)
;
[
local
]
HRESULT
EndCreateObjectFromByteStream
(
[
in
]
IMFAsyncResult
*
result
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
call_as
(
EndCreateObjectFromByteStream
)
]
HRESULT
RemoteEndCreateObjectFromByteStream
(
[
in
]
IUnknown
*
result
,
[
out
]
MF_OBJECT_TYPE
*
obj_type
,
[
out
]
IUnknown
**
object
)
;
[
local
]
HRESULT
CanceObjectCreation
(
[
in
]
IUnknown
*
cancel_cookie
)
;
}
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