Rémi Bernon : winegstreamer: Return E_NOTIMPL from color_convert GetInputStreamAttributes.
Module: wine Branch: master Commit: 53dedf69d7cb580317708476a6fdd78e6e25a497 URL: https://gitlab.winehq.org/wine/wine/-/commit/53dedf69d7cb580317708476a6fdd78... Author: Rémi Bernon <rbernon(a)codeweavers.com> Date: Mon Sep 26 13:24:49 2022 +0200 winegstreamer: Return E_NOTIMPL from color_convert GetInputStreamAttributes. --- dlls/winegstreamer/color_convert.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winegstreamer/color_convert.c b/dlls/winegstreamer/color_convert.c index e4fb78752b0..9be68d5cb11 100644 --- a/dlls/winegstreamer/color_convert.c +++ b/dlls/winegstreamer/color_convert.c @@ -288,7 +288,7 @@ static HRESULT WINAPI transform_GetAttributes(IMFTransform *iface, IMFAttributes static HRESULT WINAPI transform_GetInputStreamAttributes(IMFTransform *iface, DWORD id, IMFAttributes **attributes) { FIXME("iface %p, id %#lx, attributes %p stub!\n", iface, id, attributes); - return MFCreateAttributes(attributes, 0); + return E_NOTIMPL; } static HRESULT WINAPI transform_GetOutputStreamAttributes(IMFTransform *iface, DWORD id, IMFAttributes **attributes)
participants (1)
-
Alexandre Julliard