API CHANGE: Remove ma_zero_pcm_frames().

This has been replaced with ma_silence_pcm_frames().
This commit is contained in:
David Reid
2021-07-04 16:05:38 +10:00
parent 82f3b0eb7a
commit b0927a4439
-1
View File
@@ -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); }
/*