diff options
author | Matthias Kretz <kretz@kde.org> | 2007-06-04 21:18:49 +0200 |
---|---|---|
committer | Matthias Kretz <kretz@kde.org> | 2007-06-04 21:18:49 +0200 |
commit | 24b7171dff5bdbb05dd7ab343e718814aaba9186 (patch) | |
tree | 505eb8afa440cf87ae25ca0bf91437c24e930e4a /src/xine-engine/audio_out.c | |
parent | a3571c71d767bd68f7245a46dae1d8f04a91eff9 (diff) | |
download | xine-lib-24b7171dff5bdbb05dd7ab343e718814aaba9186.tar.gz xine-lib-24b7171dff5bdbb05dd7ab343e718814aaba9186.tar.bz2 |
handle unplugged devices in audio_alsa_out (return -1) and in audio_out close the driver on a return value <0
Diffstat (limited to 'src/xine-engine/audio_out.c')
-rw-r--r-- | src/xine-engine/audio_out.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/xine-engine/audio_out.c b/src/xine-engine/audio_out.c index 66e28d80d..2655d495a 100644 --- a/src/xine-engine/audio_out.c +++ b/src/xine-engine/audio_out.c @@ -1211,13 +1211,15 @@ static void *ao_loop (void *this_gen) { } if( result < 0 ) { - /* FIXME: USB device unplugged. - * We should get the card into a closed state here, that involves closing - * the PCM as well as the MIXER. - * Maybe we should pause the stream until the USB device is plugged in again. - * Return values 0 happen even if usb not unplugged, so needs further investigation. - */ - xprintf(this->xine, XINE_VERBOSITY_LOG, _("write to sound card failed. Was a USB device unplugged ?\n")); + /* device unplugged. */ + xprintf(this->xine, XINE_VERBOSITY_LOG, _("write to sound card failed. Assuming the device was unplugged.\n")); + + pthread_mutex_lock( &this->driver_lock ); + if(this->driver_open) + this->driver->close(this->driver); + this->driver_open = 0; + pthread_mutex_unlock( &this->driver_lock ); + /* closing the driver will result in XINE_MSG_AUDIO_OUT_UNAVAILABLE to be emitted */ } lprintf ("loop: next buf from fifo\n"); |