]> git.sesse.net Git - vlc/blob - modules/demux/mpeg/mpga.c
* modules/demux/*: removed useless probing messages.
[vlc] / modules / demux / mpeg / mpga.c
1 /*****************************************************************************
2  * mpga.c : MPEG-I/II Audio input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
8  *          Gildas Bazin <gbazin@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #include <stdlib.h>                                      /* malloc(), free() */
29
30 #include <vlc/vlc.h>
31 #include <vlc/input.h>
32 #include "vlc_codec.h"
33 #include "vlc_meta.h"
34
35 #define MPGA_PACKET_SIZE 4096
36
37 /*****************************************************************************
38  * Module descriptor
39  *****************************************************************************/
40 static int  Open ( vlc_object_t * );
41 static void Close( vlc_object_t * );
42
43 vlc_module_begin();
44     set_category( CAT_INPUT );
45     set_subcategory( SUBCAT_INPUT_DEMUX );
46     set_description( _("MPEG-I/II audio demuxer" ) );
47     set_capability( "demux2", 100 );
48     set_callbacks( Open, Close );
49     add_shortcut( "mpga" );
50     add_shortcut( "mp3" );
51 vlc_module_end();
52
53 /*****************************************************************************
54  * Local prototypes
55  *****************************************************************************/
56 static int Demux  ( demux_t * );
57 static int Control( demux_t *, int, va_list );
58
59 struct demux_sys_t
60 {
61     es_out_id_t *p_es;
62     vlc_meta_t  *meta;
63
64     vlc_bool_t  b_start;
65     decoder_t   *p_packetizer;
66
67     mtime_t     i_pts;
68     mtime_t     i_time_offset;
69     int         i_bitrate_avg;  /* extracted from Xing header */
70
71     int i_xing_frames;
72     int i_xing_bytes;
73     int i_xing_bitrate_avg;
74     int i_xing_frame_samples;
75     block_t *p_block_in, *p_block_out;
76 };
77
78 static int HeaderCheck( uint32_t h )
79 {
80     if( ((( h >> 21 )&0x07FF) != 0x07FF )   /* header sync */
81         || (((h >> 17)&0x03) == 0 )         /* valid layer ?*/
82         || (((h >> 12)&0x0F) == 0x0F )
83         || (((h >> 12)&0x0F) == 0x00 )      /* valid bitrate ? */
84         || (((h >> 10) & 0x03) == 0x03 )    /* valide sampling freq ? */
85         || ((h & 0x03) == 0x02 ))           /* valid emphasis ? */
86     {
87         return VLC_FALSE;
88     }
89     return VLC_TRUE;
90 }
91
92 #define MPGA_VERSION( h )   ( 1 - (((h)>>19)&0x01) )
93 #define MPGA_LAYER( h )     ( 3 - (((h)>>17)&0x03) )
94 #define MPGA_MODE(h)        (((h)>> 6)&0x03)
95
96 static int mpga_frame_samples( uint32_t h )
97 {
98     switch( MPGA_LAYER(h) )
99     {
100         case 0:
101             return 384;
102         case 1:
103             return 1152;
104         case 2:
105             return MPGA_VERSION(h) ? 576 : 1152;
106         default:
107             return 0;
108     }
109 }
110
111 /*****************************************************************************
112  * Open: initializes demux structures
113  *****************************************************************************/
114 static int Open( vlc_object_t * p_this )
115 {
116     demux_t     *p_demux = (demux_t*)p_this;
117     demux_sys_t *p_sys;
118     vlc_bool_t   b_forced = VLC_FALSE;
119
120     uint32_t     header;
121     uint8_t     *p_peek;
122     module_t    *p_id3;
123     vlc_meta_t  *p_meta = NULL;
124     block_t     *p_block_in, *p_block_out;
125
126     if( p_demux->psz_path )
127     {
128         int  i_len = strlen( p_demux->psz_path );
129         if( i_len > 4 && !strcasecmp( &p_demux->psz_path[i_len - 4], ".mp3" ) )
130         {
131             b_forced = VLC_TRUE;
132         }
133     }
134
135     /* Skip/parse possible id3 header */
136     if( ( p_id3 = module_Need( p_demux, "id3", NULL, 0 ) ) )
137     {
138         p_meta = (vlc_meta_t *)p_demux->p_private;
139         p_demux->p_private = NULL;
140         module_Unneed( p_demux, p_id3 );
141     }
142
143     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 )
144     {
145         if( p_meta ) vlc_meta_Delete( p_meta );
146         return VLC_EGENERIC;
147     }
148
149     if( !HeaderCheck( header = GetDWBE( p_peek ) ) )
150     {
151         vlc_bool_t b_ok = VLC_FALSE;
152         int i_peek;
153
154         if( !p_demux->b_force && !b_forced )
155         {
156             if( p_meta ) vlc_meta_Delete( p_meta );
157             return VLC_EGENERIC;
158         }
159
160         i_peek = stream_Peek( p_demux->s, &p_peek, 8096 );
161         while( i_peek > 4 )
162         {
163             if( HeaderCheck( header = GetDWBE( p_peek ) ) )
164             {
165                 b_ok = VLC_TRUE;
166                 break;
167             }
168             p_peek += 1;
169             i_peek -= 1;
170         }
171         if( !b_ok && !p_demux->b_force )
172         {
173             if( p_meta ) vlc_meta_Delete( p_meta );
174             return VLC_EGENERIC;
175         }
176     }
177
178     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
179     memset( p_sys, 0, sizeof( demux_sys_t ) );
180     p_sys->p_es = 0;
181     p_sys->p_packetizer = 0;
182     p_sys->b_start = VLC_TRUE;
183     p_sys->meta = p_meta;
184     p_demux->pf_demux   = Demux;
185     p_demux->pf_control = Control;
186
187     /*
188      * Load the mpeg audio packetizer
189      */
190     p_sys->p_packetizer = vlc_object_create( p_demux, VLC_OBJECT_PACKETIZER );
191     p_sys->p_packetizer->pf_decode_audio = NULL;
192     p_sys->p_packetizer->pf_decode_video = NULL;
193     p_sys->p_packetizer->pf_decode_sub = NULL;
194     p_sys->p_packetizer->pf_packetize = NULL;
195     es_format_Init( &p_sys->p_packetizer->fmt_in, AUDIO_ES,
196                     VLC_FOURCC( 'm', 'p', 'g', 'a' ) );
197     es_format_Init( &p_sys->p_packetizer->fmt_out, UNKNOWN_ES, 0 );
198     p_sys->p_packetizer->p_module =
199         module_Need( p_sys->p_packetizer, "packetizer", NULL, 0 );
200
201     if( p_sys->p_packetizer->p_module == NULL )
202     {
203         msg_Err( p_demux, "cannot find mpga packetizer" );
204         Close( VLC_OBJECT(p_demux ) );
205         return VLC_EGENERIC;
206     }
207
208     /* Xing header */
209     if( HeaderCheck( header ) )
210     {
211         int i_xing, i_skip;
212         uint8_t *p_xing;
213
214         if( ( i_xing = stream_Peek( p_demux->s, &p_xing, 1024 ) ) < 21 )
215             return VLC_SUCCESS; /* No header */
216
217         if( MPGA_VERSION( header ) == 0 )
218         {
219             i_skip = MPGA_MODE( header ) != 3 ? 36 : 21;
220         }
221         else
222         {
223             i_skip = MPGA_MODE( header ) != 3 ? 21 : 13;
224         }
225
226         if( i_skip + 8 < i_xing && !strncmp( &p_xing[i_skip], "Xing", 4 ) )
227         {
228             unsigned int i_flags = GetDWBE( &p_xing[i_skip+4] );
229
230             p_xing += i_skip + 8;
231             i_xing -= i_skip + 8;
232
233             i_skip = 0;
234             if( i_flags&0x01 && i_skip + 4 <= i_xing )   /* XING_FRAMES */
235             {
236                 p_sys->i_xing_frames = GetDWBE( &p_xing[i_skip] );
237                 i_skip += 4;
238             }
239             if( i_flags&0x02 && i_skip + 4 <= i_xing )   /* XING_BYTES */
240             {
241                 p_sys->i_xing_bytes = GetDWBE( &p_xing[i_skip] );
242                 i_skip += 4;
243             }
244             if( i_flags&0x04 )   /* XING_TOC */
245             {
246                 i_skip += 100;
247             }
248
249             // FIXME: doesn't return the right bitrage average, at least
250             // with some MP3's
251             if( i_flags&0x08 && i_skip + 4 <= i_xing )   /* XING_VBR */
252             {
253                 p_sys->i_xing_bitrate_avg = GetDWBE( &p_xing[i_skip] );
254                 msg_Dbg( p_demux, "xing vbr value present (%d)",
255                          p_sys->i_xing_bitrate_avg );
256             }
257
258             if( p_sys->i_xing_frames > 0 && p_sys->i_xing_bytes > 0 )
259             {
260                 p_sys->i_xing_frame_samples = mpga_frame_samples( header );
261                 msg_Dbg( p_demux, "xing frames&bytes value present "
262                          "(%d bytes, %d frames, %d samples/frame)",
263                          p_sys->i_xing_bytes, p_sys->i_xing_frames,
264                          p_sys->i_xing_frame_samples );
265             }
266         }
267     }
268
269     if( ( p_block_in = stream_Block( p_demux->s, MPGA_PACKET_SIZE ) ) == NULL )
270     {
271         return VLC_EGENERIC;
272     }
273     p_block_in->i_pts = p_block_in->i_dts = 1;
274     p_block_out = p_sys->p_packetizer->pf_packetize(
275         p_sys->p_packetizer, &p_block_in );
276     
277     p_sys->p_packetizer->fmt_out.b_packetized = VLC_TRUE;
278     p_sys->p_es = es_out_Add( p_demux->out,
279                               &p_sys->p_packetizer->fmt_out);
280     p_sys->i_bitrate_avg = p_sys->p_packetizer->fmt_out.i_bitrate;
281     
282     if( p_sys->i_xing_bytes && p_sys->i_xing_frames &&
283         p_sys->i_xing_frame_samples )
284     {
285         p_sys->i_bitrate_avg = p_sys->i_xing_bytes * I64C(8) *
286             p_sys->p_packetizer->fmt_out.audio.i_rate /
287             p_sys->i_xing_frames / p_sys->i_xing_frame_samples;
288     }
289
290     p_sys->p_block_in = p_block_in;
291     p_sys->p_block_out = p_block_out;
292
293     return VLC_SUCCESS;
294 }
295
296 /*****************************************************************************
297  * Demux: reads and demuxes data packets
298  *****************************************************************************
299  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
300  *****************************************************************************/
301 static int Demux( demux_t *p_demux )
302 {
303     demux_sys_t *p_sys = p_demux->p_sys;
304     block_t *p_block_in, *p_block_out;
305     if( p_sys->b_start )
306     {
307         p_sys->b_start = VLC_FALSE;
308         p_block_in = p_sys->p_block_in;
309         p_block_out = p_sys->p_block_out;
310     }
311     else
312     {
313         if( ( p_block_in = stream_Block( p_demux->s, MPGA_PACKET_SIZE ) )
314             == NULL )
315         {
316             return 0;
317         }
318         p_block_in->i_pts = p_block_in->i_dts = 0;
319         p_block_out = p_sys->p_packetizer->pf_packetize(
320             p_sys->p_packetizer, &p_block_in );
321     }
322
323
324     while( p_block_out )
325     {
326         while( p_block_out )
327         {
328             block_t *p_next = p_block_out->p_next;
329
330             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
331
332             p_block_out->p_next = NULL;
333             p_sys->i_pts = p_block_out->i_pts;
334             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
335
336             p_block_out = p_next;
337         }
338         p_block_out = p_sys->p_packetizer->pf_packetize(
339             p_sys->p_packetizer, &p_block_in );
340     }
341     return 1;
342 }
343
344 /*****************************************************************************
345  * Close: frees unused data
346  *****************************************************************************/
347 static void Close( vlc_object_t * p_this )
348 {
349     demux_t     *p_demux = (demux_t*)p_this;
350     demux_sys_t *p_sys = p_demux->p_sys;
351
352     if( p_sys->meta ) vlc_meta_Delete( p_sys->meta );
353
354     if( p_sys->p_packetizer && p_sys->p_packetizer->p_module )
355         module_Unneed( p_sys->p_packetizer, p_sys->p_packetizer->p_module );
356     if( p_sys->p_packetizer )
357         vlc_object_destroy( p_sys->p_packetizer );
358
359     free( p_sys );
360 }
361
362 /*****************************************************************************
363  * Control:
364  *****************************************************************************/
365 static int Control( demux_t *p_demux, int i_query, va_list args )
366 {
367     demux_sys_t *p_sys  = p_demux->p_sys;
368     int64_t *pi64;
369     vlc_meta_t **pp_meta;
370     int i_ret;
371
372     switch( i_query )
373     {
374         case DEMUX_GET_META:
375             pp_meta = (vlc_meta_t **)va_arg( args, vlc_meta_t** );
376             if( p_sys->meta ) *pp_meta = vlc_meta_Duplicate( p_sys->meta );
377             else *pp_meta = NULL;
378             return VLC_SUCCESS;
379
380         case DEMUX_GET_TIME:
381             pi64 = (int64_t*)va_arg( args, int64_t * );
382             *pi64 = p_sys->i_pts + p_sys->i_time_offset;
383             return VLC_SUCCESS;
384
385         case DEMUX_SET_TIME:
386             /* FIXME TODO: implement a high precision seek (with mp3 parsing)
387              * needed for multi-input */
388
389         default:
390             i_ret = demux2_vaControlHelper( p_demux->s, 0, -1,
391                                             p_sys->i_bitrate_avg, 1, i_query,
392                                             args );
393             if( !i_ret && p_sys->i_bitrate_avg > 0 &&
394                 (i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME) )
395             {
396                 int64_t i_time = I64C(8000000) * stream_Tell(p_demux->s) /
397                     p_sys->i_bitrate_avg;
398
399                 /* Fix time_offset */
400                 if( i_time >= 0 ) p_sys->i_time_offset = i_time - p_sys->i_pts;
401             }
402             return i_ret;
403     }
404 }