mfplat: Fix buffer alignment calculation.

Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Nikolay Sivov 2020-03-17 17:10:31 +03:00 committed by Alexandre Julliard
parent eead400ba7
commit 6450fb3bda
1 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(mfplat); WINE_DEFAULT_DEBUG_CHANNEL(mfplat);
#define ALIGN_SIZE(size, alignment) (((size) + (alignment - 1)) & ~((alignment - 1))) #define ALIGN_SIZE(size, alignment) (((size) + (alignment)) & ~((alignment)))
struct memory_buffer struct memory_buffer
{ {
@ -262,7 +262,7 @@ static HRESULT WINAPI memory_1d_2d_buffer_Lock(IMFMediaBuffer *iface, BYTE **dat
hr = MF_E_INVALIDREQUEST; hr = MF_E_INVALIDREQUEST;
else if (!buffer->_2d.linear_buffer) else if (!buffer->_2d.linear_buffer)
{ {
if (!(buffer->_2d.linear_buffer = heap_alloc(ALIGN_SIZE(buffer->_2d.plane_size, 64)))) if (!(buffer->_2d.linear_buffer = heap_alloc(ALIGN_SIZE(buffer->_2d.plane_size, MF_64_BYTE_ALIGNMENT))))
hr = E_OUTOFMEMORY; hr = E_OUTOFMEMORY;
} }
@ -575,7 +575,7 @@ static HRESULT create_2d_buffer(DWORD width, DWORD height, DWORD fourcc, BOOL bo
if (!object) if (!object)
return E_OUTOFMEMORY; return E_OUTOFMEMORY;
pitch = ALIGN_SIZE(width * bpp, 64); pitch = ALIGN_SIZE(width * bpp, MF_64_BYTE_ALIGNMENT);
switch (fourcc) switch (fourcc)
{ {