]> git.sesse.net Git - vlc/blob - modules/audio_output/arts.c
e24c08a955b399dd3f3c6c7279337151082dda4d
[vlc] / modules / audio_output / arts.c
1 /*****************************************************************************
2  * arts.c : aRts module
3  *****************************************************************************
4  * Copyright (C) 2001-2002 VideoLAN
5  * $Id: arts.c,v 1.13 2002/10/04 18:07:21 sam Exp $
6  *
7  * Authors: Emmanuel Blindauer <manu@agat.net>
8  *          Samuel Hocevar <sam@zoy.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <errno.h>                                                 /* ENOMEM */
29 #include <fcntl.h>                                       /* open(), O_WRONLY */
30 #include <string.h>                                            /* strerror() */
31 #include <unistd.h>                                      /* write(), close() */
32 #include <stdlib.h>                            /* calloc(), malloc(), free() */
33
34 #include <vlc/vlc.h>
35 #include <vlc/aout.h>
36
37 #include "aout_internal.h"
38
39 #include <artsc.h>
40
41 /*****************************************************************************
42  * aout_sys_t: arts audio output method descriptor
43  *****************************************************************************
44  * This structure is part of the audio output thread descriptor.
45  * It describes some arts specific variables.
46  *****************************************************************************/
47 struct aout_sys_t
48 {
49     arts_stream_t stream;
50
51     mtime_t       latency;
52     int           i_size;
53 };
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static int  Open         ( vlc_object_t * );
59 static void Close        ( vlc_object_t * );
60 static void Play         ( aout_instance_t * );
61 static int  aRtsThread   ( aout_instance_t * );
62
63 /*****************************************************************************
64  * Module descriptor
65  *****************************************************************************/
66 vlc_module_begin();
67    set_description( _("aRts audio module") );
68    set_capability( "audio output", 50 );
69    set_callbacks( Open, Close );
70 vlc_module_end();
71
72 /*****************************************************************************
73  * Open: open an aRts socket
74  *****************************************************************************/
75 static int Open( vlc_object_t *p_this )
76 {
77     aout_instance_t *p_aout = (aout_instance_t *)p_this;
78     struct aout_sys_t * p_sys;
79     int i_err;
80
81     /* Allocate structure */
82     p_sys = malloc( sizeof( aout_sys_t ) );
83     if( p_sys == NULL )
84     {
85         msg_Err( p_aout, "out of memory" );
86         return -1;
87     }
88     p_aout->output.p_sys = p_sys;
89
90     i_err = arts_init();
91     
92     if (i_err < 0)
93     {
94         msg_Err( p_aout, "arts_init failed (%s)", arts_error_text(i_err) );
95         free( p_sys );
96         return -1;
97     }
98
99     p_aout->output.pf_play = Play;
100     aout_VolumeSoftInit( p_aout );
101
102     p_sys->stream = NULL;
103
104     if( p_sys->stream )
105     {
106         arts_close_stream( p_sys->stream );
107     }
108
109     /* Open a socket for playing a stream, set format to 16 bits */
110     p_sys->stream = arts_play_stream( p_aout->output.output.i_rate, 16,
111                                       p_aout->output.output.i_channels, "vlc" );
112     if( p_sys->stream == NULL )
113     {
114         msg_Err( p_aout, "cannot open aRts socket" );
115         return -1;
116     }
117
118     /* Try not to bufferize more than 200 ms */
119     arts_stream_set( p_sys->stream, ARTS_P_BUFFER_TIME, 50 );
120
121     /* Estimate latency with a half full buffer */
122     p_sys->latency = (mtime_t)1000
123        * (mtime_t)arts_stream_get( p_sys->stream, ARTS_P_SERVER_LATENCY );
124     p_sys->i_size = arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE );
125
126     msg_Dbg( p_aout, "aRts initialized, latency %i000, %i packets of size %i",
127                      arts_stream_get( p_sys->stream, ARTS_P_SERVER_LATENCY ),
128                      arts_stream_get( p_sys->stream, ARTS_P_PACKET_COUNT ),
129                      arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE ) );
130
131     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
132     p_aout->output.i_nb_samples = p_sys->i_size
133                                    / sizeof(u16)
134                                    / p_aout->output.output.i_channels;
135
136     /* Create aRts thread and wait for its readiness. */
137     if( vlc_thread_create( p_aout, "aout", aRtsThread,
138                            VLC_THREAD_PRIORITY_OUTPUT, VLC_FALSE ) )
139     {
140         msg_Err( p_aout, "cannot create aRts thread (%s)", strerror(errno) );
141         free( p_sys );
142         return -1;
143     }
144
145     return 0;
146 }
147
148 /*****************************************************************************
149  * Play: nothing to do
150  *****************************************************************************/
151 static void Play( aout_instance_t *p_aout )
152 {
153     ;
154 }
155
156 /*****************************************************************************
157  * Close: close the aRts socket
158  *****************************************************************************/
159 static void Close( vlc_object_t *p_this )
160 {
161     aout_instance_t *p_aout = (aout_instance_t *)p_this;
162     struct aout_sys_t * p_sys = p_aout->output.p_sys;
163
164     p_aout->b_die = 1;
165     vlc_thread_join( p_aout );
166
167     if( p_sys->stream )
168     {
169         arts_close_stream( p_sys->stream );
170     }
171
172     arts_free();
173     free( p_sys );
174 }
175
176 /*****************************************************************************
177  * aRtsThread: asynchronous thread used to DMA the data to the device
178  *****************************************************************************/
179 static int aRtsThread( aout_instance_t * p_aout )
180 {
181     struct aout_sys_t * p_sys = p_aout->output.p_sys;
182 mtime_t calldate = mdate();
183
184     while ( !p_aout->b_die )
185     {
186         aout_buffer_t * p_buffer;
187         int i_tmp, i_size;
188         byte_t * p_bytes;
189
190 fprintf(stderr, "can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) );
191 while( arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) < 16384*3/2 )
192 {
193 fprintf(stderr, "sleep\n");
194     msleep( 10000 );
195 }
196 fprintf(stderr, "after sleep: can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) );
197
198         /* Get the presentation date of the next write() operation. It
199          * is equal to the current date + latency */
200         p_buffer = aout_OutputNextBuffer( p_aout, mdate() + p_sys->latency / 4,
201                                                   VLC_TRUE );
202
203         if ( p_buffer != NULL )
204         {
205 fprintf(stderr, "buffer duration %lld, bytes %i\n", p_buffer->end_date - p_buffer->start_date, p_buffer->i_nb_bytes);
206             p_bytes = p_buffer->p_buffer;
207             i_size = p_buffer->i_nb_bytes;
208         }
209         else
210         {
211             i_size = p_sys->i_size;
212             p_bytes = malloc( i_size );
213             memset( p_bytes, 0, i_size );
214         }
215
216 fprintf(stderr, "WRITING %i bytes\n", i_size);
217         i_tmp = arts_write( p_sys->stream, p_bytes, i_size );
218 fprintf(stderr, "mdate: %lld\n", mdate() - calldate);
219 calldate = mdate();
220 fprintf(stderr, "can write %i\n", arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) );
221
222         if( i_tmp < 0 )
223         {
224             msg_Err( p_aout, "write failed (%s)", arts_error_text(i_tmp) );
225         }
226
227         if ( p_buffer != NULL )
228         {
229             aout_BufferFree( p_buffer );
230         }
231         else
232         {
233             free( p_bytes );
234         }
235     }
236
237     return 0;
238 }
239