mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-23 00:34:03 +02:00
Fix an unaligned access error.
Public issue https://github.com/mackron/miniaudio/issues/499
This commit is contained in:
+1
-1
@@ -49211,7 +49211,7 @@ static ma_result ma_linear_resampler_get_heap_layout(const ma_linear_resampler_c
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* LPF */
|
/* LPF */
|
||||||
pHeapLayout->lpfOffset = pHeapLayout->sizeInBytes;
|
pHeapLayout->lpfOffset = ma_align_64(pHeapLayout->sizeInBytes);
|
||||||
{
|
{
|
||||||
ma_result result;
|
ma_result result;
|
||||||
size_t lpfHeapSizeInBytes;
|
size_t lpfHeapSizeInBytes;
|
||||||
|
|||||||
Reference in New Issue
Block a user