mfplat: Trace known format ids in MFCalculateImageSize().

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2019-04-02 11:46:16 +03:00 committed by Alexandre Julliard
parent 49491a1a3c
commit fee85530dc
3 changed files with 3 additions and 2 deletions

View File

@ -687,7 +687,7 @@ const char *debugstr_attr(const GUID *guid)
return ret ? wine_dbg_sprintf("%s", ret->name) : wine_dbgstr_guid(guid);
}
static const char *debugstr_mf_guid(const GUID *guid)
const char *debugstr_mf_guid(const GUID *guid)
{
static const struct guid_def guid_defs[] =
{

View File

@ -1759,7 +1759,7 @@ HRESULT WINAPI MFCalculateImageSize(REFGUID subtype, UINT32 width, UINT32 height
};
struct uncompressed_video_format *format;
TRACE("%s, %u, %u, %p.\n", debugstr_guid(subtype), width, height, size);
TRACE("%s, %u, %u, %p.\n", debugstr_mf_guid(subtype), width, height, size);
format = bsearch(subtype, video_formats, ARRAY_SIZE(video_formats), sizeof(*video_formats),
uncompressed_video_format_compare);

View File

@ -43,6 +43,7 @@ struct attributes
extern HRESULT init_attributes_object(struct attributes *object, UINT32 size) DECLSPEC_HIDDEN;
extern void clear_attributes_object(struct attributes *object) DECLSPEC_HIDDEN;
extern const char *debugstr_attr(const GUID *guid) DECLSPEC_HIDDEN;
extern const char *debugstr_mf_guid(const GUID *guid) DECLSPEC_HIDDEN;
extern HRESULT attributes_GetItem(struct attributes *object, REFGUID key, PROPVARIANT *value) DECLSPEC_HIDDEN;
extern HRESULT attributes_GetItemType(struct attributes *object, REFGUID key, MF_ATTRIBUTE_TYPE *type) DECLSPEC_HIDDEN;