]> git.sesse.net Git - vlc/blob - modules/demux/a52.c
Less memleaks in Qt interface.
[vlc] / modules / demux / a52.c
1 /*****************************************************************************
2  * a52.c : raw A/52 stream input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_plugin.h>
33 #include <vlc_demux.h>
34 #include <vlc_codec.h>
35
36 #ifdef HAVE_UNISTD_H
37 #   include <unistd.h>
38 #endif
39
40 /*****************************************************************************
41  * Module descriptor
42  *****************************************************************************/
43 static int  Open  ( vlc_object_t * );
44 static void Close ( vlc_object_t * );
45
46 vlc_module_begin();
47     set_category( CAT_INPUT );
48     set_subcategory( SUBCAT_INPUT_DEMUX );
49     set_description( N_("Raw A/52 demuxer") );
50     set_capability( "demux", 145 );
51     set_callbacks( Open, Close );
52     add_shortcut( "a52" );
53 vlc_module_end();
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static int Demux  ( demux_t * );
59 static int Control( demux_t *, int, va_list );
60
61 struct demux_sys_t
62 {
63     bool  b_start;
64     es_out_id_t *p_es;
65
66     /* Packetizer */
67     decoder_t *p_packetizer;
68
69     int i_mux_rate;
70     bool b_big_endian;
71 };
72
73 static int CheckSync( const uint8_t *p_peek, bool *p_big_endian );
74
75 #define PCM_FRAME_SIZE (1536 * 4)
76 #define A52_PACKET_SIZE (4 * PCM_FRAME_SIZE)
77 #define A52_PROBE_SIZE (512*1024)
78 #define A52_MAX_HEADER_SIZE 10
79
80 /*****************************************************************************
81  * Open: initializes ES structures
82  *****************************************************************************/
83 static int Open( vlc_object_t * p_this )
84 {
85     demux_t     *p_demux = (demux_t*)p_this;
86     demux_sys_t *p_sys;
87     const uint8_t *p_peek;
88     int         i_peek = 0;
89     bool  b_big_endian = 0; /* Arbitrary initialisation */
90
91     /* Check if we are dealing with a WAV file */
92     if( stream_Peek( p_demux->s, &p_peek, 12+8 ) == 12+8 &&
93         !memcmp( p_peek, "RIFF", 4 ) && !memcmp( &p_peek[8], "WAVE", 4 ) )
94     {
95         /* Skip the wave header */
96         i_peek = 12 + 8;
97         while( memcmp( p_peek + i_peek - 8, "data", 4 ) )
98         {
99             uint32_t i_len = GetDWLE( p_peek + i_peek - 4 );
100             if( i_len > A52_PROBE_SIZE || i_peek + i_len > A52_PROBE_SIZE )
101                 return VLC_EGENERIC;
102
103             i_peek += i_len + 8;
104             if( stream_Peek( p_demux->s, &p_peek, i_peek ) != i_peek )
105                 return VLC_EGENERIC;
106         }
107
108         /* TODO: should check wave format and sample_rate */
109
110         /* Some A52 wav files don't begin with a sync code so we do a more
111          * extensive search */
112         int i_size = stream_Peek( p_demux->s, &p_peek, i_peek + A52_PACKET_SIZE * 2);
113         i_size -= (PCM_FRAME_SIZE + A52_MAX_HEADER_SIZE);
114
115         while( i_peek < i_size )
116         {
117             if( CheckSync( p_peek + i_peek, &b_big_endian ) != VLC_SUCCESS )
118                 /* The data is stored in 16 bits words */
119                 i_peek += 2;
120             else
121             {
122                 /* Check following sync code */
123                 if( CheckSync( p_peek + i_peek + PCM_FRAME_SIZE,
124                                &b_big_endian ) != VLC_SUCCESS )
125                 {
126                     i_peek += 2;
127                     continue;
128                 }
129
130                 break;
131             }
132         }
133     }
134
135     /* Have a peep at the show. */
136     CHECK_PEEK( p_peek, i_peek + A52_MAX_HEADER_SIZE * 2 );
137
138     if( CheckSync( p_peek + i_peek, &b_big_endian ) != VLC_SUCCESS )
139     {
140         if( !p_demux->b_force )
141             return VLC_EGENERIC;
142
143         /* User forced */
144         msg_Err( p_demux, "this doesn't look like a A52 audio stream, "
145                  "continuing anyway" );
146     }
147
148     /* Fill p_demux fields */
149     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
150     p_sys->b_start = true;
151     p_sys->i_mux_rate = 0;
152     p_sys->b_big_endian = b_big_endian;
153
154     /* Load the A52 packetizer */
155     INIT_APACKETIZER( p_sys->p_packetizer, 'a', '5', '2', ' ' );
156     LOAD_PACKETIZER_OR_FAIL( p_sys->p_packetizer, "A52" );
157
158     /* Create one program */
159     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_in );
160
161     return VLC_SUCCESS;
162 }
163
164 /*****************************************************************************
165  * Close: frees unused data
166  *****************************************************************************/
167 static void Close( vlc_object_t * p_this )
168 {
169     demux_t        *p_demux = (demux_t*)p_this;
170     demux_sys_t    *p_sys = p_demux->p_sys;
171
172     DESTROY_PACKETIZER( p_sys->p_packetizer );
173     free( p_sys );
174 }
175
176 /*****************************************************************************
177  * Demux: reads and demuxes data packets
178  *****************************************************************************
179  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
180  *****************************************************************************/
181 static int Demux( demux_t *p_demux )
182 {
183     demux_sys_t *p_sys = p_demux->p_sys;
184     block_t     *p_block_in, *p_block_out;
185
186      /* Align stream */
187     int64_t i_pos = stream_Tell( p_demux->s );
188     if( i_pos % 2 ) stream_Read( p_demux->s, NULL, 1 );
189
190     if( !( p_block_in = stream_Block( p_demux->s, A52_PACKET_SIZE ) ) )
191     {
192         return 0;
193     }
194
195     if( !p_sys->b_big_endian && p_block_in->i_buffer )
196     {
197         /* Convert to big endian */
198
199 #ifdef HAVE_SWAB
200         swab(p_block_in->p_buffer, p_block_in->p_buffer, p_block_in->i_buffer);
201
202 #else
203         int i;
204         uint8_t *p_tmp, tmp;
205         p_tmp = p_block_in->p_buffer;
206         for( i = p_block_in->i_buffer / 2 ; i-- ; )
207         {
208             tmp = p_tmp[0];
209             p_tmp[0] = p_tmp[1];
210             p_tmp[1] = tmp;
211             p_tmp += 2;
212         }
213 #endif
214     }
215
216     if( p_sys->b_start )
217         p_block_in->i_pts = p_block_in->i_dts = 1;
218     else
219         p_block_in->i_pts = p_block_in->i_dts = 0;
220
221     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
222                 p_sys->p_packetizer, &p_block_in )) )
223     {
224         p_sys->b_start = false;
225
226         while( p_block_out )
227         {
228             block_t *p_next = p_block_out->p_next;
229
230             /* We assume a constant bitrate */
231             if( p_block_out->i_length )
232             {
233                 p_sys->i_mux_rate =
234                     p_block_out->i_buffer * INT64_C(1000000)/p_block_out->i_length;
235             }
236
237             /* set PCR */
238             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
239
240             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
241
242             p_block_out = p_next;
243         }
244     }
245
246     return 1;
247 }
248
249 /*****************************************************************************
250  * Control:
251  *****************************************************************************/
252 static int Control( demux_t *p_demux, int i_query, va_list args )
253 {
254     demux_sys_t *p_sys  = p_demux->p_sys;
255     if( i_query == DEMUX_SET_TIME )
256     {
257         return VLC_EGENERIC;
258     }
259     else if( i_query == DEMUX_HAS_UNSUPPORTED_META )
260     {
261         bool *pb_bool = (bool*)va_arg( args, bool* );
262         *pb_bool = true;
263         return VLC_SUCCESS;
264     }
265     else
266     {
267         return demux_vaControlHelper( p_demux->s,
268                                        0, -1,
269                                        8*p_sys->i_mux_rate, 1, i_query, args );
270     }
271 }
272
273 /*****************************************************************************
274  * CheckSync: Check if buffer starts with an A52 sync code
275  *****************************************************************************/
276 static int CheckSync( const uint8_t *p_peek, bool *p_big_endian )
277 {
278     /* Little endian version of the bitstream */
279     if( p_peek[0] == 0x77 && p_peek[1] == 0x0b &&
280         p_peek[4] < 0x60 /* bsid < 12 */ )
281     {
282         *p_big_endian = false;
283         return VLC_SUCCESS;
284     }
285     /* Big endian version of the bitstream */
286     else if( p_peek[0] == 0x0b && p_peek[1] == 0x77 &&
287              p_peek[5] < 0x60 /* bsid < 12 */ )
288     {
289         *p_big_endian = true;
290         return VLC_SUCCESS;
291     }
292
293     return VLC_EGENERIC;
294 }
295
296