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
aa9ca347
Commit
aa9ca347
authored
Nov 20, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Nov 22, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Add MFInitAMMediaTypeFromMFMediaType stub.
parent
d30a1c37
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
mediatype.c
dlls/mfplat/mediatype.c
+9
-0
mfplat.spec
dlls/mfplat/mfplat.spec
+1
-1
mfapi.h
include/mfapi.h
+1
-0
No files found.
dlls/mfplat/mediatype.c
View file @
aa9ca347
...
...
@@ -3685,6 +3685,15 @@ HRESULT WINAPI MFInitMediaTypeFromVideoInfoHeader(IMFMediaType *media_type, cons
}
/***********************************************************************
* MFInitAMMediaTypeFromMFMediaType (mfplat.@)
*/
HRESULT
WINAPI
MFInitAMMediaTypeFromMFMediaType
(
IMFMediaType
*
media_type
,
GUID
format
,
AM_MEDIA_TYPE
*
am_type
)
{
FIXME
(
"%p, %s, %p
\n
"
,
media_type
,
debugstr_guid
(
&
format
),
am_type
);
return
E_NOTIMPL
;
}
/***********************************************************************
* MFInitMediaTypeFromAMMediaType (mfplat.@)
*/
HRESULT
WINAPI
MFInitMediaTypeFromAMMediaType
(
IMFMediaType
*
media_type
,
const
AM_MEDIA_TYPE
*
am_type
)
...
...
dlls/mfplat/mfplat.spec
View file @
aa9ca347
...
...
@@ -117,7 +117,7 @@
@ stdcall MFGetWorkQueueMMCSSPriority(long ptr) rtworkq.RtwqGetWorkQueueMMCSSPriority
@ stdcall MFHeapAlloc(long long str long long)
@ stdcall MFHeapFree(ptr)
@ st
ub MFInitAMMediaTypeFromMFMediaType
@ st
dcall MFInitAMMediaTypeFromMFMediaType(ptr int128 ptr)
@ stdcall MFInitAttributesFromBlob(ptr ptr long)
@ stdcall MFInitMediaTypeFromAMMediaType(ptr ptr)
@ stub MFInitMediaTypeFromMFVideoFormat
...
...
include/mfapi.h
View file @
aa9ca347
...
...
@@ -589,6 +589,7 @@ HRESULT WINAPI MFTGetInfo(CLSID clsid, WCHAR **name, MFT_REGISTER_TYPE_INFO **in
MFT_REGISTER_TYPE_INFO
**
output_types
,
UINT32
*
output_types_count
,
IMFAttributes
**
attributes
);
BOOL
WINAPI
MFIsFormatYUV
(
DWORD
format
);
HRESULT
WINAPI
MFInitAttributesFromBlob
(
IMFAttributes
*
attributes
,
const
UINT8
*
buffer
,
UINT
size
);
HRESULT
WINAPI
MFInitAMMediaTypeFromMFMediaType
(
IMFMediaType
*
media_type
,
GUID
format
,
AM_MEDIA_TYPE
*
am_type
);
HRESULT
WINAPI
MFInitMediaTypeFromAMMediaType
(
IMFMediaType
*
mediatype
,
const
AM_MEDIA_TYPE
*
am_type
);
HRESULT
WINAPI
MFInitMediaTypeFromVideoInfoHeader
(
IMFMediaType
*
media_type
,
const
VIDEOINFOHEADER
*
vih
,
UINT32
size
,
const
GUID
*
subtype
);
...
...
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