From 77586a8a43205c1639fea02d571f6767cda06d1c Mon Sep 17 00:00:00 2001 From: David Reid Date: Sun, 4 Jul 2021 15:44:58 +1000 Subject: [PATCH] API CHANGE: Remove unused channel mixing mode. --- miniaudio.h | 1 - 1 file changed, 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index d9c1fe13..43f21e93 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -1919,7 +1919,6 @@ typedef enum ma_channel_mix_mode_rectangular = 0, /* Simple averaging based on the plane(s) the channel is sitting on. */ ma_channel_mix_mode_simple, /* Drop excess channels; zeroed out extra channels. */ ma_channel_mix_mode_custom_weights, /* Use custom weights specified in ma_channel_router_config. */ - ma_channel_mix_mode_planar_blend = ma_channel_mix_mode_rectangular, ma_channel_mix_mode_default = ma_channel_mix_mode_rectangular } ma_channel_mix_mode;