]> git.sesse.net Git - vlc/blob - modules/demux/aac.c
* modules/demux/*: removed useless probing messages.
[vlc] / modules / demux / aac.c
1 /*****************************************************************************
2  * aac.c : Raw aac Stream input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2003 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@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  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 /*****************************************************************************
33  * Module descriptor
34  *****************************************************************************/
35 static int  Open    ( vlc_object_t * );
36 static void Close  ( vlc_object_t * );
37
38 vlc_module_begin();
39     set_category( CAT_INPUT );
40     set_subcategory( SUBCAT_INPUT_DEMUX );
41     set_description( _("AAC demuxer" ) );
42     set_capability( "demux2", 100 );
43     set_callbacks( Open, Close );
44     add_shortcut( "aac" );
45 vlc_module_end();
46
47 /* TODO:
48  * - adif support ?
49  *
50  */
51
52 /*****************************************************************************
53  * Local prototypes
54  *****************************************************************************/
55 struct demux_sys_t
56 {
57     mtime_t         i_time;
58
59     es_out_id_t     *p_es;
60 };
61
62 static int Demux  ( demux_t * );
63 static int Control( demux_t *, int, va_list );
64
65 static int i_aac_samplerate[16] =
66 {
67     96000, 88200, 64000, 48000, 44100, 32000,
68     24000, 22050, 16000, 12000, 11025, 8000,
69     7350,  0,     0,     0
70 };
71
72 #define AAC_ID( p )          ( ((p)[1]>>3)&0x01 )
73 #define AAC_SAMPLE_RATE( p ) i_aac_samplerate[((p)[2]>>2)&0x0f]
74 #define AAC_CHANNELS( p )    ( (((p)[2]&0x01)<<2) | (((p)[3]>>6)&0x03) )
75 #define AAC_FRAME_SIZE( p )  ( (((p)[3]&0x03) << 11)|( (p)[4] << 3 )|( (((p)[5]) >>5)&0x7 ) )
76
77 /* FIXME it's plain wrong */
78 #define AAC_FRAME_SAMPLES( p )  1024
79
80 static inline int HeaderCheck( uint8_t *p )
81 {
82     if( p[0] != 0xff ||
83         ( p[1]&0xf6 ) != 0xf0 ||
84         AAC_SAMPLE_RATE( p ) == 0 ||
85         AAC_CHANNELS( p ) == 0 ||
86         AAC_FRAME_SIZE( p ) == 0 )
87     {
88         return VLC_FALSE;
89     }
90     return VLC_TRUE;
91 }
92
93 /*****************************************************************************
94  * Open: initializes AAC demux structures
95  *****************************************************************************/
96 static int Open( vlc_object_t * p_this )
97 {
98     demux_t     *p_demux = (demux_t*)p_this;
99     demux_sys_t *p_sys;
100     int         b_forced = VLC_FALSE;
101
102     uint8_t     *p_peek;
103     module_t    *p_id3;
104     es_format_t fmt;
105
106     if( !strncmp( p_demux->psz_demux, "aac", 3 ) )
107     {
108         b_forced = VLC_TRUE;
109     }
110
111     if( p_demux->psz_path )
112     {
113         int  i_len = strlen( p_demux->psz_path );
114
115         if( i_len > 4 && !strcasecmp( &p_demux->psz_path[i_len - 4], ".aac" ) )
116         {
117             b_forced = VLC_TRUE;
118         }
119     }
120
121     if( !b_forced )
122     {
123         /* I haven't find any sure working aac detection so only forced or
124          * extention check
125          */
126         return VLC_EGENERIC;
127     }
128
129     /* skip possible id3 header */
130     if( ( p_id3 = module_Need( p_demux, "id3", NULL, 0 ) ) )
131     {
132         module_Unneed( p_demux, p_id3 );
133     }
134
135     p_demux->pf_demux   = Demux;
136     p_demux->pf_control = Control;
137     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
138
139     p_sys->i_time = 1;
140
141     /* peek the begining (10 is for adts header) */
142     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
143     {
144         msg_Err( p_demux, "cannot peek" );
145         goto error;
146     }
147     if( !strncmp( p_peek, "ADIF", 4 ) )
148     {
149         msg_Err( p_demux, "ADIF file. Not yet supported. (Please report)" );
150         goto error;
151     }
152
153     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 'm', 'p', '4', 'a' ) );
154     if( HeaderCheck( p_peek ) )
155     {
156         fmt.audio.i_channels = AAC_CHANNELS( p_peek );
157         fmt.audio.i_rate     = AAC_SAMPLE_RATE( p_peek );
158
159         msg_Dbg( p_demux,
160                  "adts header: id=%d channels=%d sample_rate=%d",
161                  AAC_ID( p_peek ),
162                  AAC_CHANNELS( p_peek ),
163                  AAC_SAMPLE_RATE( p_peek ) );
164     }
165
166     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
167     return VLC_SUCCESS;
168
169 error:
170     free( p_sys );
171     return VLC_EGENERIC;
172 }
173
174
175 /*****************************************************************************
176  * Demux: reads and demuxes data packets
177  *****************************************************************************
178  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
179  *****************************************************************************/
180 static int Demux( demux_t *p_demux )
181 {
182     demux_sys_t *p_sys = p_demux->p_sys;
183     block_t     *p_block;
184
185     uint8_t     h[8];
186     uint8_t     *p_peek;
187
188     if( stream_Peek( p_demux->s, &p_peek, 8 ) < 8 )
189     {
190         msg_Warn( p_demux, "cannot peek" );
191         return 0;
192     }
193
194     if( !HeaderCheck( p_peek ) )
195     {
196         /* we need to resynch */
197         vlc_bool_t  b_ok = VLC_FALSE;
198         int         i_skip = 0;
199         int         i_peek;
200
201         i_peek = stream_Peek( p_demux->s, &p_peek, 8096 );
202         if( i_peek < 8 )
203         {
204             msg_Warn( p_demux, "cannot peek" );
205             return 0;
206         }
207
208         while( i_peek >= 8 )
209         {
210             if( HeaderCheck( p_peek ) )
211             {
212                 b_ok = VLC_TRUE;
213                 break;
214             }
215
216             p_peek++;
217             i_peek--;
218             i_skip++;
219         }
220
221         msg_Warn( p_demux, "garbage=%d bytes", i_skip );
222         stream_Read( p_demux->s, NULL, i_skip );
223         return 1;
224     }
225
226     memcpy( h, p_peek, 8 );    /* can't use p_peek after stream_*  */
227
228
229
230     /* set PCR */
231     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_sys->i_time );
232
233     if( ( p_block = stream_Block( p_demux->s, AAC_FRAME_SIZE( h ) ) ) == NULL )
234     {
235         msg_Warn( p_demux, "cannot read data" );
236         return 0;
237     }
238
239     p_block->i_dts = p_block->i_pts = p_sys->i_time;
240
241     es_out_Send( p_demux->out, p_sys->p_es, p_block );
242
243     p_sys->i_time += (mtime_t)1000000 *
244                      (mtime_t)AAC_FRAME_SAMPLES( h ) /
245                      (mtime_t)AAC_SAMPLE_RATE( h );
246     return( 1 );
247 }
248
249 /*****************************************************************************
250  * Close: frees unused data
251  *****************************************************************************/
252 static void Close( vlc_object_t * p_this )
253 {
254     demux_t     *p_demux = (demux_t*)p_this;
255     demux_sys_t *p_sys = p_demux->p_sys;
256
257     free( p_sys );
258 }
259
260 /*****************************************************************************
261  * Control:
262  *****************************************************************************/
263 static int Control( demux_t *p_demux, int i_query, va_list args )
264 {
265     /* demux_sys_t *p_sys  = p_demux->p_sys; */
266     /* FIXME calculate the bitrate */
267     if( i_query == DEMUX_SET_TIME )
268         return VLC_EGENERIC;
269     else
270         return demux2_vaControlHelper( p_demux->s,
271                                        0, -1,
272                                        8*0, 1, i_query, args );
273 }
274