]> git.sesse.net Git - vlc/blob - include/audio_output.h
o renommage arbitraire et totalitaire de idctmmx.S en vdec_idctmmx.S
[vlc] / include / audio_output.h
1 /*****************************************************************************
2  * audio_output.h : audio output thread interface
3  * (c)1999 VideoLAN
4  *****************************************************************************
5  * Required headers:
6  * - <sys/soundcard.h>                                       ( audio_buf_info )
7  * - "common.h"                                                   ( boolean_t )
8  * - "mtime.h"                                                      ( mtime_t )
9  * - "vlc_thread.h"                                            ( vlc_thread_t )
10  *****************************************************************************/
11
12 /* TODO :
13  *
14  * - Créer un flag destroy dans les fifos audio pour indiquer au thread audio
15  *   qu'il peut libérer la mémoire occupée par le buffer de la fifo lorsqu'il
16  *   le désire (fin du son ou fin du thread)
17  * - Redéplacer les #define dans config.h
18  *
19  */
20
21 /*
22  * Defines => "config.h"
23  */
24
25 /* Default output device. You probably should not change this. */
26 #define AOUT_DEFAULT_DEVICE     "/dev/dsp"
27
28 /* Default audio output format (AOUT_FMT_S16_NE = Native Endianess) */
29 #define AOUT_DEFAULT_FORMAT     AOUT_FMT_S16_NE
30
31 /* Default stereo mode (0 stands for mono, 1 for stereo) */
32 #define AOUT_DEFAULT_STEREO     1
33
34 /* Audio output rate, in Hz */
35 #define AOUT_MIN_RATE           22050 /* ?? */
36 #define AOUT_DEFAULT_RATE       44100
37 #define AOUT_MAX_RATE           48000
38
39 /* Number of audio output frames contained in an audio output fifo.
40  * (AOUT_FIFO_SIZE + 1) must be a power of 2, in order to optimise the
41  * %(AOUT_FIFO_SIZE + 1) operation with an &AOUT_FIFO_SIZE.
42  * With 511 we have at least 511*384/2/48000=2 seconds of sound */
43 #define AOUT_FIFO_SIZE          511
44
45 /* Maximum number of audio fifos. The value of AOUT_MAX_FIFOS should be a power
46  * of two, in order to optimize the '/AOUT_MAX_FIFOS' and '*AOUT_MAX_FIFOS'
47  * operations with '>>' and '<<' (gcc changes this at compilation-time) */
48 #define AOUT_MAX_FIFOS          2
49
50 /* Duration (in microseconds) of an audio output buffer should be :
51  * - short, in order to be able to play a new song very quickly (especially a
52  *   song from the interface)
53  * - long, in order to perform the buffer calculations as few as possible */
54 #define AOUT_BUFFER_DURATION    100000
55
56 /*
57  * Macros
58  */
59 #define AOUT_FIFO_ISEMPTY( fifo )       ( (fifo).l_end_frame == (fifo).i_start_frame )
60 #define AOUT_FIFO_ISFULL( fifo )        ( ((((fifo).l_end_frame + 1) - (fifo).l_start_frame) & AOUT_FIFO_SIZE) == 0 )
61
62 /*****************************************************************************
63  * aout_increment_t
64  *****************************************************************************
65  * This structure is used to keep the progression of an index up-to-date, in
66  * order to avoid rounding problems and heavy computations, as the function
67  * that handles this structure only uses additions.
68  *****************************************************************************/
69 typedef struct
70 {
71     /* The remainder is used to keep track of the fractional part of the
72      * index. */
73     long                l_remainder;
74
75     /*
76      * The increment structure is initialized with the result of an euclidean
77      * division :
78      *
79      *  l_euclidean_numerator                           l_euclidean_remainder
80      * ----------------------- = l_euclidean_integer + -----------------------
81      * l_euclidean_denominator                         l_euclidean_denominator
82      *
83      */
84     long                l_euclidean_integer;
85     long                l_euclidean_remainder;
86     long                l_euclidean_denominator;
87
88 } aout_increment_t;
89
90 /*****************************************************************************
91  * aout_fifo_t
92  *****************************************************************************/
93 typedef struct
94 {
95     /* See the fifo types below */
96     int                 i_type;
97     boolean_t           b_die;
98
99     int                 i_channels;
100     long                l_rate;
101
102     vlc_mutex_t         data_lock;
103     vlc_cond_t          data_wait;
104
105     long                l_frame_size;
106     void *              buffer;
107     mtime_t *           date;
108     /* The start frame is the first frame in the buffer that contains decoded
109      * audio data. It it also the first frame in the current timestamped frame
110      * area, ie the first dated frame in the decoded part of the buffer. :-p */
111     long                l_start_frame;
112     boolean_t           b_start_frame;
113     /* The next frame is the end frame of the current timestamped frame area,
114      * ie the first dated frame after the start frame. */
115     long                l_next_frame;
116     boolean_t           b_next_frame;
117     /* The end frame is the first frame, after the start frame, that doesn't
118      * contain decoded audio data. That's why the end frame is the first frame
119      * where the audio decoder can store its decoded audio frames. */
120     long                l_end_frame;
121
122     long                l_unit;
123     aout_increment_t    unit_increment;
124     /* The following variable is used to store the number of remaining audio
125      * units in the current timestamped frame area. */
126     long                l_units;
127
128 } aout_fifo_t;
129
130 #define AOUT_EMPTY_FIFO         0
131 #define AOUT_INTF_MONO_FIFO     1
132 #define AOUT_INTF_STEREO_FIFO   2
133 #define AOUT_ADEC_MONO_FIFO     3
134 #define AOUT_ADEC_STEREO_FIFO   4
135
136 /*****************************************************************************
137  * aout_thread_t : audio output thread descriptor
138  *****************************************************************************/
139 typedef int  (aout_sys_open_t)           ( p_aout_thread_t p_aout );
140 typedef int  (aout_sys_reset_t)          ( p_aout_thread_t p_aout );
141 typedef int  (aout_sys_setformat_t)      ( p_aout_thread_t p_aout );
142 typedef int  (aout_sys_setchannels_t)    ( p_aout_thread_t p_aout );
143 typedef int  (aout_sys_setrate_t)        ( p_aout_thread_t p_aout );
144 typedef long (aout_sys_getbufinfo_t)     ( p_aout_thread_t p_aout );
145 typedef void (aout_sys_playsamples_t)    ( p_aout_thread_t p_aout,
146                                            byte_t *buffer, int i_size );
147 typedef void (aout_sys_close_t)          ( p_aout_thread_t p_aout );
148
149 typedef struct aout_thread_s
150 {
151     vlc_thread_t        thread_id;
152     boolean_t           b_die;
153
154     vlc_mutex_t         fifos_lock;
155     aout_fifo_t         fifo[ AOUT_MAX_FIFOS ];
156
157     /* method-dependant functions */
158     aout_sys_open_t *           p_sys_open;
159     aout_sys_reset_t *          p_sys_reset;
160     aout_sys_setformat_t *      p_sys_setformat;
161     aout_sys_setchannels_t *    p_sys_setchannels;
162     aout_sys_setrate_t *        p_sys_setrate;
163     aout_sys_getbufinfo_t *     p_sys_getbufinfo;
164     aout_sys_playsamples_t *    p_sys_playsamples;
165     aout_sys_close_t *          p_sys_close;
166
167     void *              buffer;
168     /* The s32 buffer is used to mix all the audio fifos together before
169      * converting them and storing them in the audio output buffer */
170     s32 *               s32_buffer;
171
172     /* The size of the audio output buffer is kept in audio units, as this is
173      * the only unit that is common with every audio decoder and audio fifo */
174     long                l_units;
175     long                l_msleep;
176
177     /* date is the moment where the first audio unit of the output buffer
178      * will be played */
179     mtime_t             date;
180
181     /* Path to the audio output device (default is set to "/dev/dsp") */
182     char *              psz_device;
183     int                 i_fd;
184
185     /* Format of the audio output samples */
186     int                 i_format;
187     /* Number of channels */
188     int                 i_channels;
189     /* Rate and gain of the audio output sound (in Hz) */
190     long                l_rate;
191     long                l_gain;
192
193     /* there might be some useful private structure, such as audio_buf_info
194      * for the OSS output */
195     p_aout_sys_t        p_sys;
196
197 } aout_thread_t;
198
199 /* Output methods */
200 #define AOUT_DUMMY_METHOD       0x0000                 /* dummy video output */
201 #define AOUT_DSP_METHOD         0x0001                     /* linux /dev/dsp */
202
203 /* Get the fallback method */
204 #ifdef AUDIO_DSP
205 #define AOUT_DEFAULT_METHOD "dsp"
206 #endif
207
208 /* Those are from <linux/soundcard.h> but are needed because of formats
209  * on other platforms */
210 #define AOUT_FMT_U8          0x00000008
211 #define AOUT_FMT_S16_LE      0x00000010           /* Little endian signed 16 */
212 #define AOUT_FMT_S16_BE      0x00000020              /* Big endian signed 16 */
213 #define AOUT_FMT_S8          0x00000040
214 #define AOUT_FMT_U16_LE      0x00000080                 /* Little endian U16 */
215 #define AOUT_FMT_U16_BE      0x00000100                    /* Big endian U16 */
216
217 #if __BYTE_ORDER == __LITTLE_ENDIAN
218 #define AOUT_FMT_S16_NE      AOUT_FMT_S16_LE
219 #elif __BYTE_ORDER == __BIG_ENDIAN
220 #define AOUT_FMT_S16_NE      AOUT_FMT_S16_BE
221 #endif
222
223 /*****************************************************************************
224  * Prototypes
225  *****************************************************************************/
226 aout_thread_t * aout_CreateThread       ( int *pi_status );
227 void            aout_DestroyThread      ( aout_thread_t *p_aout, int *pi_status );
228
229
230 aout_fifo_t *   aout_CreateFifo         ( aout_thread_t *p_aout, aout_fifo_t *p_fifo );
231 void            aout_DestroyFifo        ( aout_fifo_t *p_fifo );