diff options
Diffstat (limited to 'src/xine-engine/audio_decoder.c')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index cdd73ec6b..8b947856b 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.9 2001/05/24 23:15:40 f1rmb Exp $ + * $Id: audio_decoder.c,v 1.10 2001/05/28 12:08:20 f1rmb Exp $ * * * functions that implement audio decoding @@ -155,6 +155,21 @@ void *audio_decoder_loop (void *this_gen) { } } + else { + /* No audio driver loaded */ + pthread_mutex_lock (&this->xine_lock); + + this->audio_finished = 1; + + if (this->video_finished) { + pthread_mutex_unlock (&this->xine_lock); + xine_notify_stream_finished (this); + } else + pthread_mutex_unlock (&this->xine_lock); + + pthread_exit(NULL); + } + buf->free_buffer (buf); } |