Qt: do not show open options in both normal and advanced UI
[vlc.git] / modules / demux / au.c
blob1efd2d0a3647454b88090c74e9be13302c3608fa
1 /*****************************************************************************
2 * au.c : au file input module for vlc
3 *****************************************************************************
4 * Copyright (C) 2001-2007 the VideoLAN team
5 * $Id$
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
36 /* TODO:
37 * - all adpcm things (I _NEED_ samples)
38 * - ...
41 /*****************************************************************************
42 * Module descriptor
43 *****************************************************************************/
44 static int Open ( vlc_object_t * );
45 static void Close( vlc_object_t * );
47 vlc_module_begin ()
48 set_category( CAT_INPUT )
49 set_subcategory( SUBCAT_INPUT_DEMUX )
50 set_description( N_("AU demuxer") )
51 set_capability( "demux", 10 )
52 set_callbacks( Open, Close )
53 add_shortcut( "au" )
54 vlc_module_end ()
56 /*****************************************************************************
57 * Local prototypes
58 *****************************************************************************/
59 enum AuType_e
61 AU_UNKNOWN = 0,
62 AU_MULAW_8 = 1, /* 8-bit ISDN u-law */
63 AU_LINEAR_8 = 2, /* 8-bit linear PCM */
64 AU_LINEAR_16 = 3, /* 16-bit linear PCM */
65 AU_LINEAR_24 = 4, /* 24-bit linear PCM */
66 AU_LINEAR_32 = 5, /* 32-bit linear PCM */
67 AU_FLOAT = 6, /* 32-bit IEEE floating point */
68 AU_DOUBLE = 7, /* 64-bit IEEE floating point */
69 AU_ADPCM_G721 = 23, /* 4-bit CCITT g.721 ADPCM */
70 AU_ADPCM_G722 = 24, /* CCITT g.722 ADPCM */
71 AU_ADPCM_G723_3 = 25, /* CCITT g.723 3-bit ADPCM */
72 AU_ADPCM_G723_5 = 26, /* CCITT g.723 5-bit ADPCM */
73 AU_ALAW_8 = 27 /* 8-bit ISDN A-law */
76 enum AuCat_e
78 AU_CAT_UNKNOWN = 0,
79 AU_CAT_PCM = 1,
80 AU_CAT_ADPCM = 2
83 struct demux_sys_t
85 es_format_t fmt;
86 es_out_id_t *es;
88 mtime_t i_time;
90 int i_frame_size;
91 mtime_t i_frame_length;
93 int i_header_size;
96 static int Demux( demux_t * );
97 static int Control ( demux_t *, int i_query, va_list args );
99 /*****************************************************************************
100 * Open: check file and initializes structures
101 *****************************************************************************/
102 static int Open( vlc_object_t *p_this )
104 demux_t *p_demux = (demux_t*)p_this;
105 demux_sys_t *p_sys;
107 uint8_t hdr[20];
108 const uint8_t *p_peek;
109 int i_cat;
110 int i_samples, i_modulo;
112 if( stream_Peek( p_demux->s , &p_peek, 4 ) < 4 )
113 return VLC_EGENERIC;
115 if( memcmp( p_peek, ".snd", 4 ) )
116 return VLC_EGENERIC;
118 /* skip signature */
119 stream_Read( p_demux->s, NULL, 4 ); /* cannot fail */
121 /* read header */
122 if( stream_Read( p_demux->s, hdr, 20 ) < 20 )
124 msg_Err( p_demux, "cannot read" );
125 return VLC_EGENERIC;
128 if( GetDWBE( &hdr[0] ) < 24 )
130 msg_Err( p_demux, "invalid file" );
131 return VLC_EGENERIC;
134 DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
135 p_sys->i_time = 0;
136 p_sys->i_header_size = GetDWBE( &hdr[0] );
138 /* skip extra header data */
139 if( p_sys->i_header_size > 24 )
141 stream_Read( p_demux->s, NULL, p_sys->i_header_size - 24 );
144 /* init fmt */
145 es_format_Init( &p_sys->fmt, AUDIO_ES, 0 );
146 p_sys->fmt.audio.i_rate = GetDWBE( &hdr[12] );
147 p_sys->fmt.audio.i_channels = GetDWBE( &hdr[16] );
149 #if 0
150 p_sys->au.i_header_size = GetDWBE( &p_sys->au.i_header_size );
151 p_sys->au.i_data_size = GetDWBE( &p_sys->au.i_data_size );
152 p_sys->au.i_encoding = GetDWBE( &p_sys->au.i_encoding );
153 p_sys->au.i_sample_rate = GetDWBE( &p_sys->au.i_sample_rate );
154 p_sys->au.i_channels = GetDWBE( &p_sys->au.i_channels );
155 #endif
156 switch( GetDWBE( &hdr[8] ) )
158 case AU_ALAW_8: /* 8-bit ISDN A-law */
159 p_sys->fmt.i_codec = VLC_CODEC_ALAW;
160 p_sys->fmt.audio.i_bitspersample = 8;
161 p_sys->fmt.audio.i_blockalign = 1 * p_sys->fmt.audio.i_channels;
162 i_cat = AU_CAT_PCM;
163 break;
165 case AU_MULAW_8: /* 8-bit ISDN u-law */
166 p_sys->fmt.i_codec = VLC_CODEC_MULAW;
167 p_sys->fmt.audio.i_bitspersample = 8;
168 p_sys->fmt.audio.i_blockalign = 1 * p_sys->fmt.audio.i_channels;
169 i_cat = AU_CAT_PCM;
170 break;
172 case AU_LINEAR_8: /* 8-bit linear PCM */
173 p_sys->fmt.i_codec = VLC_FOURCC( 't','w','o','s' );
174 p_sys->fmt.audio.i_bitspersample = 8;
175 p_sys->fmt.audio.i_blockalign = 1 * p_sys->fmt.audio.i_channels;
176 i_cat = AU_CAT_PCM;
177 break;
179 case AU_LINEAR_16: /* 16-bit linear PCM */
180 p_sys->fmt.i_codec = VLC_FOURCC( 't','w','o','s' );
181 p_sys->fmt.audio.i_bitspersample = 16;
182 p_sys->fmt.audio.i_blockalign = 2 * p_sys->fmt.audio.i_channels;
183 i_cat = AU_CAT_PCM;
184 break;
186 case AU_LINEAR_24: /* 24-bit linear PCM */
187 p_sys->fmt.i_codec = VLC_FOURCC( 't','w','o','s' );
188 p_sys->fmt.audio.i_bitspersample = 24;
189 p_sys->fmt.audio.i_blockalign = 3 * p_sys->fmt.audio.i_channels;
190 i_cat = AU_CAT_PCM;
191 break;
193 case AU_LINEAR_32: /* 32-bit linear PCM */
194 p_sys->fmt.i_codec = VLC_FOURCC( 't','w','o','s' );
195 p_sys->fmt.audio.i_bitspersample = 32;
196 p_sys->fmt.audio.i_blockalign = 4 * p_sys->fmt.audio.i_channels;
197 i_cat = AU_CAT_PCM;
198 break;
200 case AU_FLOAT: /* 32-bit IEEE floating point */
201 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_FLOAT );
202 p_sys->fmt.audio.i_bitspersample = 32;
203 p_sys->fmt.audio.i_blockalign = 4 * p_sys->fmt.audio.i_channels;
204 i_cat = AU_CAT_PCM;
205 break;
207 case AU_DOUBLE: /* 64-bit IEEE floating point */
208 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_DOUBLE );
209 p_sys->fmt.audio.i_bitspersample = 64;
210 p_sys->fmt.audio.i_blockalign = 8 * p_sys->fmt.audio.i_channels;
211 i_cat = AU_CAT_PCM;
212 break;
214 case AU_ADPCM_G721: /* 4-bit CCITT g.721 ADPCM */
215 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_ADPCM_G721 );
216 p_sys->fmt.audio.i_bitspersample = 0;
217 p_sys->fmt.audio.i_blockalign = 0 * p_sys->fmt.audio.i_channels;
218 i_cat = AU_CAT_ADPCM;
219 break;
221 case AU_ADPCM_G722: /* CCITT g.722 ADPCM */
222 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_ADPCM_G722 );
223 p_sys->fmt.audio.i_bitspersample = 0;
224 p_sys->fmt.audio.i_blockalign = 0 * p_sys->fmt.audio.i_channels;
225 i_cat = AU_CAT_ADPCM;
226 break;
228 case AU_ADPCM_G723_3: /* CCITT g.723 3-bit ADPCM */
229 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_ADPCM_G723_3 );
230 p_sys->fmt.audio.i_bitspersample = 0;
231 p_sys->fmt.audio.i_blockalign = 0 * p_sys->fmt.audio.i_channels;
232 i_cat = AU_CAT_ADPCM;
233 break;
235 case AU_ADPCM_G723_5: /* CCITT g.723 5-bit ADPCM */
236 p_sys->fmt.i_codec = VLC_FOURCC( 'a', 'u', 0, AU_ADPCM_G723_5 );
237 p_sys->fmt.audio.i_bitspersample = 0;
238 p_sys->fmt.audio.i_blockalign = 0 * p_sys->fmt.audio.i_channels;
239 i_cat = AU_CAT_ADPCM;
240 break;
242 default:
243 msg_Warn( p_demux, "unknow encoding=0x%x", GetDWBE( &hdr[8] ) );
244 p_sys->fmt.audio.i_bitspersample = 0;
245 p_sys->fmt.audio.i_blockalign = 0;
246 i_cat = AU_CAT_UNKNOWN;
247 break;
250 p_sys->fmt.i_bitrate = p_sys->fmt.audio.i_rate *
251 p_sys->fmt.audio.i_channels *
252 p_sys->fmt.audio.i_bitspersample;
254 if( i_cat == AU_CAT_UNKNOWN || i_cat == AU_CAT_ADPCM )
256 p_sys->i_frame_size = 0;
257 p_sys->i_frame_length = 0;
259 msg_Err( p_demux, "unsupported codec/type (Please report it)" );
260 free( p_sys );
261 return VLC_EGENERIC;
264 /* add the es */
265 p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
267 /* calculate 50ms frame size/time */
268 i_samples = __MAX( p_sys->fmt.audio.i_rate / 20, 1 );
269 p_sys->i_frame_size = i_samples * p_sys->fmt.audio.i_channels *
270 ( (p_sys->fmt.audio.i_bitspersample + 7) / 8 );
271 if( p_sys->fmt.audio.i_blockalign > 0 )
273 if( ( i_modulo = p_sys->i_frame_size % p_sys->fmt.audio.i_blockalign ) != 0 )
275 p_sys->i_frame_size += p_sys->fmt.audio.i_blockalign - i_modulo;
278 p_sys->i_frame_length = (mtime_t)1000000 *
279 (mtime_t)i_samples /
280 (mtime_t)p_sys->fmt.audio.i_rate;
282 return VLC_SUCCESS;
285 /*****************************************************************************
286 * Demux: read packet and send them to decoders
287 *****************************************************************************
288 * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
289 *****************************************************************************/
290 static int Demux( demux_t *p_demux )
292 demux_sys_t *p_sys = p_demux->p_sys;
293 block_t *p_block;
295 /* set PCR */
296 es_out_Control( p_demux->out, ES_OUT_SET_PCR, VLC_TS_0 + p_sys->i_time );
298 if( ( p_block = stream_Block( p_demux->s, p_sys->i_frame_size ) ) == NULL )
300 msg_Warn( p_demux, "cannot read data" );
301 return 0;
304 p_block->i_dts =
305 p_block->i_pts = VLC_TS_0 + p_sys->i_time;
307 es_out_Send( p_demux->out, p_sys->es, p_block );
309 p_sys->i_time += p_sys->i_frame_length;
311 return 1;
314 /*****************************************************************************
315 * Close: frees unused data
316 *****************************************************************************/
317 static void Close( vlc_object_t * p_this )
319 demux_t *p_demux = (demux_t*)p_this;
320 demux_sys_t *p_sys = p_demux->p_sys;
322 free( p_sys );
325 /*****************************************************************************
326 * Control:
327 *****************************************************************************/
328 static int Control( demux_t *p_demux, int i_query, va_list args )
330 demux_sys_t *p_sys = p_demux->p_sys;
332 return demux_vaControlHelper( p_demux->s, p_sys->i_header_size, -1,
333 p_sys->fmt.i_bitrate, p_sys->fmt.audio.i_blockalign,
334 i_query, args );