Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
dee5d1b8
Commit
dee5d1b8
authored
Aug 05, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/oss: replace the AudioFormat field with 3 raw OSS integers
This simplifies Reopen().
parent
d42342e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
36 deletions
+34
-36
OssOutputPlugin.cxx
src/output/plugins/OssOutputPlugin.cxx
+34
-36
No files found.
src/output/plugins/OssOutputPlugin.cxx
View file @
dee5d1b8
...
...
@@ -62,16 +62,10 @@ class OssOutput final : AudioOutput {
const
char
*
device
;
/**
* The
current input audio format. This is needed to reopen
*
the device after c
ancel().
* The
effective audio format settings of the OSS device.
*
This is needed by Reopen() after C
ancel().
*/
AudioFormat
audio_format
;
/**
* The current OSS audio format. This is needed to reopen the
* device after cancel().
*/
int
oss_format
;
int
effective_channels
,
effective_speed
,
effective_samplesize
;
static
constexpr
unsigned
oss_flags
=
FLAG_ENABLE_DISABLE
;
...
...
@@ -279,14 +273,17 @@ OssIoctlExact(FileDescriptor fd, unsigned long request, int requested_value,
* Throws on error.
*/
static
void
oss_setup_channels
(
FileDescriptor
fd
,
AudioFormat
&
audio_format
)
oss_setup_channels
(
FileDescriptor
fd
,
AudioFormat
&
audio_format
,
int
&
effective_channels
)
{
const
char
*
const
msg
=
"Failed to set channel count"
;
int
channels
=
audio_format
.
channels
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_CHANNELS
,
&
channels
,
msg
)
&&
audio_valid_channel_count
(
channels
))
{
audio_format
.
channels
=
channels
;
effective_channels
=
audio_format
.
channels
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_CHANNELS
,
&
effective_channels
,
msg
)
&&
audio_valid_channel_count
(
effective_channels
))
{
audio_format
.
channels
=
effective_channels
;
return
;
}
...
...
@@ -295,10 +292,11 @@ oss_setup_channels(FileDescriptor fd, AudioFormat &audio_format)
/* don't try that again */
continue
;
channels
=
i
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_CHANNELS
,
&
channels
,
msg
)
&&
audio_valid_channel_count
(
channels
))
{
audio_format
.
channels
=
channels
;
effective_channels
=
i
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_CHANNELS
,
&
effective_channels
,
msg
)
&&
audio_valid_channel_count
(
effective_channels
))
{
audio_format
.
channels
=
effective_channels
;
return
;
}
}
...
...
@@ -313,26 +311,27 @@ oss_setup_channels(FileDescriptor fd, AudioFormat &audio_format)
* Throws on error.
*/
static
void
oss_setup_sample_rate
(
FileDescriptor
fd
,
AudioFormat
&
audio_format
)
oss_setup_sample_rate
(
FileDescriptor
fd
,
AudioFormat
&
audio_format
,
int
&
effective_speed
)
{
const
char
*
const
msg
=
"Failed to set sample rate"
;
int
sample_rate
=
audio_format
.
sample_rate
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_SPEED
,
&
sample_rate
,
msg
)
&&
audio_valid_sample_rate
(
sample_rate
))
{
audio_format
.
sample_rate
=
sample_rate
;
effective_speed
=
audio_format
.
sample_rate
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_SPEED
,
&
effective_speed
,
msg
)
&&
audio_valid_sample_rate
(
effective_speed
))
{
audio_format
.
sample_rate
=
effective_speed
;
return
;
}
static
constexpr
int
sample_rates
[]
=
{
48000
,
44100
,
0
};
for
(
unsigned
i
=
0
;
sample_rates
[
i
]
!=
0
;
++
i
)
{
sample_rate
=
sample_rates
[
i
];
if
(
sample_rate
==
(
int
)
audio_format
.
sample_rate
)
effective_speed
=
sample_rates
[
i
];
if
(
effective_speed
==
(
int
)
audio_format
.
sample_rate
)
continue
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_SPEED
,
&
sample_rate
,
msg
)
&&
audio_valid_sample_rate
(
sample_rate
))
{
audio_format
.
sample_rate
=
sample_rate
;
if
(
oss_try_ioctl_r
(
fd
,
SNDCTL_DSP_SPEED
,
&
effective_speed
,
msg
)
&&
audio_valid_sample_rate
(
effective_speed
))
{
audio_format
.
sample_rate
=
effective_speed
;
return
;
}
}
...
...
@@ -518,9 +517,10 @@ oss_setup_sample_format(FileDescriptor fd, AudioFormat &audio_format,
inline
void
OssOutput
::
Setup
(
AudioFormat
&
_audio_format
)
{
oss_setup_channels
(
fd
,
_audio_format
);
oss_setup_sample_rate
(
fd
,
_audio_format
);
oss_setup_sample_format
(
fd
,
_audio_format
,
&
oss_format
,
pcm_export
);
oss_setup_channels
(
fd
,
_audio_format
,
effective_channels
);
oss_setup_sample_rate
(
fd
,
_audio_format
,
effective_speed
);
oss_setup_sample_format
(
fd
,
_audio_format
,
&
effective_samplesize
,
pcm_export
);
}
/**
...
...
@@ -534,11 +534,11 @@ try {
if
(
!
fd
.
Open
(
device
,
O_WRONLY
))
throw
FormatErrno
(
"Error opening OSS device
\"
%s
\"
"
,
device
);
OssIoctlExact
(
fd
,
SNDCTL_DSP_CHANNELS
,
audio_format
.
channels
,
OssIoctlExact
(
fd
,
SNDCTL_DSP_CHANNELS
,
effective_
channels
,
"Failed to set channel count"
);
OssIoctlExact
(
fd
,
SNDCTL_DSP_SPEED
,
audio_format
.
sample_rate
,
OssIoctlExact
(
fd
,
SNDCTL_DSP_SPEED
,
effective_speed
,
"Failed to set sample rate"
);
OssIoctlExact
(
fd
,
SNDCTL_DSP_SAMPLESIZE
,
oss_format
,
OssIoctlExact
(
fd
,
SNDCTL_DSP_SAMPLESIZE
,
effective_samplesize
,
"Failed to set sample format"
);
}
catch
(...)
{
DoClose
();
...
...
@@ -552,8 +552,6 @@ try {
throw
FormatErrno
(
"Error opening OSS device
\"
%s
\"
"
,
device
);
Setup
(
_audio_format
);
audio_format
=
_audio_format
;
}
catch
(...)
{
DoClose
();
throw
;
...
...
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