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
ddce544b
Commit
ddce544b
authored
9 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/alsa: move the PcmExport::Open() call to Open()
parent
21fb7eea
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
21 deletions
+17
-21
AlsaOutputPlugin.cxx
src/output/plugins/AlsaOutputPlugin.cxx
+17
-21
No files found.
src/output/plugins/AlsaOutputPlugin.cxx
View file @
ddce544b
...
...
@@ -157,7 +157,8 @@ private:
Error
&
error
);
#endif
bool
SetupOrDop
(
AudioFormat
&
audio_format
,
Error
&
error
);
bool
SetupOrDop
(
AudioFormat
&
audio_format
,
PcmExport
::
Params
&
params
,
Error
&
error
);
int
Recover
(
int
err
);
...
...
@@ -726,29 +727,17 @@ AlsaOutput::SetupDop(const AudioFormat audio_format,
#endif
inline
bool
AlsaOutput
::
SetupOrDop
(
AudioFormat
&
audio_format
,
Error
&
error
)
AlsaOutput
::
SetupOrDop
(
AudioFormat
&
audio_format
,
PcmExport
::
Params
&
params
,
Error
&
error
)
{
PcmExport
::
Params
params
;
params
.
alsa_channel_order
=
true
;
#ifdef ENABLE_DSD
params
.
dop
=
dop
&&
audio_format
.
format
==
SampleFormat
::
DSD
;
#endif
const
bool
success
=
#ifdef ENABLE_DSD
params
.
dop
?
SetupDop
(
audio_format
,
params
,
error
)
:
if
(
dop
&&
audio_format
.
format
==
SampleFormat
::
DSD
)
{
params
.
dop
=
true
;
return
SetupDop
(
audio_format
,
params
,
error
);
}
#endif
AlsaSetup
(
this
,
audio_format
,
params
,
error
);
if
(
!
success
)
return
false
;
pcm_export
->
Open
(
audio_format
.
format
,
audio_format
.
channels
,
params
);
return
true
;
return
AlsaSetup
(
this
,
audio_format
,
params
,
error
);
}
inline
bool
...
...
@@ -767,11 +756,18 @@ AlsaOutput::Open(AudioFormat &audio_format, Error &error)
snd_pcm_name
(
pcm
),
snd_pcm_type_name
(
snd_pcm_type
(
pcm
)));
if
(
!
SetupOrDop
(
audio_format
,
error
))
{
PcmExport
::
Params
params
;
params
.
alsa_channel_order
=
true
;
if
(
!
SetupOrDop
(
audio_format
,
params
,
error
))
{
snd_pcm_close
(
pcm
);
return
false
;
}
pcm_export
->
Open
(
audio_format
.
format
,
audio_format
.
channels
,
params
);
in_frame_size
=
audio_format
.
GetFrameSize
();
out_frame_size
=
pcm_export
->
GetFrameSize
(
audio_format
);
...
...
This diff is collapsed.
Click to expand it.
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