Commit ae77ddaf authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

mfplat: Rename debugstr_fourcc to mf_debugstr_fourcc.

parent 17d9841d
...@@ -1627,7 +1627,7 @@ HRESULT WINAPI MFCreateAlignedMemoryBuffer(DWORD max_length, DWORD alignment, IM ...@@ -1627,7 +1627,7 @@ HRESULT WINAPI MFCreateAlignedMemoryBuffer(DWORD max_length, DWORD alignment, IM
*/ */
HRESULT WINAPI MFCreate2DMediaBuffer(DWORD width, DWORD height, DWORD fourcc, BOOL bottom_up, IMFMediaBuffer **buffer) HRESULT WINAPI MFCreate2DMediaBuffer(DWORD width, DWORD height, DWORD fourcc, BOOL bottom_up, IMFMediaBuffer **buffer)
{ {
TRACE("%lu, %lu, %s, %d, %p.\n", width, height, debugstr_fourcc(fourcc), bottom_up, buffer); TRACE("%lu, %lu, %s, %d, %p.\n", width, height, mf_debugstr_fourcc(fourcc), bottom_up, buffer);
return create_2d_buffer(width, height, fourcc, bottom_up, buffer); return create_2d_buffer(width, height, fourcc, bottom_up, buffer);
} }
......
...@@ -2696,7 +2696,7 @@ HRESULT WINAPI MFGetStrideForBitmapInfoHeader(DWORD fourcc, DWORD width, LONG *s ...@@ -2696,7 +2696,7 @@ HRESULT WINAPI MFGetStrideForBitmapInfoHeader(DWORD fourcc, DWORD width, LONG *s
struct uncompressed_video_format *format; struct uncompressed_video_format *format;
GUID subtype; GUID subtype;
TRACE("%s, %lu, %p.\n", debugstr_fourcc(fourcc), width, stride); TRACE("%s, %lu, %p.\n", mf_debugstr_fourcc(fourcc), width, stride);
memcpy(&subtype, &MFVideoFormat_Base, sizeof(subtype)); memcpy(&subtype, &MFVideoFormat_Base, sizeof(subtype));
subtype.Data1 = fourcc; subtype.Data1 = fourcc;
...@@ -2766,7 +2766,7 @@ HRESULT WINAPI MFGetPlaneSize(DWORD fourcc, DWORD width, DWORD height, DWORD *si ...@@ -2766,7 +2766,7 @@ HRESULT WINAPI MFGetPlaneSize(DWORD fourcc, DWORD width, DWORD height, DWORD *si
unsigned int stride; unsigned int stride;
GUID subtype; GUID subtype;
TRACE("%s, %lu, %lu, %p.\n", debugstr_fourcc(fourcc), width, height, size); TRACE("%s, %lu, %lu, %p.\n", mf_debugstr_fourcc(fourcc), width, height, size);
memcpy(&subtype, &MFVideoFormat_Base, sizeof(subtype)); memcpy(&subtype, &MFVideoFormat_Base, sizeof(subtype));
subtype.Data1 = fourcc; subtype.Data1 = fourcc;
......
...@@ -148,7 +148,7 @@ static inline const char *debugstr_propvar(const PROPVARIANT *v) ...@@ -148,7 +148,7 @@ static inline const char *debugstr_propvar(const PROPVARIANT *v)
} }
} }
static inline const char *debugstr_fourcc(DWORD format) static inline const char *mf_debugstr_fourcc(DWORD format)
{ {
static const struct format_name static const struct format_name
{ {
......
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