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
8d01110c
Commit
8d01110c
authored
Mar 14, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mixer_control: moved functions to mixer_all.c
parent
88af35c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
71 deletions
+61
-71
mixer_all.c
src/mixer_all.c
+61
-4
mixer_control.c
src/mixer_control.c
+0
-61
mixer_control.h
src/mixer_control.h
+0
-6
No files found.
src/mixer_all.c
View file @
8d01110c
...
...
@@ -18,14 +18,37 @@
*/
#include "mixer_all.h"
#include "mixer_
control
.h"
#include "mixer_
api
.h"
#include "output_all.h"
#include "output_plugin.h"
#include "output_internal.h"
#include <glib.h>
#include <assert.h>
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "mixer"
static
int
output_mixer_get_volume
(
unsigned
i
)
{
struct
audio_output
*
output
;
struct
mixer
*
mixer
;
assert
(
i
<
audio_output_count
());
output
=
audio_output_get
(
i
);
if
(
!
output
->
enabled
)
return
-
1
;
mixer
=
ao_plugin_get_mixer
(
output
->
plugin
,
output
->
data
);
if
(
mixer
==
NULL
)
return
-
1
;
return
mixer_get_volume
(
mixer
);
}
int
mixer_all_get_volume
(
void
)
{
...
...
@@ -33,8 +56,9 @@ mixer_all_get_volume(void)
int
volume
,
total
=
0
;
for
(
unsigned
i
=
0
;
i
<
count
;
i
++
)
{
if
(
mixer_control_getvol
(
i
,
&
volume
))
{
g_debug
(
"device %d: volume=%d"
,
i
,
volume
);
volume
=
output_mixer_get_volume
(
i
);
g_debug
(
"device %d: volume=%d"
,
i
,
volume
);
if
(
volume
>=
0
)
{
total
+=
volume
;
++
ok
;
}
...
...
@@ -46,6 +70,38 @@ mixer_all_get_volume(void)
return
total
/
ok
;
}
static
bool
output_mixer_set_volume
(
unsigned
i
,
int
volume
,
bool
relative
)
{
struct
audio_output
*
output
;
struct
mixer
*
mixer
;
assert
(
i
<
audio_output_count
());
output
=
audio_output_get
(
i
);
if
(
!
output
->
enabled
)
return
false
;
mixer
=
ao_plugin_get_mixer
(
output
->
plugin
,
output
->
data
);
if
(
mixer
==
NULL
)
return
false
;
if
(
relative
)
{
int
prev
=
mixer_get_volume
(
mixer
);
if
(
prev
<
0
)
return
false
;
volume
+=
prev
;
}
if
(
volume
>
100
)
volume
=
100
;
else
if
(
volume
<
0
)
volume
=
0
;
return
mixer_set_volume
(
mixer
,
volume
);
}
bool
mixer_all_set_volume
(
int
volume
,
bool
relative
)
{
...
...
@@ -53,7 +109,8 @@ mixer_all_set_volume(int volume, bool relative)
unsigned
count
=
audio_output_count
();
for
(
unsigned
i
=
0
;
i
<
count
;
i
++
)
success
=
mixer_control_setvol
(
i
,
volume
,
relative
)
||
success
;
success
=
output_mixer_set_volume
(
i
,
volume
,
relative
)
||
success
;
return
success
;
}
src/mixer_control.c
View file @
8d01110c
...
...
@@ -19,66 +19,5 @@
#include "mixer_control.h"
#include "mixer_api.h"
#include "output_all.h"
#include "output_plugin.h"
#include "output_internal.h"
#include <assert.h>
bool
mixer_control_setvol
(
unsigned
int
device
,
int
volume
,
int
rel
)
{
struct
audio_output
*
output
;
struct
mixer
*
mixer
;
assert
(
device
<
audio_output_count
());
output
=
audio_output_get
(
device
);
if
(
!
output
->
enabled
)
return
false
;
mixer
=
ao_plugin_get_mixer
(
output
->
plugin
,
output
->
data
);
if
(
mixer
!=
NULL
)
{
if
(
rel
)
{
int
cur_volume
=
mixer_get_volume
(
mixer
);
if
(
cur_volume
<
0
)
return
false
;
volume
=
volume
+
cur_volume
;
}
if
(
volume
>
100
)
volume
=
100
;
else
if
(
volume
<
0
)
volume
=
0
;
return
mixer_set_volume
(
mixer
,
volume
);
}
return
false
;
}
bool
mixer_control_getvol
(
unsigned
int
device
,
int
*
volume
)
{
struct
audio_output
*
output
;
struct
mixer
*
mixer
;
assert
(
device
<
audio_output_count
());
output
=
audio_output_get
(
device
);
if
(
!
output
->
enabled
)
return
false
;
mixer
=
ao_plugin_get_mixer
(
output
->
plugin
,
output
->
data
);
if
(
mixer
!=
NULL
)
{
int
volume2
;
volume2
=
mixer_get_volume
(
mixer
);
if
(
volume2
<
0
)
return
false
;
*
volume
=
volume2
;
return
true
;
}
return
false
;
}
src/mixer_control.h
View file @
8d01110c
...
...
@@ -22,10 +22,4 @@
#include <stdbool.h>
bool
mixer_control_setvol
(
unsigned
int
device
,
int
volume
,
int
rel
);
bool
mixer_control_getvol
(
unsigned
int
device
,
int
*
volume
);
#endif
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