]> git.sesse.net Git - vlc/blob - modules/audio_output/portaudio.c
ALSA: report errors when, and simplify enumerating devices
[vlc] / modules / audio_output / portaudio.c
1 /*****************************************************************************
2  * portaudio.c : portaudio (v19) audio output plugin
3  *****************************************************************************
4  * Copyright (C) 2002, 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Frederic Ruget <frederic.ruget@free.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28
29 #ifdef HAVE_CONFIG_H
30 # include "config.h"
31 #endif
32
33 #include <vlc_common.h>
34 #include <vlc_plugin.h>
35 #include <vlc_aout.h>
36
37
38 #include <portaudio.h>
39
40 #define FRAME_SIZE 1024              /* The size is in samples, not in bytes */
41
42 #ifdef WIN32
43 #   define PORTAUDIO_IS_SERIOUSLY_BROKEN 1
44 #endif
45
46 /*****************************************************************************
47  * aout_sys_t: portaudio audio output method descriptor
48  *****************************************************************************/
49 typedef struct pa_thread_t
50 {
51     VLC_COMMON_MEMBERS
52     aout_instance_t *p_aout;
53
54     vlc_cond_t  wait;
55     vlc_mutex_t lock_wait;
56     bool  b_wait;
57     vlc_cond_t  signal;
58     vlc_mutex_t lock_signal;
59     bool  b_signal;
60
61 } pa_thread_t;
62
63 struct aout_sys_t
64 {
65     aout_instance_t *p_aout;
66     PaStream *p_stream;
67
68     PaDeviceIndex i_devices;
69     int i_sample_size;
70     PaDeviceIndex i_device_id;
71     const PaDeviceInfo *deviceInfo;
72
73     bool b_chan_reorder;              /* do we need channel reordering */
74     int pi_chan_table[AOUT_CHAN_MAX];
75     uint32_t i_channel_mask;
76     uint32_t i_bits_per_sample;
77     uint32_t i_channels;
78 };
79
80 static const uint32_t pi_channels_out[] =
81     { AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
82       AOUT_CHAN_CENTER, AOUT_CHAN_LFE,
83       AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_REARCENTER,
84       AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT, 0 };
85
86 #ifdef PORTAUDIO_IS_SERIOUSLY_BROKEN
87 static bool b_init = 0;
88 static pa_thread_t *pa_thread;
89 static void* PORTAUDIOThread( vlc_object_t * );
90 #endif
91
92 /*****************************************************************************
93  * Local prototypes.
94  *****************************************************************************/
95 static int  Open        ( vlc_object_t * );
96 static void Close       ( vlc_object_t * );
97 static void Play        ( aout_instance_t * );
98
99 static int PAOpenDevice( aout_instance_t * );
100 static int PAOpenStream( aout_instance_t * );
101
102 /*****************************************************************************
103  * Module descriptor
104  *****************************************************************************/
105 #define DEVICE_TEXT N_("Output device")
106 #define DEVICE_LONGTEXT N_("Portaudio identifier for the output device")
107
108 vlc_module_begin ()
109     set_shortname( "PortAudio" )
110     set_description( N_("PORTAUDIO audio output") )
111     set_category( CAT_AUDIO )
112     set_subcategory( SUBCAT_AUDIO_AOUT )
113     add_integer( "portaudio-audio-device", 0, NULL,
114                  DEVICE_TEXT, DEVICE_LONGTEXT, false )
115         add_deprecated_alias( "portaudio-device" )   /* deprecated since 0.9.3 */
116     set_capability( "audio output", 0 )
117     set_callbacks( Open, Close )
118 vlc_module_end ()
119
120 /* This routine will be called by the PortAudio engine when audio is needed.
121  * It may called at interrupt level on some machines so don't do anything
122  * that could mess up the system like calling malloc() or free().
123  */
124 static int paCallback( const void *inputBuffer, void *outputBuffer,
125                        unsigned long framesPerBuffer,
126                        const PaStreamCallbackTimeInfo *paDate,
127                        PaStreamCallbackFlags statusFlags, void *p_cookie )
128 {
129     VLC_UNUSED( inputBuffer ); VLC_UNUSED( statusFlags );
130
131     struct aout_sys_t *p_sys = (struct aout_sys_t*) p_cookie;
132     aout_instance_t   *p_aout = p_sys->p_aout;
133     aout_buffer_t     *p_buffer;
134     mtime_t out_date;
135
136     out_date = mdate() + (mtime_t) ( 1000000 *
137         ( paDate->outputBufferDacTime - paDate->currentTime ) );
138     p_buffer = aout_OutputNextBuffer( p_aout, out_date, true );
139
140     if ( p_buffer != NULL )
141     {
142         if( p_sys->b_chan_reorder )
143         {
144             /* Do the channel reordering here */
145             aout_ChannelReorder( p_buffer->p_buffer, p_buffer->i_buffer,
146                                  p_sys->i_channels, p_sys->pi_chan_table,
147                                  p_sys->i_bits_per_sample );
148         }
149         vlc_memcpy( outputBuffer, p_buffer->p_buffer,
150                     framesPerBuffer * p_sys->i_sample_size );
151         /* aout_BufferFree may be dangereous here, but then so is
152          * aout_OutputNextBuffer (calls aout_BufferFree internally).
153          * one solution would be to link the no longer useful buffers
154          * in a second fifo (in aout_OutputNextBuffer too) and to
155          * wait until we are in Play to do the actual free.
156          */
157         aout_BufferFree( p_buffer );
158     }
159     else
160         /* Audio output buffer shortage -> stop the fill process and wait */
161     {
162         vlc_memset( outputBuffer, 0, framesPerBuffer * p_sys->i_sample_size );
163     }
164     return 0;
165 }
166
167 /*****************************************************************************
168  * Open: open the audio device
169  *****************************************************************************/
170 static int Open( vlc_object_t * p_this )
171 {
172     aout_instance_t *p_aout = (aout_instance_t *)p_this;
173     struct aout_sys_t * p_sys;
174
175     msg_Dbg( p_aout, "entering Open()");
176
177     /* Allocate p_sys structure */
178     p_sys = malloc( sizeof(aout_sys_t) );
179     if( p_sys == NULL )
180         return VLC_ENOMEM;
181     p_sys->p_aout = p_aout;
182     p_sys->p_stream = 0;
183     p_aout->output.p_sys = p_sys;
184     p_aout->output.pf_play = Play;
185
186     /* Retrieve output device id from config */
187     p_sys->i_device_id = var_CreateGetInteger( p_aout, "portaudio-audio-device" );
188
189 #ifdef PORTAUDIO_IS_SERIOUSLY_BROKEN
190     if( !b_init )
191     {
192         int i_err;
193
194         /* Test device */
195         if( PAOpenDevice( p_aout ) != VLC_SUCCESS )
196         {
197             msg_Err( p_aout, "cannot open portaudio device" );
198             free( p_sys );
199             return VLC_EGENERIC;
200         }
201
202         /* Close device for now. We'll re-open it later on */
203         if( ( i_err = Pa_Terminate() ) != paNoError )
204         {
205             msg_Err( p_aout, "closing the device returned %d", i_err );
206         }
207
208         b_init = true;
209
210         /* Now we need to setup our DirectSound play notification structure */
211         pa_thread = vlc_object_create( p_aout, sizeof(pa_thread_t) );
212         pa_thread->p_aout = p_aout;
213         pa_thread->b_error = false;
214         vlc_mutex_init( &pa_thread->lock_wait );
215         vlc_cond_init( &pa_thread->wait );
216         pa_thread->b_wait = false;
217         vlc_mutex_init( &pa_thread->lock_signal );
218         vlc_cond_init( &pa_thread->signal );
219         pa_thread->b_signal = false;
220
221         /* Create PORTAUDIOThread */
222         if( vlc_thread_create( pa_thread, "aout", PORTAUDIOThread,
223                                VLC_THREAD_PRIORITY_OUTPUT ) )
224         {
225             msg_Err( p_aout, "cannot create PORTAUDIO thread" );
226             return VLC_EGENERIC;
227         }
228     }
229     else
230     {
231         pa_thread->p_aout = p_aout;
232         pa_thread->b_wait = false;
233         pa_thread->b_signal = false;
234         pa_thread->b_error = false;
235     }
236
237     /* Signal start of stream */
238     vlc_mutex_lock( &pa_thread->lock_signal );
239     pa_thread->b_signal = true;
240     vlc_cond_signal( &pa_thread->signal );
241     vlc_mutex_unlock( &pa_thread->lock_signal );
242
243     /* Wait until thread is ready */
244     vlc_mutex_lock( &pa_thread->lock_wait );
245     if( !pa_thread->b_wait )
246         vlc_cond_wait( &pa_thread->wait, &pa_thread->lock_wait );
247     vlc_mutex_unlock( &pa_thread->lock_wait );
248     pa_thread->b_wait = false;
249
250     if( pa_thread->b_error )
251     {
252         msg_Err( p_aout, "PORTAUDIO thread failed" );
253         Close( p_this );
254         return VLC_EGENERIC;
255     }
256
257     return VLC_SUCCESS;
258
259 #else
260
261     if( PAOpenDevice( p_aout ) != VLC_SUCCESS )
262     {
263         msg_Err( p_aout, "cannot open portaudio device" );
264         free( p_sys );
265         return VLC_EGENERIC;
266     }
267
268     if( PAOpenStream( p_aout ) != VLC_SUCCESS )
269     {
270         msg_Err( p_aout, "cannot open portaudio device" );
271     }
272
273     return VLC_SUCCESS;
274
275 #endif
276 }
277
278 /*****************************************************************************
279  * Close: close the audio device
280  *****************************************************************************/
281 static void Close ( vlc_object_t *p_this )
282 {
283     aout_instance_t *p_aout = (aout_instance_t *)p_this;
284     aout_sys_t *p_sys = p_aout->output.p_sys;
285
286     msg_Dbg( p_aout, "closing portaudio");
287
288 #ifdef PORTAUDIO_IS_SERIOUSLY_BROKEN
289
290     /* Signal end of stream */
291     vlc_mutex_lock( &pa_thread->lock_signal );
292     pa_thread->b_signal = true;
293     vlc_cond_signal( &pa_thread->signal );
294     vlc_mutex_unlock( &pa_thread->lock_signal );
295
296     /* Wait until thread is ready */
297     vlc_mutex_lock( &pa_thread->lock_wait );
298     if( !pa_thread->b_wait )
299         vlc_cond_wait( &pa_thread->wait, &pa_thread->lock_wait );
300     vlc_mutex_unlock( &pa_thread->lock_wait );
301     pa_thread->b_wait = false;
302
303 #else
304
305     int i_err = Pa_StopStream( p_sys->p_stream );
306     if( i_err != paNoError )
307     {
308         msg_Err( p_aout, "Pa_StopStream: %d (%s)", i_err,
309                  Pa_GetErrorText( i_err ) );
310     }
311     i_err = Pa_CloseStream( p_sys->p_stream );
312     if( i_err != paNoError )
313     {
314         msg_Err( p_aout, "Pa_CloseStream: %d (%s)", i_err,
315                  Pa_GetErrorText( i_err ) );
316     }
317
318     i_err = Pa_Terminate();
319     if( i_err != paNoError )
320     {
321         msg_Err( p_aout, "Pa_Terminate: %d (%s)", i_err,
322                  Pa_GetErrorText( i_err ) );
323     }
324
325 #endif
326
327     msg_Dbg( p_aout, "portaudio closed");
328     free( p_sys );
329 }
330
331 static int PAOpenDevice( aout_instance_t *p_aout )
332 {
333     aout_sys_t *p_sys = p_aout->output.p_sys;
334     const PaDeviceInfo *p_pdi;
335     PaError i_err;
336     vlc_value_t val, text;
337     int i;
338
339     /* Initialize portaudio */
340     i_err = Pa_Initialize();
341     if( i_err != paNoError )
342     {
343         msg_Err( p_aout, "Pa_Initialize returned %d : %s",
344                  i_err, Pa_GetErrorText( i_err ) );
345
346         return VLC_EGENERIC;
347     }
348
349     p_sys->i_devices = Pa_GetDeviceCount();
350     if( p_sys->i_devices < 0 )
351     {
352         i_err = p_sys->i_devices;
353         msg_Err( p_aout, "Pa_GetDeviceCount returned %d : %s", i_err,
354                  Pa_GetErrorText( i_err ) );
355
356         goto error;
357     }
358
359     /* Display all devices info */
360     msg_Dbg( p_aout, "number of devices = %d", p_sys->i_devices );
361     for( i = 0; i < p_sys->i_devices; i++ )
362     {
363         p_pdi = Pa_GetDeviceInfo( i );
364         msg_Dbg( p_aout, "------------------------------------- #%d", i );
365         msg_Dbg( p_aout, "Name         = %s", p_pdi->name );
366         msg_Dbg( p_aout, "Max Inputs   = %d, Max Outputs = %d",
367                   p_pdi->maxInputChannels, p_pdi->maxOutputChannels );
368     }
369     msg_Dbg( p_aout, "-------------------------------------" );
370
371     msg_Dbg( p_aout, "requested device is #%d", p_sys->i_device_id );
372     if( p_sys->i_device_id >= p_sys->i_devices )
373     {
374         msg_Err( p_aout, "device %d does not exist", p_sys->i_device_id );
375         goto error;
376     }
377     p_sys->deviceInfo = Pa_GetDeviceInfo( p_sys->i_device_id );
378
379     if( p_sys->deviceInfo->maxOutputChannels < 1 )
380     {
381         msg_Err( p_aout, "no channel available" );
382         goto error;
383     }
384
385     if( var_Type( p_aout, "audio-device" ) == 0 )
386     {
387         var_Create( p_aout, "audio-device", VLC_VAR_INTEGER|VLC_VAR_HASCHOICE);
388         text.psz_string = _("Audio Device");
389         var_Change( p_aout, "audio-device", VLC_VAR_SETTEXT, &text, NULL );
390
391         if( p_sys->deviceInfo->maxOutputChannels >= 1 )
392         {
393             val.i_int = AOUT_VAR_MONO;
394             text.psz_string = _("Mono");
395             var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE,
396                         &val, &text );
397             msg_Dbg( p_aout, "device supports 1 channel" );
398         }
399         if( p_sys->deviceInfo->maxOutputChannels >= 2 )
400         {
401             val.i_int = AOUT_VAR_STEREO;
402             text.psz_string = _("Stereo");
403             var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE,
404                         &val, &text );
405             var_Change( p_aout, "audio-device", VLC_VAR_SETDEFAULT,
406                         &val, NULL );
407             var_Set( p_aout, "audio-device", val );
408             msg_Dbg( p_aout, "device supports 2 channels" );
409         }
410         if( p_sys->deviceInfo->maxOutputChannels >= 4 )
411         {
412             val.i_int = AOUT_VAR_2F2R;
413             text.psz_string = _("2 Front 2 Rear");
414             var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE,
415                         &val, &text );
416             msg_Dbg( p_aout, "device supports 4 channels" );
417         }
418         if( p_sys->deviceInfo->maxOutputChannels >= 5 )
419         {
420             val.i_int = AOUT_VAR_3F2R;
421             text.psz_string = _("3 Front 2 Rear");
422             var_Change( p_aout, "audio-device",
423                         VLC_VAR_ADDCHOICE, &val, &text );
424             msg_Dbg( p_aout, "device supports 5 channels" );
425         }
426         if( p_sys->deviceInfo->maxOutputChannels >= 6 )
427         {
428             val.i_int = AOUT_VAR_5_1;
429             text.psz_string = _("5.1");
430             var_Change( p_aout, "audio-device", VLC_VAR_ADDCHOICE,
431                         &val, &text );
432             msg_Dbg( p_aout, "device supports 5.1 channels" );
433         }
434
435         var_AddCallback( p_aout, "audio-device", aout_ChannelsRestart, NULL );
436         var_SetBool( p_aout, "intf-change", true );
437     }
438
439     /* Audio format is paFloat32 (always supported by portaudio v19) */
440     p_aout->output.output.i_format = VLC_CODEC_FL32;
441
442     return VLC_SUCCESS;
443
444  error:
445     if( ( i_err = Pa_Terminate() ) != paNoError )
446     {
447         msg_Err( p_aout, "Pa_Terminate returned %d", i_err );
448     }
449     return VLC_EGENERIC;
450 }
451
452 static int PAOpenStream( aout_instance_t *p_aout )
453 {
454     aout_sys_t *p_sys = p_aout->output.p_sys;
455     const PaHostErrorInfo* paLastHostErrorInfo = Pa_GetLastHostErrorInfo();
456     PaStreamParameters paStreamParameters;
457     vlc_value_t val;
458     int i_channels, i_err;
459     uint32_t i_channel_mask;
460
461     if( var_Get( p_aout, "audio-device", &val ) < 0 )
462     {
463         return VLC_EGENERIC;
464     }
465
466     if( val.i_int == AOUT_VAR_5_1 )
467     {
468         p_aout->output.output.i_physical_channels
469             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
470               | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT
471               | AOUT_CHAN_LFE;
472     }
473     else if( val.i_int == AOUT_VAR_3F2R )
474     {
475         p_aout->output.output.i_physical_channels
476             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
477             | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
478     }
479     else if( val.i_int == AOUT_VAR_2F2R )
480     {
481         p_aout->output.output.i_physical_channels
482             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
483             | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
484     }
485     else if( val.i_int == AOUT_VAR_MONO )
486     {
487         p_aout->output.output.i_physical_channels = AOUT_CHAN_CENTER;
488     }
489     else
490     {
491         p_aout->output.output.i_physical_channels
492             = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
493     }
494
495     i_channels = aout_FormatNbChannels( &p_aout->output.output );
496     msg_Dbg( p_aout, "nb_channels requested = %d", i_channels );
497     i_channel_mask = p_aout->output.output.i_physical_channels;
498
499     /* Calculate the frame size in bytes */
500     p_sys->i_sample_size = 4 * i_channels;
501     p_aout->output.i_nb_samples = FRAME_SIZE;
502     aout_FormatPrepare( &p_aout->output.output );
503     aout_VolumeSoftInit( p_aout );
504
505     /* Check for channel reordering */
506     p_aout->output.p_sys->i_channel_mask = i_channel_mask;
507     p_aout->output.p_sys->i_bits_per_sample = 32; /* forced to paFloat32 */
508     p_aout->output.p_sys->i_channels = i_channels;
509
510     p_aout->output.p_sys->b_chan_reorder =
511         aout_CheckChannelReorder( NULL, pi_channels_out,
512                                   i_channel_mask, i_channels,
513                                   p_aout->output.p_sys->pi_chan_table );
514
515     if( p_aout->output.p_sys->b_chan_reorder )
516     {
517         msg_Dbg( p_aout, "channel reordering needed" );
518     }
519
520     paStreamParameters.device = p_sys->i_device_id;
521     paStreamParameters.channelCount = i_channels;
522     paStreamParameters.sampleFormat = paFloat32;
523     paStreamParameters.suggestedLatency =
524         p_sys->deviceInfo->defaultLowOutputLatency;
525     paStreamParameters.hostApiSpecificStreamInfo = NULL;
526
527     i_err = Pa_OpenStream( &p_sys->p_stream, NULL /* no input */,
528                 &paStreamParameters, (double)p_aout->output.output.i_rate,
529                 FRAME_SIZE, paClipOff, paCallback, p_sys );
530     if( i_err != paNoError )
531     {
532         msg_Err( p_aout, "Pa_OpenStream returns %d : %s", i_err,
533                  Pa_GetErrorText( i_err ) );
534         if( i_err == paUnanticipatedHostError )
535         {
536             msg_Err( p_aout, "type %d code %ld : %s",
537                      paLastHostErrorInfo->hostApiType,
538                      paLastHostErrorInfo->errorCode,
539                      paLastHostErrorInfo->errorText );
540         }
541         p_sys->p_stream = 0;
542         return VLC_EGENERIC;
543     }
544
545     i_err = Pa_StartStream( p_sys->p_stream );
546     if( i_err != paNoError )
547     {
548         msg_Err( p_aout, "Pa_StartStream() failed" );
549         Pa_CloseStream( p_sys->p_stream );
550         return VLC_EGENERIC;
551     }
552
553     return VLC_SUCCESS;
554 }
555
556 /*****************************************************************************
557  * Play: play sound
558  *****************************************************************************/
559 static void Play( aout_instance_t * p_aout )
560 {
561     VLC_UNUSED( p_aout );
562 }
563
564 #ifdef PORTAUDIO_IS_SERIOUSLY_BROKEN
565 /*****************************************************************************
566  * PORTAUDIOThread: all interactions with libportaudio.a are handled
567  * in this single thread.  Otherwise libportaudio.a is _not_ happy :-(
568  *****************************************************************************/
569 static void* PORTAUDIOThread( vlc_object_t *p_this )
570 {
571     pa_thread_t *pa_thread = (pa_thread_t*)p_this;
572     aout_instance_t *p_aout;
573     aout_sys_t *p_sys;
574     int i_err;
575     int canc = vlc_savecancel ();
576
577     while( vlc_object_alive (pa_thread) )
578     {
579         /* Wait for start of stream */
580         vlc_mutex_lock( &pa_thread->lock_signal );
581         if( !pa_thread->b_signal )
582             vlc_cond_wait( &pa_thread->signal, &pa_thread->lock_signal );
583         vlc_mutex_unlock( &pa_thread->lock_signal );
584         pa_thread->b_signal = false;
585
586         p_aout = pa_thread->p_aout;
587         p_sys = p_aout->output.p_sys;
588
589         if( PAOpenDevice( p_aout ) != VLC_SUCCESS )
590         {
591             msg_Err( p_aout, "cannot open portaudio device" );
592             pa_thread->b_error = true;
593         }
594
595         if( !pa_thread->b_error && PAOpenStream( p_aout ) != VLC_SUCCESS )
596         {
597             msg_Err( p_aout, "cannot open portaudio device" );
598             pa_thread->b_error = true;
599
600             i_err = Pa_Terminate();
601             if( i_err != paNoError )
602             {
603                 msg_Err( p_aout, "Pa_Terminate: %d (%s)", i_err,
604                          Pa_GetErrorText( i_err ) );
605             }
606         }
607
608         /* Tell the main thread that we are ready */
609         vlc_mutex_lock( &pa_thread->lock_wait );
610         pa_thread->b_wait = true;
611         vlc_cond_signal( &pa_thread->wait );
612         vlc_mutex_unlock( &pa_thread->lock_wait );
613
614         /* Wait for end of stream */
615         vlc_mutex_lock( &pa_thread->lock_signal );
616         if( !pa_thread->b_signal )
617             vlc_cond_wait( &pa_thread->signal, &pa_thread->lock_signal );
618         vlc_mutex_unlock( &pa_thread->lock_signal );
619         pa_thread->b_signal = false;
620
621         if( pa_thread->b_error ) continue;
622
623         i_err = Pa_StopStream( p_sys->p_stream );
624         if( i_err != paNoError )
625         {
626             msg_Err( p_aout, "Pa_StopStream: %d (%s)", i_err,
627                      Pa_GetErrorText( i_err ) );
628         }
629         i_err = Pa_CloseStream( p_sys->p_stream );
630         if( i_err != paNoError )
631         {
632             msg_Err( p_aout, "Pa_CloseStream: %d (%s)", i_err,
633                      Pa_GetErrorText( i_err ) );
634         }
635         i_err = Pa_Terminate();
636         if( i_err != paNoError )
637         {
638             msg_Err( p_aout, "Pa_Terminate: %d (%s)", i_err,
639                      Pa_GetErrorText( i_err ) );
640         }
641
642         /* Tell the main thread that we are ready */
643         vlc_mutex_lock( &pa_thread->lock_wait );
644         pa_thread->b_wait = true;
645         vlc_cond_signal( &pa_thread->wait );
646         vlc_mutex_unlock( &pa_thread->lock_wait );
647     }
648     vlc_restorecancel (canc);
649     return NULL;
650 }
651 #endif