]> git.sesse.net Git - vlc/blob - modules/audio_output/arts.c
36939a8ac3ea9bf764a4a49a0933991bf9edada7
[vlc] / modules / audio_output / arts.c
1 /*****************************************************************************
2  * arts.c : aRts module
3  *****************************************************************************
4  * Copyright (C) 2001-2002 VideoLAN (Centrale Réseaux) and its contributors
5  * $Id$
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
62 /*****************************************************************************
63  * Module descriptor
64  *****************************************************************************/
65 vlc_module_begin();
66    set_shortname( "aRts" );
67    set_description( _("aRts audio output") );
68    set_capability( "audio output", 50 );
69     set_category( CAT_AUDIO );
70     set_subcategory( SUBCAT_AUDIO_AOUT );
71    set_callbacks( Open, Close );
72 vlc_module_end();
73
74 /*****************************************************************************
75  * Open: open an aRts socket
76  *****************************************************************************/
77 static int Open( vlc_object_t *p_this )
78 {
79     aout_instance_t *p_aout = (aout_instance_t *)p_this;
80     struct aout_sys_t * p_sys;
81     int i_err;
82     int i_nb_channels;
83
84     /* Allocate structure */
85     p_sys = malloc( sizeof( aout_sys_t ) );
86     if( p_sys == NULL )
87     {
88         msg_Err( p_aout, "out of memory" );
89         return VLC_ENOMEM;
90     }
91     p_aout->output.p_sys = p_sys;
92
93     i_err = arts_init();
94
95     if( i_err < 0 )
96     {
97         msg_Err( p_aout, "arts_init failed (%s)", arts_error_text(i_err) );
98         free( p_sys );
99         return VLC_EGENERIC;
100     }
101
102     p_aout->output.pf_play = Play;
103     aout_VolumeSoftInit( p_aout );
104
105     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
106     i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
107     if ( i_nb_channels > 2 )
108     {
109         /* aRts doesn't support more than two channels. */
110         i_nb_channels = 2;
111         p_aout->output.output.i_physical_channels =
112             AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
113     }
114
115     /* Open a socket for playing a stream, set format to 16 bits */
116     p_sys->stream = arts_play_stream( p_aout->output.output.i_rate, 16,
117                                       i_nb_channels, "vlc" );
118     if( p_sys->stream == NULL )
119     {
120         msg_Err( p_aout, "cannot open aRts socket" );
121         free( p_sys );
122         return VLC_EGENERIC;
123     }
124
125     /* Try not to bufferize more than 200 ms */
126     arts_stream_set( p_sys->stream, ARTS_P_BUFFER_TIME, 50 );
127
128     /* Estimate latency with a half full buffer */
129     p_sys->latency = (mtime_t)1000
130        * (mtime_t)arts_stream_get( p_sys->stream, ARTS_P_SERVER_LATENCY );
131     p_sys->i_size = arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE );
132
133     msg_Dbg( p_aout, "aRts initialized, latency %i000, %i packets of size %i",
134                      arts_stream_get( p_sys->stream, ARTS_P_SERVER_LATENCY ),
135                      arts_stream_get( p_sys->stream, ARTS_P_PACKET_COUNT ),
136                      arts_stream_get( p_sys->stream, ARTS_P_PACKET_SIZE ) );
137
138     p_aout->output.i_nb_samples = p_sys->i_size / sizeof(uint16_t)
139                                                 / i_nb_channels;
140
141     return VLC_SUCCESS;
142 }
143
144 /*****************************************************************************
145  * Play: nothing to do
146  *****************************************************************************/
147 static void Play( aout_instance_t *p_aout )
148 {
149     struct aout_sys_t * p_sys = p_aout->output.p_sys;
150     aout_buffer_t * p_buffer;
151     int i_tmp;
152
153 #if 0
154     while( arts_stream_get( p_sys->stream, ARTS_P_BUFFER_SPACE ) < 16384*3/2 )
155     {
156         msleep( 10000 );
157     }
158 #endif
159
160     p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
161
162     if( p_buffer != NULL )
163     {
164         i_tmp = arts_write( p_sys->stream, p_buffer->p_buffer,
165                                            p_buffer->i_nb_bytes );
166
167         if( i_tmp < 0 )
168         {
169             msg_Err( p_aout, "write failed (%s)", arts_error_text(i_tmp) );
170         }
171
172         aout_BufferFree( p_buffer );
173     }
174 }
175
176 /*****************************************************************************
177  * Close: close the aRts socket
178  *****************************************************************************/
179 static void Close( vlc_object_t *p_this )
180 {
181     aout_instance_t *p_aout = (aout_instance_t *)p_this;
182     struct aout_sys_t * p_sys = p_aout->output.p_sys;
183
184     arts_close_stream( p_sys->stream );
185     arts_free();
186     free( p_sys );
187 }
188