]> git.sesse.net Git - vlc/blob - modules/gui/qnx/aout.c
aout3 API change :
[vlc] / modules / gui / qnx / aout.c
1 /*****************************************************************************
2  * aout.c : QNX audio output
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  *
6  * Authors: Henri Fallon <henri@videolan.org>
7  *          Jon Lech Johansen <jon-vl@nanocrew.net>
8  *          Pascal Levesque <pascal.levesque@mindready.com>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <string.h>                                            /* strerror() */
30 #include <stdlib.h>                            /* calloc(), malloc(), free() */
31
32 #include <vlc/vlc.h>
33
34 #ifdef HAVE_ALLOCA_H
35 #   include <alloca.h>
36 #endif
37
38 #include <vlc/aout.h>
39 #include "aout_internal.h"
40
41 #include <sys/asoundlib.h>
42
43 struct aout_sys_t
44 {
45     snd_pcm_t  * p_pcm_handle;
46     int          i_card;
47     int          i_device;
48
49     byte_t *     p_silent_buffer;
50 };
51
52 #define DEFAULT_FRAME_SIZE 2048
53
54 /*****************************************************************************
55  * Local prototypes
56  *****************************************************************************/
57 int            E_(OpenAudio)    ( vlc_object_t *p_this );
58 void           E_(CloseAudio)   ( vlc_object_t *p_this );
59 static int     GetBufInfo       ( aout_instance_t * );
60 static void    Play             ( aout_instance_t * );
61 static int     QNXaoutThread    ( aout_instance_t * );
62
63 /*****************************************************************************
64  * Open : creates a handle and opens an alsa device
65  *****************************************************************************
66  * This function opens an alsa device, through the alsa API
67  *****************************************************************************/
68 int E_(OpenAudio)( vlc_object_t *p_this )
69 {
70     aout_instance_t *p_aout = (aout_instance_t *)p_this;
71     int i_ret;
72     int i_bytes_per_sample;
73     snd_pcm_channel_info_t pi;
74     snd_pcm_channel_params_t pp;
75     aout_instance_t *p_aout = (aout_instance_t *)p_this;
76
77     /* allocate structure */
78     p_aout->output.p_sys = malloc( sizeof( aout_sys_t ) );
79     if( p_aout->output.p_sys == NULL )
80     {
81         msg_Err( p_aout, "out of memory" );
82         return -1;
83     }
84
85     /* open audio device */
86     if( ( i_ret = snd_pcm_open_preferred( &p_aout->output.p_sys->p_pcm_handle,
87                                           &p_aout->output.p_sys->i_card,
88                                           &p_aout->output.p_sys->i_device,
89                                           SND_PCM_OPEN_PLAYBACK ) ) < 0 )
90     {
91         msg_Err( p_aout, "unable to open audio device (%s)",
92                          snd_strerror( i_ret ) );
93         free( p_aout->output.p_sys );
94         return -1;
95     }
96
97     /* disable mmap */
98     if( ( i_ret = snd_pcm_plugin_set_disable( p_aout->output.p_sys->p_pcm_handle,
99                                               PLUGIN_DISABLE_MMAP ) ) < 0 )
100     {
101         msg_Err( p_aout, "unable to disable mmap (%s)", snd_strerror(i_ret) );
102         E_(CloseAudio)( p_this );
103         free( p_aout->output.p_sys );
104         return -1;
105     }
106
107     p_aout->output.p_sys->p_silent_buffer = malloc( DEFAULT_FRAME_SIZE * 4 );
108     p_aout->output.pf_play = Play;
109
110     memset( &pi, 0, sizeof(pi) );
111     memset( &pp, 0, sizeof(pp) );
112
113     pi.channel = SND_PCM_CHANNEL_PLAYBACK;
114     if( ( i_ret = snd_pcm_plugin_info( p_aout->output.p_sys->p_pcm_handle,
115                                        &pi ) ) < 0 )
116     {
117         msg_Err( p_aout, "unable to get plugin info (%s)",
118                          snd_strerror( i_ret ) );
119         return -1;
120     }
121
122     pp.mode       = SND_PCM_MODE_BLOCK;
123     pp.channel    = SND_PCM_CHANNEL_PLAYBACK;
124     pp.start_mode = SND_PCM_START_FULL;
125     pp.stop_mode  = SND_PCM_STOP_STOP;
126
127     pp.buf.block.frags_max   = 3;
128     pp.buf.block.frags_min   = 1;
129
130     pp.format.interleave     = 1;
131     pp.format.rate           = p_aout->output.output.i_rate;
132     pp.format.voices         = p_aout->output.output.i_channels;
133
134     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
135     p_aout->output.i_nb_samples = DEFAULT_FRAME_SIZE;
136
137     switch( p_aout->output.output.i_format )
138     {
139         case AOUT_FMT_S16_LE:
140             pp.format.format = SND_PCM_SFMT_S16_LE;
141             i_bytes_per_sample = 2;
142             break;
143
144         default:
145             pp.format.format = SND_PCM_SFMT_S16_BE;
146             i_bytes_per_sample = 2;
147             break;
148     }
149
150     pp.buf.block.frag_size = p_aout->output.i_nb_samples *
151                             p_aout->output.output.i_channels *
152                             i_bytes_per_sample;
153
154     /* set parameters */
155     if( ( i_ret = snd_pcm_plugin_params( p_aout->output.p_sys->p_pcm_handle,
156                                          &pp ) ) < 0 )
157     {
158         msg_Err( p_aout, "unable to set parameters (%s)", snd_strerror(i_ret) );
159         return -1;
160     }
161
162     /* prepare channel */
163     if( ( i_ret = snd_pcm_plugin_prepare( p_aout->output.p_sys->p_pcm_handle,
164                                           SND_PCM_CHANNEL_PLAYBACK ) ) < 0 )
165     {
166         msg_Err( p_aout, "unable to prepare channel (%s)",
167                          snd_strerror( i_ret ) );
168         return -1;
169     }
170
171     /* Create audio thread and wait for its readiness. */
172     if( vlc_thread_create( p_aout, "aout", QNXaoutThread,
173                            VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
174     {
175         msg_Err( p_aout, "cannot create QNX audio thread (%s)", strerror(errno) );
176         E_(CloseAudio)( p_this );
177         free( p_aout->output.p_sys );
178         return -1;
179     }
180
181     return( 0 );
182 }
183
184 /*****************************************************************************
185  * GetBufInfo: buffer status query
186  *****************************************************************************
187  * This function returns the number of used byte in the queue.
188  * It also deals with errors : indeed if the device comes to run out
189  * of data to play, it switches to the "underrun" status. It has to
190  * be flushed and re-prepared
191  *****************************************************************************/
192 static int GetBufInfo( aout_instance_t *p_aout )
193 {
194     int i_ret;
195     snd_pcm_channel_status_t status;
196
197     /* get current pcm status */
198     memset( &status, 0, sizeof(status) );
199     if( ( i_ret = snd_pcm_plugin_status( p_aout->output.p_sys->p_pcm_handle,
200                                          &status ) ) < 0 )
201     {
202         msg_Err( p_aout, "unable to get device status (%s)",
203                          snd_strerror( i_ret ) );
204         return( -1 );
205     }
206
207     /* check for underrun */
208     switch( status.status )
209     {
210         case SND_PCM_STATUS_READY:
211         case SND_PCM_STATUS_UNDERRUN:
212             if( ( i_ret = snd_pcm_plugin_prepare( p_aout->output.p_sys->p_pcm_handle,
213                                           SND_PCM_CHANNEL_PLAYBACK ) ) < 0 )
214             {
215                 msg_Err( p_aout, "unable to prepare channel (%s)",
216                                  snd_strerror( i_ret ) );
217             }
218             break;
219     }
220
221     return( status.count );
222 }
223
224 /*****************************************************************************
225  * Play : plays a sample
226  *****************************************************************************
227  * Plays a sample using the snd_pcm_write function from the alsa API
228  *****************************************************************************/
229 static void Play( aout_instance_t *p_aout )
230 {
231 }
232
233 /*****************************************************************************
234  * CloseAudio: close the audio device
235  *****************************************************************************/
236 void E_(CloseAudio) ( vlc_object_t *p_this )
237 {
238     aout_instance_t *p_aout = (aout_instance_t *)p_this;
239     int i_ret;
240
241     p_aout->b_die = 1;
242     vlc_thread_join( p_aout );
243
244     if( ( i_ret = snd_pcm_close( p_aout->output.p_sys->p_pcm_handle ) ) < 0 )
245     {
246         msg_Err( p_aout, "unable to close audio device (%s)",
247                          snd_strerror( i_ret ) );
248     }
249
250     free( p_aout->output.p_sys->p_silent_buffer );
251     free( p_aout->output.p_sys );
252 }
253
254
255 /*****************************************************************************
256  * QNXaoutThread: asynchronous thread used to DMA the data to the device
257  *****************************************************************************/
258 static int QNXaoutThread( aout_instance_t * p_aout )
259 {
260     struct aout_sys_t * p_sys = p_aout->output.p_sys;
261
262     while ( !p_aout->b_die )
263     {
264         aout_buffer_t * p_buffer;
265         int i_tmp, i_size;
266         byte_t * p_bytes;
267
268         if ( p_aout->output.output.i_format != AOUT_FMT_SPDIF )
269         {
270             mtime_t next_date = 0;
271
272             /* Get the presentation date of the next write() operation. It
273              * is equal to the current date + duration of buffered samples.
274              * Order is important here, since GetBufInfo is believed to take
275              * more time than mdate(). */
276             next_date = (mtime_t)GetBufInfo( p_aout ) * 1000000
277                       / p_aout->output.output.i_bytes_per_frame
278                       / p_aout->output.output.i_rate
279                       * p_aout->output.output.i_frame_length;
280             next_date += mdate();
281
282             p_buffer = aout_OutputNextBuffer( p_aout, next_date, VLC_FALSE );
283         }
284         else
285         {
286             p_buffer = aout_OutputNextBuffer( p_aout, 0, VLC_TRUE );
287         }
288
289         if ( p_buffer != NULL )
290         {
291             p_bytes = p_buffer->p_buffer;
292             i_size = p_buffer->i_nb_bytes;
293         }
294         else
295         {
296             i_size = DEFAULT_FRAME_SIZE / p_aout->output.output.i_frame_length
297                       * p_aout->output.output.i_bytes_per_frame;
298             p_bytes = p_aout->output.p_sys->p_silent_buffer;
299             memset( p_bytes, 0, i_size );
300         }
301
302         i_tmp = snd_pcm_plugin_write( p_aout->output.p_sys->p_pcm_handle,
303                                         (void *) p_bytes,
304                                         (size_t) i_size );
305
306         if( i_tmp < 0 )
307         {
308             msg_Err( p_aout, "write failed (%s)", strerror(errno) );
309         }
310
311         if ( p_buffer != NULL )
312         {
313             aout_BufferFree( p_buffer );
314         }
315     }
316
317     return 0;
318 }
319