Commit 773329e3 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

winegstreamer: Remove attributes pointer from static registration data.

We should store actual key/value pairs in there, if we ever needed this part of registration information. Signed-off-by: 's avatarNikolay Sivov <nsivov@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent a7d01984
......@@ -458,7 +458,6 @@ static const struct mft
const GUID **input_types;
const UINT32 output_types_count;
const GUID **output_types;
IMFAttributes *attributes;
}
mfts[] =
{
......@@ -472,7 +471,6 @@ mfts[] =
audio_converter_supported_types,
ARRAY_SIZE(audio_converter_supported_types),
audio_converter_supported_types,
NULL
},
};
......@@ -498,7 +496,7 @@ HRESULT mfplat_DllRegisterServer(void)
}
hr = MFTRegister(*(cur->clsid), *(cur->category), cur->name, cur->flags, cur->input_types_count,
input_types, cur->output_types_count, output_types, cur->attributes);
input_types, cur->output_types_count, output_types, NULL);
if (FAILED(hr))
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment