summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libao2/ao_alsa.c8
-rw-r--r--libvo/vo_sdl.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/libao2/ao_alsa.c b/libao2/ao_alsa.c
index 4cb4470271..cd7b862728 100644
--- a/libao2/ao_alsa.c
+++ b/libao2/ao_alsa.c
@@ -192,7 +192,7 @@ static int control(int cmd, void *arg)
set_vol = vol->left / f_multi + pmin + 0.5;
//setting channels
- if ((err = snd_mixer_selem_set_playback_volume(elem, 0, set_vol)) < 0) {
+ if ((err = snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_LEFT, set_vol)) < 0) {
mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ErrorSettingLeftChannel,
snd_strerror(err));
return CONTROL_ERROR;
@@ -201,7 +201,7 @@ static int control(int cmd, void *arg)
set_vol = vol->right / f_multi + pmin + 0.5;
- if ((err = snd_mixer_selem_set_playback_volume(elem, 1, set_vol)) < 0) {
+ if ((err = snd_mixer_selem_set_playback_volume(elem, SND_MIXER_SCHN_FRONT_RIGHT, set_vol)) < 0) {
mp_msg(MSGT_AO,MSGL_ERR,MSGTR_AO_ALSA_ErrorSettingRightChannel,
snd_strerror(err));
return CONTROL_ERROR;
@@ -221,9 +221,9 @@ static int control(int cmd, void *arg)
}
}
else {
- snd_mixer_selem_get_playback_volume(elem, 0, &get_vol);
+ snd_mixer_selem_get_playback_volume(elem, SND_MIXER_SCHN_FRONT_LEFT, &get_vol);
vol->left = (get_vol - pmin) * f_multi;
- snd_mixer_selem_get_playback_volume(elem, 1, &get_vol);
+ snd_mixer_selem_get_playback_volume(elem, SND_MIXER_SCHN_FRONT_RIGHT, &get_vol);
vol->right = (get_vol - pmin) * f_multi;
mp_msg(MSGT_AO,MSGL_DBG2,"left=%f, right=%f\n",vol->left,vol->right);
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index 4fca181e24..8e3643970b 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -1120,7 +1120,7 @@ static void check_events (void)
{
struct sdl_priv_s *priv = &sdl_priv;
SDL_Event event;
- SDLKey keypressed = 0;
+ SDLKey keypressed = SDLK_UNKNOWN;
/* Poll the waiting SDL Events */
while ( SDL_PollEvent(&event) ) {