Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
miniaudio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
miniaudio
Commits
9690e3bb
Commit
9690e3bb
authored
Aug 05, 2018
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update revision history.
parent
07410da4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
mini_al.h
mini_al.h
+3
-4
No files found.
mini_al.h
View file @
9690e3bb
...
@@ -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().
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment