diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2004-12-27 16:55:39 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2004-12-27 16:55:39 +0000 |
commit | 1b34510447e4e91a1075e15ec2d31161f5419fea (patch) | |
tree | 1ebc5d0d4d7bf6f2ae306bd42e2ee27c4a294325 | |
parent | 556b90bba8c84b624dba8c7286d413159252d291 (diff) | |
download | xine-lib-1b34510447e4e91a1075e15ec2d31161f5419fea.tar.gz xine-lib-1b34510447e4e91a1075e15ec2d31161f5419fea.tar.bz2 |
- and don't forget to set is_paused to 0 once we've resumed
CVS patchset: 7306
CVS date: 2004/12/27 16:55:39
-rw-r--r-- | src/audio_out/audio_alsa_out.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/audio_out/audio_alsa_out.c b/src/audio_out/audio_alsa_out.c index c0459d6e4..5f1823325 100644 --- a/src/audio_out/audio_alsa_out.c +++ b/src/audio_out/audio_alsa_out.c @@ -26,7 +26,7 @@ * (c) 2001 James Courtier-Dutton <James@superbug.demon.co.uk> * * - * $Id: audio_alsa_out.c,v 1.152 2004/12/27 16:49:28 hadess Exp $ + * $Id: audio_alsa_out.c,v 1.153 2004/12/27 16:55:39 hadess Exp $ */ #ifdef HAVE_CONFIG_H @@ -1057,7 +1057,9 @@ static int ao_alsa_ctrl(ao_driver_t *this_gen, int cmd, ...) { xprintf(this->class->xine, XINE_VERBOSITY_DEBUG, "audio_alsa_out: Resume call failed. (err=%d:%s)\n",err, snd_strerror(err)); this->has_pause_resume = 0; - } + } else { + this->is_paused = 0; + } } } break; |