Commit b0927a44 authored by David Reid's avatar David Reid

API CHANGE: Remove ma_zero_pcm_frames().

This has been replaced with ma_silence_pcm_frames().
parent 82f3b0eb
...@@ -5884,7 +5884,6 @@ For all formats except `ma_format_u8`, the output buffer will be filled with 0. ...@@ -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. 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); 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); }
/* /*
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment