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
d5634ac1
Commit
d5634ac1
authored
Mar 04, 2019
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Return stub interface for stream descriptor type handler.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
76a6f1aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
100 additions
and
2 deletions
+100
-2
mediatype.c
dlls/mfplat/mediatype.c
+100
-2
No files found.
dlls/mfplat/mediatype.c
View file @
d5634ac1
...
...
@@ -35,6 +35,7 @@ struct stream_desc
{
struct
attributes
attributes
;
IMFStreamDescriptor
IMFStreamDescriptor_iface
;
IMFMediaTypeHandler
IMFMediaTypeHandler_iface
;
};
static
inline
struct
media_type
*
impl_from_IMFMediaType
(
IMFMediaType
*
iface
)
...
...
@@ -47,6 +48,11 @@ static inline struct stream_desc *impl_from_IMFStreamDescriptor(IMFStreamDescrip
return
CONTAINING_RECORD
(
iface
,
struct
stream_desc
,
IMFStreamDescriptor_iface
);
}
static
struct
stream_desc
*
impl_from_IMFMediaTypeHandler
(
IMFMediaTypeHandler
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
stream_desc
,
IMFMediaTypeHandler_iface
);
}
static
HRESULT
WINAPI
mediatype_QueryInterface
(
IMFMediaType
*
iface
,
REFIID
riid
,
void
**
out
)
{
TRACE
(
"%p, %s, %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
out
);
...
...
@@ -616,9 +622,14 @@ static HRESULT WINAPI stream_descriptor_GetStreamIdentifier(IMFStreamDescriptor
static
HRESULT
WINAPI
stream_descriptor_GetMediaTypeHandler
(
IMFStreamDescriptor
*
iface
,
IMFMediaTypeHandler
**
handler
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
handler
);
struct
stream_desc
*
stream_desc
=
impl_from_IMFStreamDescriptor
(
iface
);
return
E_NOTIMPL
;
TRACE
(
"%p, %p.
\n
"
,
iface
,
handler
);
*
handler
=
&
stream_desc
->
IMFMediaTypeHandler_iface
;
IMFStreamDescriptor_AddRef
(
iface
);
return
S_OK
;
}
static
const
IMFStreamDescriptorVtbl
streamdescriptorvtbl
=
...
...
@@ -660,6 +671,92 @@ static const IMFStreamDescriptorVtbl streamdescriptorvtbl =
stream_descriptor_GetMediaTypeHandler
};
static
HRESULT
WINAPI
mediatype_handler_QueryInterface
(
IMFMediaTypeHandler
*
iface
,
REFIID
riid
,
void
**
obj
)
{
TRACE
(
"%p, %s, %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
obj
);
if
(
IsEqualIID
(
riid
,
&
IID_IMFMediaTypeHandler
)
||
IsEqualIID
(
riid
,
&
IID_IUnknown
))
{
*
obj
=
iface
;
IMFMediaTypeHandler_AddRef
(
iface
);
return
S_OK
;
}
WARN
(
"Unsupported %s.
\n
"
,
debugstr_guid
(
riid
));
*
obj
=
NULL
;
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
mediatype_handler_AddRef
(
IMFMediaTypeHandler
*
iface
)
{
struct
stream_desc
*
stream_desc
=
impl_from_IMFMediaTypeHandler
(
iface
);
return
IMFStreamDescriptor_AddRef
(
&
stream_desc
->
IMFStreamDescriptor_iface
);
}
static
ULONG
WINAPI
mediatype_handler_Release
(
IMFMediaTypeHandler
*
iface
)
{
struct
stream_desc
*
stream_desc
=
impl_from_IMFMediaTypeHandler
(
iface
);
return
IMFStreamDescriptor_Release
(
&
stream_desc
->
IMFStreamDescriptor_iface
);
}
static
HRESULT
WINAPI
mediatype_handler_IsMediaTypeSupported
(
IMFMediaTypeHandler
*
iface
,
IMFMediaType
*
in_type
,
IMFMediaType
**
out_type
)
{
FIXME
(
"%p, %p, %p.
\n
"
,
iface
,
in_type
,
out_type
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
mediatype_handler_GetMediaTypeCount
(
IMFMediaTypeHandler
*
iface
,
DWORD
*
count
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
count
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
mediatype_handler_GetMediaTypeByIndex
(
IMFMediaTypeHandler
*
iface
,
DWORD
index
,
IMFMediaType
**
type
)
{
FIXME
(
"%p, %u, %p.
\n
"
,
iface
,
index
,
type
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
mediatype_handler_SetCurrentMediaType
(
IMFMediaTypeHandler
*
iface
,
IMFMediaType
*
type
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
type
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
mediatype_handler_GetCurrentMediaType
(
IMFMediaTypeHandler
*
iface
,
IMFMediaType
**
type
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
type
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
mediatype_handler_GetMajorType
(
IMFMediaTypeHandler
*
iface
,
GUID
*
type
)
{
FIXME
(
"%p, %p.
\n
"
,
iface
,
type
);
return
E_NOTIMPL
;
}
static
const
IMFMediaTypeHandlerVtbl
mediatypehandlervtbl
=
{
mediatype_handler_QueryInterface
,
mediatype_handler_AddRef
,
mediatype_handler_Release
,
mediatype_handler_IsMediaTypeSupported
,
mediatype_handler_GetMediaTypeCount
,
mediatype_handler_GetMediaTypeByIndex
,
mediatype_handler_SetCurrentMediaType
,
mediatype_handler_GetCurrentMediaType
,
mediatype_handler_GetMajorType
,
};
/***********************************************************************
* MFCreateStreamDescriptor (mfplat.@)
*/
...
...
@@ -676,6 +773,7 @@ HRESULT WINAPI MFCreateStreamDescriptor(DWORD identifier, DWORD count,
init_attribute_object
(
&
object
->
attributes
,
0
);
object
->
IMFStreamDescriptor_iface
.
lpVtbl
=
&
streamdescriptorvtbl
;
object
->
IMFMediaTypeHandler_iface
.
lpVtbl
=
&
mediatypehandlervtbl
;
*
descriptor
=
&
object
->
IMFStreamDescriptor_iface
;
return
S_OK
;
...
...
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