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
2ac2bd26
Commit
2ac2bd26
authored
Mar 10, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/wasapi: combine two `if` statements to one `switch`
parent
a2be91ae
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
WasapiOutputPlugin.cxx
src/output/plugins/wasapi/WasapiOutputPlugin.cxx
+12
-5
No files found.
src/output/plugins/wasapi/WasapiOutputPlugin.cxx
View file @
2ac2bd26
...
...
@@ -354,17 +354,24 @@ try {
event
.
Wait
();
Status
current_state
=
status
.
load
();
if
(
current_state
==
Status
::
FINISH
)
{
switch
(
current_state
)
{
case
Status
:
:
FINISH
:
FormatDebug
(
wasapi_output_domain
,
"Working thread stopped"
);
return
;
}
if
(
!
started
&&
current_state
!=
Status
::
PLAY
)
/* don't bother starting the IAudioClient if
we're paused */
case
Status
:
:
PAUSE
:
if
(
!
started
)
/* don't bother starting the
IAudioClient if we're paused */
continue
;
break
;
case
Status
:
:
PLAY
:
break
;
}
UINT32
write_in_frames
=
buffer_size_in_frames
;
if
(
!
is_exclusive
)
{
UINT32
data_in_frames
=
...
...
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