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
a712d7ec
Commit
a712d7ec
authored
Mar 05, 2024
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 19, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat/mediatype: Stub MFInitMediaTypeFromMFVideoFormat.
parent
fe0c129e
Hide 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 @
a712d7ec
...
...
@@ -3757,6 +3757,15 @@ HRESULT WINAPI MFCreateVideoMediaTypeFromVideoInfoHeader(const KS_VIDEOINFOHEADE
}
/***********************************************************************
* MFInitMediaTypeFromMFVideoFormat (mfplat.@)
*/
HRESULT
WINAPI
MFInitMediaTypeFromMFVideoFormat
(
IMFMediaType
*
media_type
,
const
MFVIDEOFORMAT
*
format
,
UINT32
size
)
{
FIXME
(
"%p, %p, %u
\n
"
,
media_type
,
format
,
size
);
return
E_NOTIMPL
;
}
/***********************************************************************
* MFInitMediaTypeFromVideoInfoHeader2 (mfplat.@)
*/
HRESULT
WINAPI
MFInitMediaTypeFromVideoInfoHeader2
(
IMFMediaType
*
media_type
,
const
VIDEOINFOHEADER2
*
vih
,
UINT32
size
,
...
...
dlls/mfplat/mfplat.spec
View file @
a712d7ec
...
...
@@ -120,7 +120,7 @@
@ stdcall MFInitAMMediaTypeFromMFMediaType(ptr int128 ptr)
@ stdcall MFInitAttributesFromBlob(ptr ptr long)
@ stdcall MFInitMediaTypeFromAMMediaType(ptr ptr)
@ st
ub MFInitMediaTypeFromMFVideoFormat
@ st
dcall MFInitMediaTypeFromMFVideoFormat(ptr ptr long)
@ stub MFInitMediaTypeFromMPEG1VideoInfo
@ stub MFInitMediaTypeFromMPEG2VideoInfo
@ stdcall MFInitMediaTypeFromVideoInfoHeader2(ptr ptr long ptr)
...
...
include/mfapi.h
View file @
a712d7ec
...
...
@@ -593,6 +593,7 @@ 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
MFInitMediaTypeFromMFVideoFormat
(
IMFMediaType
*
media_type
,
const
MFVIDEOFORMAT
*
format
,
UINT32
size
);
HRESULT
WINAPI
MFInitMediaTypeFromVideoInfoHeader
(
IMFMediaType
*
media_type
,
const
VIDEOINFOHEADER
*
vih
,
UINT32
size
,
const
GUID
*
subtype
);
HRESULT
WINAPI
MFInitMediaTypeFromVideoInfoHeader2
(
IMFMediaType
*
media_type
,
const
VIDEOINFOHEADER2
*
vih
,
...
...
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