]> git.sesse.net Git - vlc/blob - modules/demux/mpeg/mpga.c
Make Zorglub less unhappy
[vlc] / modules / demux / mpeg / mpga.c
1 /*****************************************************************************
2  * mpga.c : MPEG-I/II Audio input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2004 the VideoLAN team
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     block_t     *p_block_in, *p_block_out;
124
125     if( p_demux->psz_path )
126     {
127         int  i_len = strlen( p_demux->psz_path );
128         if( i_len > 4 && !strcasecmp( &p_demux->psz_path[i_len - 4], ".mp3" ) )
129         {
130             b_forced = VLC_TRUE;
131         }
132     }
133
134     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
135
136     if( !HeaderCheck( header = GetDWBE( p_peek ) ) )
137     {
138         vlc_bool_t b_ok = VLC_FALSE;
139         int i_peek;
140
141         if( !p_demux->b_force && !b_forced ) return VLC_EGENERIC;
142
143         i_peek = stream_Peek( p_demux->s, &p_peek, 8096 );
144         while( i_peek > 4 )
145         {
146             if( HeaderCheck( header = GetDWBE( p_peek ) ) )
147             {
148                 b_ok = VLC_TRUE;
149                 break;
150             }
151             p_peek += 1;
152             i_peek -= 1;
153         }
154         if( !b_ok && !p_demux->b_force ) return VLC_EGENERIC;
155     }
156
157     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
158     memset( p_sys, 0, sizeof( demux_sys_t ) );
159     p_sys->p_es = 0;
160     p_sys->p_packetizer = 0;
161     p_sys->b_start = VLC_TRUE;
162     p_sys->meta = 0;
163     p_demux->pf_demux   = Demux;
164     p_demux->pf_control = Control;
165
166     /*
167      * Load the mpeg audio packetizer
168      */
169     p_sys->p_packetizer = vlc_object_create( p_demux, VLC_OBJECT_PACKETIZER );
170     p_sys->p_packetizer->pf_decode_audio = NULL;
171     p_sys->p_packetizer->pf_decode_video = NULL;
172     p_sys->p_packetizer->pf_decode_sub = NULL;
173     p_sys->p_packetizer->pf_packetize = NULL;
174     es_format_Init( &p_sys->p_packetizer->fmt_in, AUDIO_ES,
175                     VLC_FOURCC( 'm', 'p', 'g', 'a' ) );
176     es_format_Init( &p_sys->p_packetizer->fmt_out, UNKNOWN_ES, 0 );
177     p_sys->p_packetizer->p_module =
178         module_Need( p_sys->p_packetizer, "packetizer", NULL, 0 );
179
180     if( p_sys->p_packetizer->p_module == NULL )
181     {
182         msg_Err( p_demux, "cannot find mpga packetizer" );
183         Close( VLC_OBJECT(p_demux ) );
184         return VLC_EGENERIC;
185     }
186
187     /* Xing header */
188     if( HeaderCheck( header ) )
189     {
190         int i_xing, i_skip;
191         uint8_t *p_xing;
192
193         if( ( i_xing = stream_Peek( p_demux->s, &p_xing, 1024 ) ) < 21 )
194             return VLC_SUCCESS; /* No header */
195
196         if( MPGA_VERSION( header ) == 0 )
197         {
198             i_skip = MPGA_MODE( header ) != 3 ? 36 : 21;
199         }
200         else
201         {
202             i_skip = MPGA_MODE( header ) != 3 ? 21 : 13;
203         }
204
205         if( i_skip + 8 < i_xing && !strncmp( &p_xing[i_skip], "Xing", 4 ) )
206         {
207             unsigned int i_flags = GetDWBE( &p_xing[i_skip+4] );
208
209             p_xing += i_skip + 8;
210             i_xing -= i_skip + 8;
211
212             i_skip = 0;
213             if( i_flags&0x01 && i_skip + 4 <= i_xing )   /* XING_FRAMES */
214             {
215                 p_sys->i_xing_frames = GetDWBE( &p_xing[i_skip] );
216                 i_skip += 4;
217             }
218             if( i_flags&0x02 && i_skip + 4 <= i_xing )   /* XING_BYTES */
219             {
220                 p_sys->i_xing_bytes = GetDWBE( &p_xing[i_skip] );
221                 i_skip += 4;
222             }
223             if( i_flags&0x04 )   /* XING_TOC */
224             {
225                 i_skip += 100;
226             }
227
228             // FIXME: doesn't return the right bitrage average, at least
229             // with some MP3's
230             if( i_flags&0x08 && i_skip + 4 <= i_xing )   /* XING_VBR */
231             {
232                 p_sys->i_xing_bitrate_avg = GetDWBE( &p_xing[i_skip] );
233                 msg_Dbg( p_demux, "xing vbr value present (%d)",
234                          p_sys->i_xing_bitrate_avg );
235             }
236
237             if( p_sys->i_xing_frames > 0 && p_sys->i_xing_bytes > 0 )
238             {
239                 p_sys->i_xing_frame_samples = mpga_frame_samples( header );
240                 msg_Dbg( p_demux, "xing frames&bytes value present "
241                          "(%d bytes, %d frames, %d samples/frame)",
242                          p_sys->i_xing_bytes, p_sys->i_xing_frames,
243                          p_sys->i_xing_frame_samples );
244             }
245         }
246     }
247
248     if( ( p_block_in = stream_Block( p_demux->s, MPGA_PACKET_SIZE ) ) == NULL )
249     {
250         return VLC_EGENERIC;
251     }
252     p_block_in->i_pts = p_block_in->i_dts = 1;
253     p_block_out = p_sys->p_packetizer->pf_packetize(
254         p_sys->p_packetizer, &p_block_in );
255     
256     p_sys->p_packetizer->fmt_out.b_packetized = VLC_TRUE;
257     p_sys->p_es = es_out_Add( p_demux->out,
258                               &p_sys->p_packetizer->fmt_out);
259     p_sys->i_bitrate_avg = p_sys->p_packetizer->fmt_out.i_bitrate;
260     
261     if( p_sys->i_xing_bytes && p_sys->i_xing_frames &&
262         p_sys->i_xing_frame_samples )
263     {
264         p_sys->i_bitrate_avg = p_sys->i_xing_bytes * I64C(8) *
265             p_sys->p_packetizer->fmt_out.audio.i_rate /
266             p_sys->i_xing_frames / p_sys->i_xing_frame_samples;
267     }
268
269     p_sys->p_block_in = p_block_in;
270     p_sys->p_block_out = p_block_out;
271
272     /* Parse possible id3 header */
273     if( ( p_id3 = module_Need( p_demux, "id3", NULL, 0 ) ) )
274     {
275         p_sys->meta = (vlc_meta_t *)p_demux->p_private;
276         p_demux->p_private = NULL;
277         module_Unneed( p_demux, p_id3 );
278     }
279
280     return VLC_SUCCESS;
281 }
282
283 /*****************************************************************************
284  * Demux: reads and demuxes data packets
285  *****************************************************************************
286  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
287  *****************************************************************************/
288 static int Demux( demux_t *p_demux )
289 {
290     demux_sys_t *p_sys = p_demux->p_sys;
291     block_t *p_block_in, *p_block_out;
292     if( p_sys->b_start )
293     {
294         p_sys->b_start = VLC_FALSE;
295         p_block_in = p_sys->p_block_in;
296         p_block_out = p_sys->p_block_out;
297     }
298     else
299     {
300         if( ( p_block_in = stream_Block( p_demux->s, MPGA_PACKET_SIZE ) )
301             == NULL )
302         {
303             return 0;
304         }
305         p_block_in->i_pts = p_block_in->i_dts = 0;
306         p_block_out = p_sys->p_packetizer->pf_packetize(
307             p_sys->p_packetizer, &p_block_in );
308     }
309
310
311     while( p_block_out )
312     {
313         while( p_block_out )
314         {
315             block_t *p_next = p_block_out->p_next;
316
317             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
318
319             p_block_out->p_next = NULL;
320             p_sys->i_pts = p_block_out->i_pts;
321             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
322
323             p_block_out = p_next;
324         }
325         p_block_out = p_sys->p_packetizer->pf_packetize(
326             p_sys->p_packetizer, &p_block_in );
327     }
328     return 1;
329 }
330
331 /*****************************************************************************
332  * Close: frees unused data
333  *****************************************************************************/
334 static void Close( vlc_object_t * p_this )
335 {
336     demux_t     *p_demux = (demux_t*)p_this;
337     demux_sys_t *p_sys = p_demux->p_sys;
338
339     if( p_sys->meta ) vlc_meta_Delete( p_sys->meta );
340
341     if( p_sys->p_packetizer && p_sys->p_packetizer->p_module )
342         module_Unneed( p_sys->p_packetizer, p_sys->p_packetizer->p_module );
343     if( p_sys->p_packetizer )
344         vlc_object_destroy( p_sys->p_packetizer );
345
346     free( p_sys );
347 }
348
349 /*****************************************************************************
350  * Control:
351  *****************************************************************************/
352 static int Control( demux_t *p_demux, int i_query, va_list args )
353 {
354     demux_sys_t *p_sys  = p_demux->p_sys;
355     int64_t *pi64;
356     vlc_meta_t **pp_meta;
357     int i_ret;
358
359     switch( i_query )
360     {
361         case DEMUX_GET_META:
362             pp_meta = (vlc_meta_t **)va_arg( args, vlc_meta_t** );
363             if( p_sys->meta ) *pp_meta = vlc_meta_Duplicate( p_sys->meta );
364             else *pp_meta = NULL;
365             return VLC_SUCCESS;
366
367         case DEMUX_GET_TIME:
368             pi64 = (int64_t*)va_arg( args, int64_t * );
369             *pi64 = p_sys->i_pts + p_sys->i_time_offset;
370             return VLC_SUCCESS;
371
372         case DEMUX_SET_TIME:
373             /* FIXME TODO: implement a high precision seek (with mp3 parsing)
374              * needed for multi-input */
375
376         default:
377             i_ret = demux2_vaControlHelper( p_demux->s, 0, -1,
378                                             p_sys->i_bitrate_avg, 1, i_query,
379                                             args );
380             if( !i_ret && p_sys->i_bitrate_avg > 0 &&
381                 (i_query == DEMUX_SET_POSITION || i_query == DEMUX_SET_TIME) )
382             {
383                 int64_t i_time = I64C(8000000) * stream_Tell(p_demux->s) /
384                     p_sys->i_bitrate_avg;
385
386                 /* Fix time_offset */
387                 if( i_time >= 0 ) p_sys->i_time_offset = i_time - p_sys->i_pts;
388             }
389             return i_ret;
390     }
391 }