Update simple_loopback example.

This commit is contained in:
David Reid
2021-07-28 17:34:54 +10:00
parent af8cc1c3da
commit ce86d63181
+1 -1
View File
@@ -21,7 +21,7 @@ void data_callback(ma_device* pDevice, void* pOutput, const void* pInput, ma_uin
ma_encoder* pEncoder = (ma_encoder*)pDevice->pUserData;
MA_ASSERT(pEncoder != NULL);
ma_encoder_write_pcm_frames(pEncoder, pInput, frameCount);
ma_encoder_write_pcm_frames(pEncoder, pInput, frameCount, NULL);
(void)pOutput;
}