]> git.sesse.net Git - vlc/blob - include/audio_output.h
* Major API change of the audio output. New aout_Dec* functions.
[vlc] / include / audio_output.h
1 /*****************************************************************************
2  * audio_output.h : audio output interface
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: audio_output.h,v 1.67 2002/09/26 22:40:18 massiot Exp $
6  *
7  * Authors: Christophe Massiot <massiot@via.ecp.fr>
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  * audio_sample_format_t
26  *****************************************************************************
27  * This structure defines a format for audio samples.
28  *****************************************************************************/
29 struct audio_sample_format_t
30 {
31     int                 i_format;
32     int                 i_rate;
33     int                 i_channels;
34     /* Optional - for A52, SPDIF and DTS types */
35     int                 i_bytes_per_frame;
36     int                 i_frame_length;
37     /* Please note that it may be completely arbitrary - buffers are not
38      * obliged to contain a integral number of so-called "frames". It's
39      * just here for the division :
40      * i_nb_samples * i_bytes_per_frame / i_frame_length */
41 };
42
43 #define AOUT_FMT_MU_LAW     0x00000001
44 #define AOUT_FMT_A_LAW      0x00000002
45 #define AOUT_FMT_IMA_ADPCM  0x00000004
46 #define AOUT_FMT_U8         0x00000008
47 #define AOUT_FMT_S16_LE     0x00000010            /* Little endian signed 16 */
48 #define AOUT_FMT_S16_BE     0x00000020               /* Big endian signed 16 */
49 #define AOUT_FMT_S8         0x00000040
50 #define AOUT_FMT_U16_LE     0x00000080                  /* Little endian U16 */
51 #define AOUT_FMT_U16_BE     0x00000100                     /* Big endian U16 */
52 #define AOUT_FMT_SPDIF      0x00000400            /* S/PDIF hardware support */
53 #define AOUT_FMT_FLOAT32    0x00010000
54 #define AOUT_FMT_FIXED32    0x00020000
55 #define AOUT_FMT_A52        0x00100000
56 #define AOUT_FMT_DTS        0x00200000
57
58 #define AOUT_FMTS_IDENTICAL( p_first, p_second ) (                          \
59     ((p_first)->i_format == (p_second)->i_format)                           \
60       && ((p_first)->i_rate == (p_second)->i_rate)                          \
61       && ((p_first)->i_channels == (p_second)->i_channels                   \
62            || (p_first)->i_channels == -1 || (p_second)->i_channels == -1) )
63
64 /* Check if i_rate == i_rate and i_channels == i_channels */
65 #define AOUT_FMTS_SIMILAR( p_first, p_second ) (                            \
66     ((p_first)->i_rate == (p_second)->i_rate)                               \
67       && ((p_first)->i_channels == (p_second)->i_channels                   \
68            || (p_first)->i_channels == -1 || (p_second)->i_channels == -1) )
69
70 #ifdef WORDS_BIGENDIAN
71 #   define AOUT_FMT_S16_NE AOUT_FMT_S16_BE
72 #   define AOUT_FMT_U16_NE AOUT_FMT_U16_BE
73 #else
74 #   define AOUT_FMT_S16_NE AOUT_FMT_S16_LE
75 #   define AOUT_FMT_U16_NE AOUT_FMT_U16_LE
76 #endif
77
78 #define AOUT_FMT_NON_LINEAR( p_format )                                    \
79     ( ((p_format)->i_format == AOUT_FMT_SPDIF)                             \
80        || ((p_format)->i_format == AOUT_FMT_A52)                           \
81        || ((p_format)->i_format == AOUT_FMT_DTS) )
82
83 /* This is heavily borrowed from libmad, by Robert Leslie <rob@mars.org> */
84 /*
85  * Fixed-point format: 0xABBBBBBB
86  * A == whole part      (sign + 3 bits)
87  * B == fractional part (28 bits) 
88  *
89  * Values are signed two's complement, so the effective range is:
90  * 0x80000000 to 0x7fffffff
91  *       -8.0 to +7.9999999962747097015380859375
92  *
93  * The smallest representable value is:
94  * 0x00000001 == 0.0000000037252902984619140625 (i.e. about 3.725e-9)
95  *
96  * 28 bits of fractional accuracy represent about
97  * 8.6 digits of decimal accuracy.
98  * 
99  * Fixed-point numbers can be added or subtracted as normal
100  * integers, but multiplication requires shifting the 64-bit result
101  * from 56 fractional bits back to 28 (and rounding.)
102  */
103 typedef s32 vlc_fixed_t;
104 #define FIXED32_FRACBITS 28
105 #define FIXED32_MIN ((vlc_fixed_t) -0x80000000L)
106 #define FIXED32_MAX ((vlc_fixed_t) +0x7fffffffL)
107 #define FIXED32_ONE ((vlc_fixed_t) 0x10000000)
108
109
110 /* Dual mono. Two independant mono channels */
111 #define AOUT_CHAN_CHANNEL   0x0000000B
112 #define AOUT_CHAN_MONO      0x00000001
113 #define AOUT_CHAN_STEREO    0x00000002
114 /* 3 front channels (left, center, right) */
115 #define AOUT_CHAN_3F        0x00000003
116 /* 2 front, 1 rear surround channels (L, R, S) */
117 #define AOUT_CHAN_2F1R      0x00000004
118 /* 3 front, 1 rear surround channels (L, C, R, S) */
119 #define AOUT_CHAN_3F1R      0x00000005
120 /* 2 front, 2 rear surround channels (L, R, LS, RS) */
121 #define AOUT_CHAN_2F2R      0x00000006
122 /* 3 front, 2 rear surround channels (L, C, R, LS, RS) */
123 #define AOUT_CHAN_3F2R      0x00000007
124 /* First of two mono channels */
125 #define AOUT_CHAN_CHANNEL1  0x00000008
126 /* Second of two mono channels */
127 #define AOUT_CHAN_CHANNEL2  0x00000009
128 /* Dolby surround compatible stereo */
129 #define AOUT_CHAN_DOLBY     0x0000000A
130
131 #define AOUT_CHAN_MASK      0x0000000F
132
133 /* Low frequency effects channel. Normally used to connect a subwoofer.
134  * Can be combined with any of the above channels. For example :
135  * AOUT_CHAN_3F2R | AOUT_CHAN_LFE -> 3 front, 2 rear, 1 LFE (5.1) */
136 #define AOUT_CHAN_LFE       0x00000010
137
138
139 /*****************************************************************************
140  * aout_buffer_t : audio output buffer
141  *****************************************************************************/
142 struct aout_buffer_t
143 {
144     byte_t *                p_buffer;
145     int                     i_alloc_type;
146     /* i_size is the real size of the buffer (used for debug ONLY), i_nb_bytes
147      * is the number of significative bytes in it. */
148     size_t                  i_size, i_nb_bytes;
149     int                     i_nb_samples;
150     mtime_t                 start_date, end_date;
151
152     struct aout_buffer_t *  p_next;
153 };
154
155 /* Size of a frame for S/PDIF output. */
156 #define AOUT_SPDIF_SIZE 6144
157
158 /*****************************************************************************
159  * audio_date_t : date incrementation without long-term rounding errors
160  *****************************************************************************/
161 struct audio_date_t
162 {
163     mtime_t date;
164     u32     i_divider;
165     u32     i_remainder;
166 };
167
168 /*****************************************************************************
169  * Prototypes
170  *****************************************************************************/
171 /* From common.c : */
172 #define aout_New(a) __aout_New(VLC_OBJECT(a))
173 VLC_EXPORT( aout_instance_t *, __aout_New, ( vlc_object_t * ) );
174 VLC_EXPORT( void, aout_Delete, ( aout_instance_t * ) );
175 VLC_EXPORT( void, aout_DateInit, ( audio_date_t *, u32 ) );
176 VLC_EXPORT( void, aout_DateSet, ( audio_date_t *, mtime_t ) );
177 VLC_EXPORT( void, aout_DateMove, ( audio_date_t *, mtime_t ) );
178 VLC_EXPORT( mtime_t, aout_DateGet, ( const audio_date_t * ) );
179 VLC_EXPORT( mtime_t, aout_DateIncrement, ( audio_date_t *, u32 ) );
180
181 /* From dec.c : */
182 #define aout_DecNew(a, b, c) __aout_DecNew(VLC_OBJECT(a), b, c)
183 VLC_EXPORT( aout_input_t *, __aout_DecNew, ( vlc_object_t *, aout_instance_t **, audio_sample_format_t * ) );
184 VLC_EXPORT( int, aout_DecDelete, ( aout_instance_t *, aout_input_t * ) );
185 VLC_EXPORT( aout_buffer_t *, aout_DecNewBuffer, ( aout_instance_t *, aout_input_t *, size_t ) );
186 VLC_EXPORT( void, aout_DecDeleteBuffer, ( aout_instance_t *, aout_input_t *, aout_buffer_t * ) );
187 VLC_EXPORT( int, aout_DecPlay, ( aout_instance_t *, aout_input_t *, aout_buffer_t * ) );
188
189 /* From intf.c : */
190 VLC_EXPORT( int, aout_VolumeGet, ( aout_instance_t *, audio_volume_t * ) );
191 VLC_EXPORT( int, aout_VolumeSet, ( aout_instance_t *, audio_volume_t ) );
192 VLC_EXPORT( int, aout_VolumeInfos, ( aout_instance_t *, audio_volume_t * ) );
193 VLC_EXPORT( int, aout_VolumeUp, ( aout_instance_t *, int, audio_volume_t * ) );
194 VLC_EXPORT( int, aout_VolumeDown, ( aout_instance_t *, int, audio_volume_t * ) );
195 VLC_EXPORT( int, aout_Restart, ( aout_instance_t * p_aout ) );
196