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
93fe66b7
Commit
93fe66b7
authored
Mar 10, 2018
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give PulseAudio priority over ALSA by default.
parent
5b41483a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
mini_al.h
mini_al.h
+7
-2
No files found.
mini_al.h
View file @
93fe66b7
...
@@ -1290,8 +1290,8 @@ struct mal_device
...
@@ -1290,8 +1290,8 @@ struct mal_device
// - WASAPI
// - WASAPI
// - DirectSound
// - DirectSound
// - WinMM
// - WinMM
// - ALSA
// - PulseAudio
// - PulseAudio
// - ALSA
// - JACK
// - JACK
// - OSS
// - OSS
// - OpenSL|ES
// - OpenSL|ES
...
@@ -12277,8 +12277,8 @@ static const mal_backend g_malDefaultBackends[] = {
...
@@ -12277,8 +12277,8 @@ static const mal_backend g_malDefaultBackends[] = {
mal_backend_wasapi,
mal_backend_wasapi,
mal_backend_dsound,
mal_backend_dsound,
mal_backend_winmm,
mal_backend_winmm,
mal_backend_alsa
,
mal_backend_pulseaudio,
mal_backend_pulseaudio,
mal_backend_alsa,
mal_backend_jack,
mal_backend_jack,
mal_backend_oss,
mal_backend_oss,
mal_backend_opensl,
mal_backend_opensl,
...
@@ -16009,6 +16009,11 @@ void mal_pcm_f32_to_s32(int* pOut, const float* pIn, unsigned int count)
...
@@ -16009,6 +16009,11 @@ void mal_pcm_f32_to_s32(int* pOut, const float* pIn, unsigned int count)
// v0.x - 2018-xx-xx
// v0.x - 2018-xx-xx
// - API CHANGE: Rename MAL_MAX_SAMPLE_SIZE_IN_BYTES to MAL_MAX_PCM_SAMPLE_SIZE_IN_BYTES.
// - API CHANGE: Rename MAL_MAX_SAMPLE_SIZE_IN_BYTES to MAL_MAX_PCM_SAMPLE_SIZE_IN_BYTES.
// - Add support for PulseAudio.
// - Add support for PulseAudio.
// - This is the highest priority backend on Linux (higher priority than ALSA) since it is commonly
// installed by default on many of the popular distros and offer's more seamless integration on
// platforms where PulseAudio is used. In addition, if PulseAudio is installed and running (which
// is extremely common), it's better to just use PulseAudio directly rather than going through the
// "pulse" ALSA plugin (which is what the "default" ALSA device is likely set to).
// - Add support for JACK.
// - Add support for JACK.
// - Remove dependency on asound.h for the ALSA backend. This means the ALSA development packages are no
// - Remove dependency on asound.h for the ALSA backend. This means the ALSA development packages are no
// longer required to build mini_al.
// longer required to build mini_al.
...
...
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