Minor struct packing improvement.

This commit is contained in:
David Reid
2026-02-15 13:16:00 +10:00
parent d63deea939
commit 65a0c1f83d
+3 -4
View File
@@ -5602,6 +5602,9 @@ MA_API ma_linear_resampler_config ma_linear_resampler_config_init(ma_format form
typedef struct
{
void* _pHeap;
ma_bool32 _ownsHeap;
ma_format format;
ma_uint32 channels;
ma_uint32 sampleRateIn;
@@ -5646,10 +5649,6 @@ typedef struct
float* f32;
ma_int32* s32;
} lpf;
/* Memory management. */
void* _pHeap;
ma_bool32 _ownsHeap;
} ma_linear_resampler;
MA_API ma_result ma_linear_resampler_get_heap_size(const ma_linear_resampler_config* pConfig, size_t* pHeapSizeInBytes);