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
e09bc9a0
Commit
e09bc9a0
authored
Feb 27, 2019
by
Jactry Zeng
Committed by
Alexandre Julliard
Mar 01, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Add MFCreateMFByteStreamOnStreamEx() stub.
Signed-off-by:
Jactry Zeng
<
jzeng@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
948d39c5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
main.c
dlls/mfplat/main.c
+10
-0
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-0
mfidl.idl
include/mfidl.idl
+1
-0
No files found.
dlls/mfplat/main.c
View file @
e09bc9a0
...
...
@@ -4165,3 +4165,13 @@ void WINAPI MFHeapFree(void *p)
TRACE
(
"%p
\n
"
,
p
);
HeapFree
(
GetProcessHeap
(),
0
,
p
);
}
/***********************************************************************
* MFCreateMFByteStreamOnStreamEx (mfplat.@)
*/
HRESULT
WINAPI
MFCreateMFByteStreamOnStreamEx
(
IUnknown
*
stream
,
IMFByteStream
**
bytestream
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
stream
,
bytestream
);
return
E_NOTIMPL
;
}
dlls/mfplat/mfplat.spec
View file @
e09bc9a0
...
...
@@ -46,6 +46,7 @@
@ stdcall MFCreateFile(long long long wstr ptr)
@ stub MFCreateLegacyMediaBufferOnMFMediaBuffer
@ stdcall MFCreateMFByteStreamOnStream(ptr ptr)
@ stdcall MFCreateMFByteStreamOnStreamEx(ptr ptr)
@ stub MFCreateMFVideoFormatFromMFMediaType
@ stub MFCreateMediaBufferWrapper
@ stdcall MFCreateMediaEvent(long ptr long ptr ptr)
...
...
include/mfidl.idl
View file @
e09bc9a0
...
...
@@ -318,6 +318,7 @@ interface IMFSequencerSource : IUnknown
cpp_quote
(
"HRESULT WINAPI MFCreateMediaSession(IMFAttributes *config, IMFMediaSession **session);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateMFByteStreamOnStream(IStream *stream, IMFByteStream **bytestream);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateMFByteStreamOnStreamEx(IUnknown *stream, IMFByteStream **bytestream);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateSequencerSource(IUnknown *reserved, IMFSequencerSource **seq_source);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateSourceResolver(IMFSourceResolver **resolver);"
)
cpp_quote
(
"HRESULT WINAPI MFCreateStreamDescriptor(DWORD identifier, DWORD cMediaTypes,"
)
...
...
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