]> git.sesse.net Git - vlc/blob - modules/audio_output/esd.c
Improvements to preferences
[vlc] / modules / audio_output / esd.c
1 /*****************************************************************************
2  * esd.c : EsounD module
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id$
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <errno.h>                                                 /* ENOMEM */
28 #include <fcntl.h>                                       /* open(), O_WRONLY */
29 #include <string.h>                                            /* strerror() */
30 #include <unistd.h>                                      /* write(), close() */
31 #include <stdlib.h>                            /* calloc(), malloc(), free() */
32
33 #include <vlc/vlc.h>
34 #include <vlc/aout.h>
35 #include "aout_internal.h"
36
37 #include <sys/socket.h>
38
39 #include <esd.h>
40
41 /*****************************************************************************
42  * aout_sys_t: esd audio output method descriptor
43  *****************************************************************************
44  * This structure is part of the audio output thread descriptor.
45  * It describes some esd specific variables.
46  *****************************************************************************/
47 struct aout_sys_t
48 {
49     esd_format_t esd_format;
50     int          i_fd;
51
52     mtime_t      latency;       /* unused, but we might do something with it */
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_description( _("EsounD audio output") );
67     set_capability( "audio output", 50 );
68     set_category( CAT_AUDIO );
69     set_subcategory( SUBCAT_AUDIO_AOUT );
70     set_callbacks( Open, Close );
71     add_shortcut( "esound" );
72 vlc_module_end();
73
74 /*****************************************************************************
75  * Open: open an esd 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_nb_channels;
82     int i_newfd = -1;
83     int fl;
84
85     /* Allocate structure */
86     p_sys = malloc( sizeof( aout_sys_t ) );
87     if( p_sys == NULL )
88     {
89         msg_Err( p_aout, "out of memory" );
90         return VLC_ENOMEM;
91     }
92
93     p_aout->output.p_sys = p_sys;
94
95     p_aout->output.pf_play = Play;
96     aout_VolumeSoftInit( p_aout );
97
98     /* Initialize some variables */
99     p_sys->esd_format = ESD_BITS16 | ESD_STREAM | ESD_PLAY;
100     p_sys->esd_format &= ~ESD_MASK_CHAN;
101
102     p_aout->output.output.i_format = AOUT_FMT_S16_NE;
103     i_nb_channels = aout_FormatNbChannels( &p_aout->output.output );
104     if ( i_nb_channels > 2 )
105     {
106         /* EsounD doesn't support more than two channels. */
107         i_nb_channels = 2;
108         p_aout->output.output.i_physical_channels =
109             AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
110     }
111
112     switch( i_nb_channels )
113     {
114     case 1:
115         p_sys->esd_format |= ESD_MONO;
116         break;
117     case 2:
118         p_sys->esd_format |= ESD_STEREO;
119         break;
120     }
121
122     /* Force the rate, otherwise the sound is very noisy */
123     p_aout->output.output.i_rate = ESD_DEFAULT_RATE;
124
125     /* open a socket for playing a stream
126      * and try to open /dev/dsp if there's no EsounD */
127     p_sys->i_fd = esd_play_stream_fallback( p_sys->esd_format,
128                               p_aout->output.output.i_rate, NULL, "vlc" );
129     if( p_sys->i_fd < 0 )
130     {
131         msg_Err( p_aout, "cannot open esound socket (format 0x%08x at %d Hz)",
132                          p_sys->esd_format, p_aout->output.output.i_rate );
133         free( p_sys );
134         return VLC_EGENERIC;
135     }
136
137     p_aout->output.i_nb_samples = ESD_BUF_SIZE * 2;
138
139     /* ESD latency is calculated for 44100 Hz. We don't have any way to get the
140      * number of buffered samples, so I assume ESD_BUF_SIZE/2 */
141     p_sys->latency =
142         (mtime_t)( esd_get_latency( i_newfd = esd_open_sound(NULL) ) +
143                       ESD_BUF_SIZE/2
144                     * p_aout->output.output.i_bytes_per_frame
145                     * p_aout->output.output.i_rate
146                     / ESD_DEFAULT_RATE )
147       * (mtime_t)1000000
148       / p_aout->output.output.i_bytes_per_frame
149       / p_aout->output.output.i_rate;
150
151     close( i_newfd );
152     return VLC_SUCCESS;
153 }
154
155 /*****************************************************************************
156  * Play: nothing to do
157  *****************************************************************************/
158 static void Play( aout_instance_t *p_aout )
159 {
160     struct aout_sys_t * p_sys = p_aout->output.p_sys;
161     aout_buffer_t * p_buffer;
162     int i_tmp;
163
164     p_buffer = aout_FifoPop( p_aout, &p_aout->output.fifo );
165
166     if ( p_buffer != NULL )
167     {
168         int pos;
169         char *data = p_buffer->p_buffer;
170
171         for( pos = 0; pos + ESD_BUF_SIZE <= p_buffer->i_nb_bytes; 
172              pos += ESD_BUF_SIZE )
173         {
174             i_tmp = write( p_sys->i_fd, data + pos, ESD_BUF_SIZE );
175             if( i_tmp < 0 )
176             {
177                 msg_Err( p_aout, "write failed (%s)", strerror(errno) );
178             }
179         }
180         aout_BufferFree( p_buffer );
181     }
182 }
183
184 /*****************************************************************************
185  * Close: close the Esound socket
186  *****************************************************************************/
187 static void Close( vlc_object_t *p_this )
188 {
189     aout_instance_t *p_aout = (aout_instance_t *)p_this;
190     struct aout_sys_t * p_sys = p_aout->output.p_sys;
191
192     close( p_sys->i_fd );
193     free( p_sys );
194 }
195
196 #if 0
197 /*****************************************************************************
198  * Play: play a sound samples buffer
199  *****************************************************************************
200  * This function writes a buffer of i_length bytes in the socket
201  *****************************************************************************/
202 static void Play( aout_thread_t *p_aout, byte_t *buffer, int i_size )
203 {
204     int i_amount;
205
206     int m1 = p_aout->output.p_sys->esd_format & ESD_STEREO ? 1 : 2;
207     int m2 = p_aout->output.p_sys->esd_format & ESD_BITS16 ? 64 : 128;
208
209     i_amount = (m1 * 44100 * (ESD_BUF_SIZE + m1 * m2)) / p_aout->i_rate;
210
211     write( p_aout->output.p_sys->i_fd, buffer, i_size );
212 }
213 #endif
214