[PATCH 05/21] dlls/mfplat/tests: use correct integral type

Eric Pouech eric.pouech at gmail.com
Thu Mar 3 01:21:27 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/mfplat/tests/mfplat.c |   25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/dlls/mfplat/tests/mfplat.c b/dlls/mfplat/tests/mfplat.c
index 91c9d971a3b..d0e79646dae 100644
--- a/dlls/mfplat/tests/mfplat.c
+++ b/dlls/mfplat/tests/mfplat.c
@@ -1154,8 +1154,9 @@ static void test_media_type(void)
     IMFMediaType *mediatype, *mediatype2;
     IMFVideoMediaType *video_type;
     IUnknown *unk, *unk2;
-    DWORD count, flags;
     BOOL compressed;
+    DWORD flags;
+    UINT count;
     HRESULT hr;
     GUID guid;
 
@@ -1956,10 +1957,11 @@ static void test_MFCreateMFByteStreamOnStream(void)
     IMFByteStream *bytestream2;
     IStream *stream;
     IMFAttributes *attributes = NULL;
-    DWORD caps, written, count;
+    DWORD caps, written;
     IUnknown *unknown;
     ULONG ref, size;
     HRESULT hr;
+    UINT count;
 
     if(!pMFCreateMFByteStreamOnStream)
     {
@@ -2061,10 +2063,11 @@ static void test_file_stream(void)
     IMFAttributes *attributes = NULL;
     MF_ATTRIBUTE_TYPE item_type;
     WCHAR pathW[MAX_PATH];
-    DWORD caps, count;
     WCHAR *filename;
     HRESULT hr;
     WCHAR *str;
+    DWORD caps;
+    UINT count;
     BOOL eos;
 
     filename = load_resource(L"test.mp4");
@@ -4235,6 +4238,7 @@ image_size_tests[] =
 static void test_MFCalculateImageSize(void)
 {
     unsigned int i;
+    DWORD plsize;
     UINT32 size;
     HRESULT hr;
 
@@ -4260,9 +4264,9 @@ static void test_MFCalculateImageSize(void)
         {
             unsigned int plane_size = ptr->plane_size ? ptr->plane_size : ptr->size;
 
-            hr = pMFGetPlaneSize(ptr->subtype->Data1, ptr->width, ptr->height, &size);
+            hr = pMFGetPlaneSize(ptr->subtype->Data1, ptr->width, ptr->height, &plsize);
             ok(hr == S_OK, "%u: failed to get plane size, hr %#x.\n", i, hr);
-            ok(size == plane_size, "%u: unexpected plane size %u, expected %u.\n", i, size, plane_size);
+            ok(plsize == plane_size, "%u: unexpected plane size %u, expected %u.\n", i, plsize, plane_size);
         }
     }
 }
@@ -4270,7 +4274,7 @@ static void test_MFCalculateImageSize(void)
 static void test_MFGetPlaneSize(void)
 {
     unsigned int i;
-    UINT32 size;
+    DWORD size;
     HRESULT hr;
 
     if (!pMFGetPlaneSize)
@@ -5685,12 +5689,13 @@ static void test_MFCreate2DMediaBuffer(void)
         { 1, 4, D3DFMT_A8R8G8B8, 16, 64 },
         { 4, 1, D3DFMT_A8R8G8B8, 16, 64 },
     };
-    unsigned int max_length, length, length2;
+    DWORD max_length, length, length2;
     BYTE *buffer_start, *data, *data2;
-    int i, j, k, pitch, pitch2, stride;
+    LONG pitch, pitch2, stride;
     IMF2DBuffer2 *_2dbuffer2;
     IMF2DBuffer *_2dbuffer;
     IMFMediaBuffer *buffer;
+    int i, j, k;
     HRESULT hr;
     BOOL ret;
 
@@ -5986,7 +5991,7 @@ static void test_MFCreateMediaBufferFromMediaType(void)
         { 2,  0,  0,  4, 16, 52 },
     };
     IMFMediaBuffer *buffer;
-    UINT32 length;
+    DWORD length;
     HRESULT hr;
     IMFMediaType *media_type;
     unsigned int i;
@@ -7094,11 +7099,11 @@ static void test_sample_allocator_sysmem(void)
     IMFVideoSampleAllocatorCallback *allocator_cb;
     IMFVideoSampleAllocatorEx *allocatorex;
     IMFVideoSampleAllocator *allocator;
-    unsigned int buffer_count;
     IMFSample *sample, *sample2;
     IMFAttributes *attributes;
     IMFMediaBuffer *buffer;
     LONG refcount, count;
+    DWORD buffer_count;
     IUnknown *unk;
     HRESULT hr;
 




More information about the wine-devel mailing list