Commit 9690e3bb authored by David Reid's avatar David Reid

Update revision history.

parent 07410da4
...@@ -11358,8 +11358,7 @@ mal_pa_sample_format_t mal_format_to_pulse(mal_format format) ...@@ -11358,8 +11358,7 @@ mal_pa_sample_format_t mal_format_to_pulse(mal_format format)
case mal_format_s24: return MAL_PA_SAMPLE_S24LE; case mal_format_s24: return MAL_PA_SAMPLE_S24LE;
case mal_format_s32: return MAL_PA_SAMPLE_S32LE; case mal_format_s32: return MAL_PA_SAMPLE_S32LE;
case mal_format_f32: return MAL_PA_SAMPLE_FLOAT32LE; case mal_format_f32: return MAL_PA_SAMPLE_FLOAT32LE;
default: break;
default: return MAL_PA_SAMPLE_INVALID;
} }
} else { } else {
switch (format) { switch (format) {
...@@ -11367,8 +11366,7 @@ mal_pa_sample_format_t mal_format_to_pulse(mal_format format) ...@@ -11367,8 +11366,7 @@ mal_pa_sample_format_t mal_format_to_pulse(mal_format format)
case mal_format_s24: return MAL_PA_SAMPLE_S24BE; case mal_format_s24: return MAL_PA_SAMPLE_S24BE;
case mal_format_s32: return MAL_PA_SAMPLE_S32BE; case mal_format_s32: return MAL_PA_SAMPLE_S32BE;
case mal_format_f32: return MAL_PA_SAMPLE_FLOAT32BE; case mal_format_f32: return MAL_PA_SAMPLE_FLOAT32BE;
default: break;
default: return MAL_PA_SAMPLE_INVALID;
} }
} }
...@@ -27533,6 +27531,7 @@ mal_uint64 mal_sine_wave_read(mal_sine_wave* pSineWave, mal_uint64 count, float* ...@@ -27533,6 +27531,7 @@ mal_uint64 mal_sine_wave_read(mal_sine_wave* pSineWave, mal_uint64 count, float*
// - Add sndio backend for OpenBSD. // - Add sndio backend for OpenBSD.
// - Add audioio backend for NetBSD. // - Add audioio backend for NetBSD.
// - Drop support for the OSS backend on everything except FreeBSD. // - Drop support for the OSS backend on everything except FreeBSD.
// - Formats are now native-endian (were previously little-endian).
// - Mark some APIs as deprecated: // - Mark some APIs as deprecated:
// - mal_src_set_input_sample_rate() and mal_src_set_output_sample_rate() are replaced with mal_src_set_sample_rate(). // - mal_src_set_input_sample_rate() and mal_src_set_output_sample_rate() are replaced with mal_src_set_sample_rate().
// - mal_dsp_set_input_sample_rate() and mal_dsp_set_output_sample_rate() are replaced with mal_dsp_set_sample_rate(). // - mal_dsp_set_input_sample_rate() and mal_dsp_set_output_sample_rate() are replaced with mal_dsp_set_sample_rate().
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