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
5d827878
Commit
5d827878
authored
Aug 04, 2024
by
David Reid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename a variable for consistency.
parent
d87230b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
miniaudio.h
miniaudio.h
+4
-4
No files found.
miniaudio.h
View file @
5d827878
...
@@ -7107,7 +7107,7 @@ struct ma_device_config
...
@@ -7107,7 +7107,7 @@ struct ma_device_config
{
{
const char* pStreamNamePlayback;
const char* pStreamNamePlayback;
const char* pStreamNameCapture;
const char* pStreamNameCapture;
int
pC
hannelMap;
int
c
hannelMap;
} pulse;
} pulse;
struct
struct
{
{
...
@@ -8756,7 +8756,7 @@ then be set directly on the structure. Below are the members of the `ma_device_c
...
@@ -8756,7 +8756,7 @@ then be set directly on the structure. Below are the members of the `ma_device_c
pulse.pStreamNameCapture
pulse.pStreamNameCapture
PulseAudio only. Sets the stream name for capture.
PulseAudio only. Sets the stream name for capture.
pulse.
pC
hannelMap
pulse.
c
hannelMap
PulseAudio only. Sets the channel map that is requested from PulseAudio. See MA_PA_CHANNEL_MAP_* constants. Defaults to MA_PA_CHANNEL_MAP_AIFF.
PulseAudio only. Sets the channel map that is requested from PulseAudio. See MA_PA_CHANNEL_MAP_* constants. Defaults to MA_PA_CHANNEL_MAP_AIFF.
coreaudio.allowNominalSampleRateChange
coreaudio.allowNominalSampleRateChange
...
@@ -30491,7 +30491,7 @@ static ma_result ma_device_init__pulse(ma_device* pDevice, const ma_device_confi
...
@@ -30491,7 +30491,7 @@ static ma_result ma_device_init__pulse(ma_device* pDevice, const ma_device_confi
}
}
/* Use a default channel map. */
/* Use a default channel map. */
((ma_pa_channel_map_init_extend_proc)pDevice->pContext->pulse.pa_channel_map_init_extend)(&cmap, ss.channels, pConfig->pulse.
pC
hannelMap);
((ma_pa_channel_map_init_extend_proc)pDevice->pContext->pulse.pa_channel_map_init_extend)(&cmap, ss.channels, pConfig->pulse.
c
hannelMap);
/* Use the requested sample rate if one was specified. */
/* Use the requested sample rate if one was specified. */
if (pDescriptorCapture->sampleRate != 0) {
if (pDescriptorCapture->sampleRate != 0) {
...
@@ -30643,7 +30643,7 @@ static ma_result ma_device_init__pulse(ma_device* pDevice, const ma_device_confi
...
@@ -30643,7 +30643,7 @@ static ma_result ma_device_init__pulse(ma_device* pDevice, const ma_device_confi
}
}
/* Use a default channel map. */
/* Use a default channel map. */
((ma_pa_channel_map_init_extend_proc)pDevice->pContext->pulse.pa_channel_map_init_extend)(&cmap, ss.channels, pConfig->pulse.
pC
hannelMap);
((ma_pa_channel_map_init_extend_proc)pDevice->pContext->pulse.pa_channel_map_init_extend)(&cmap, ss.channels, pConfig->pulse.
c
hannelMap);
/* Use the requested sample rate if one was specified. */
/* Use the requested sample rate if one was specified. */
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