From b0927a4439702914fc52869fb4db219d5c85cbf8 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 4 Jul 2021 16:05:38 +1000 Subject: [PATCH] API CHANGE: Remove ma_zero_pcm_frames(). This has been replaced with ma_silence_pcm_frames(). --- miniaudio.h | 1 - 1 file changed, 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index 581c7f1d..45998f10 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -5884,7 +5884,6 @@ For all formats except `ma_format_u8`, the output buffer will be filled with 0. makes more sense for the purpose of mixing to initialize it to the center point. */ MA_API void ma_silence_pcm_frames(void* p, ma_uint64 frameCount, ma_format format, ma_uint32 channels); -static MA_INLINE void ma_zero_pcm_frames(void* p, ma_uint64 frameCount, ma_format format, ma_uint32 channels) { ma_silence_pcm_frames(p, frameCount, format, channels); } /*