From fee85530dc224d59c08cbe09697dadbe76689c59 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Tue, 2 Apr 2019 11:46:16 +0300 Subject: [PATCH] mfplat: Trace known format ids in MFCalculateImageSize(). Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- dlls/mfplat/main.c | 2 +- dlls/mfplat/mediatype.c | 2 +- dlls/mfplat/mfplat_private.h | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/mfplat/main.c b/dlls/mfplat/main.c index be3a78d4c34..a3e784c86b5 100644 --- a/dlls/mfplat/main.c +++ b/dlls/mfplat/main.c @@ -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[] = { diff --git a/dlls/mfplat/mediatype.c b/dlls/mfplat/mediatype.c index 49143c5b117..f4a2577c3ac 100644 --- a/dlls/mfplat/mediatype.c +++ b/dlls/mfplat/mediatype.c @@ -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); diff --git a/dlls/mfplat/mfplat_private.h b/dlls/mfplat/mfplat_private.h index 5b183d41eed..d7a7547f033 100644 --- a/dlls/mfplat/mfplat_private.h +++ b/dlls/mfplat/mfplat_private.h @@ -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;