]> git.sesse.net Git - vlc/blob - modules/demux/a52.c
Include vlc_plugin.h as needed
[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/vlc.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( _("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_MAX_HEADER_SIZE 10
78
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 ) == 12 &&
93         !memcmp( p_peek, "RIFF", 4 ) && !memcmp( p_peek + 8, "WAVE", 4 ) )
94     {
95         int i_size;
96
97         /* Skip the wave header */
98         i_peek = 12 + 8;
99         while( stream_Peek( p_demux->s, &p_peek, i_peek ) == i_peek &&
100                memcmp( p_peek + i_peek - 8, "data", 4 ) )
101         {
102             i_peek += GetDWLE( p_peek + i_peek - 4 ) + 8;
103         }
104
105         /* TODO: should check wave format and sample_rate */
106
107         /* Some A52 wav files don't begin with a sync code so we do a more
108          * extensive search */
109         i_size = stream_Peek( p_demux->s, &p_peek, i_peek + A52_PACKET_SIZE * 2);
110         i_size -= (PCM_FRAME_SIZE + A52_MAX_HEADER_SIZE);
111
112         while( i_peek < i_size )
113         {
114             if( CheckSync( p_peek + i_peek, &b_big_endian ) != VLC_SUCCESS )
115                 /* The data is stored in 16 bits words */
116                 i_peek += 2;
117             else
118             {
119                 /* Check following sync code */
120                 if( CheckSync( p_peek + i_peek + PCM_FRAME_SIZE,
121                                &b_big_endian ) != VLC_SUCCESS )
122                 {
123                     i_peek += 2;
124                     continue;
125                 }
126
127                 break;
128             }
129         }
130     }
131
132     /* Have a peep at the show. */
133     CHECK_PEEK( p_peek, i_peek + A52_MAX_HEADER_SIZE * 2 );
134
135     if( CheckSync( p_peek + i_peek, &b_big_endian ) != VLC_SUCCESS )
136     {
137         if( !p_demux->b_force )
138             return VLC_EGENERIC;
139
140         /* User forced */
141         msg_Err( p_demux, "this doesn't look like a A52 audio stream, "
142                  "continuing anyway" );
143     }
144
145     /* Fill p_demux fields */
146     DEMUX_INIT_COMMON(); p_sys = p_demux->p_sys;
147     p_sys->b_start = true;
148     p_sys->i_mux_rate = 0;
149     p_sys->b_big_endian = b_big_endian;
150
151     /* Load the A52 packetizer */
152     INIT_APACKETIZER( p_sys->p_packetizer, 'a', '5', '2', ' ' );
153     LOAD_PACKETIZER_OR_FAIL( p_sys->p_packetizer, "A52" );
154
155     /* Create one program */
156     p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_in );
157
158     return VLC_SUCCESS;
159 }
160
161 /*****************************************************************************
162  * Close: frees unused data
163  *****************************************************************************/
164 static void Close( vlc_object_t * p_this )
165 {
166     demux_t        *p_demux = (demux_t*)p_this;
167     demux_sys_t    *p_sys = p_demux->p_sys;
168
169     DESTROY_PACKETIZER( p_sys->p_packetizer );
170     free( p_sys );
171 }
172
173 /*****************************************************************************
174  * Demux: reads and demuxes data packets
175  *****************************************************************************
176  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
177  *****************************************************************************/
178 static int Demux( demux_t *p_demux )
179 {
180     demux_sys_t *p_sys = p_demux->p_sys;
181     block_t     *p_block_in, *p_block_out;
182
183      /* Align stream */
184     int64_t i_pos = stream_Tell( p_demux->s );
185     if( i_pos % 2 ) stream_Read( p_demux->s, NULL, 1 );
186
187     if( !( p_block_in = stream_Block( p_demux->s, A52_PACKET_SIZE ) ) )
188     {
189         return 0;
190     }
191
192     if( !p_sys->b_big_endian && p_block_in->i_buffer )
193     {
194         /* Convert to big endian */
195
196 #ifdef HAVE_SWAB
197         swab(p_block_in->p_buffer, p_block_in->p_buffer, p_block_in->i_buffer);
198
199 #else
200         int i;
201         uint8_t *p_tmp, tmp;
202         p_tmp = p_block_in->p_buffer;
203         for( i = p_block_in->i_buffer / 2 ; i-- ; )
204         {
205             tmp = p_tmp[0];
206             p_tmp[0] = p_tmp[1];
207             p_tmp[1] = tmp;
208             p_tmp += 2;
209         }
210 #endif
211     }
212
213     if( p_sys->b_start )
214         p_block_in->i_pts = p_block_in->i_dts = 1;
215     else
216         p_block_in->i_pts = p_block_in->i_dts = 0;
217
218     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
219                 p_sys->p_packetizer, &p_block_in )) )
220     {
221         p_sys->b_start = false;
222
223         while( p_block_out )
224         {
225             block_t *p_next = p_block_out->p_next;
226
227             /* We assume a constant bitrate */
228             if( p_block_out->i_length )
229             {
230                 p_sys->i_mux_rate =
231                     p_block_out->i_buffer * INT64_C(1000000)/p_block_out->i_length;
232             }
233
234             /* set PCR */
235             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
236
237             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
238
239             p_block_out = p_next;
240         }
241     }
242
243     return 1;
244 }
245
246 /*****************************************************************************
247  * Control:
248  *****************************************************************************/
249 static int Control( demux_t *p_demux, int i_query, va_list args )
250 {
251     demux_sys_t *p_sys  = p_demux->p_sys;
252     if( i_query == DEMUX_SET_TIME )
253     {
254         return VLC_EGENERIC;
255     }
256     else if( i_query == DEMUX_HAS_UNSUPPORTED_META )
257     {
258         bool *pb_bool = (bool*)va_arg( args, bool* );
259         *pb_bool = true;
260         return VLC_SUCCESS;
261     }
262     else
263     {
264         return demux_vaControlHelper( p_demux->s,
265                                        0, -1,
266                                        8*p_sys->i_mux_rate, 1, i_query, args );
267     }
268 }
269
270 /*****************************************************************************
271  * CheckSync: Check if buffer starts with an A52 sync code
272  *****************************************************************************/
273 static int CheckSync( const uint8_t *p_peek, bool *p_big_endian )
274 {
275     /* Little endian version of the bitstream */
276     if( p_peek[0] == 0x77 && p_peek[1] == 0x0b &&
277         p_peek[4] < 0x60 /* bsid < 12 */ )
278     {
279         *p_big_endian = false;
280         return VLC_SUCCESS;
281     }
282     /* Big endian version of the bitstream */
283     else if( p_peek[0] == 0x0b && p_peek[1] == 0x77 &&
284              p_peek[5] < 0x60 /* bsid < 12 */ )
285     {
286         *p_big_endian = true;
287         return VLC_SUCCESS;
288     }
289
290     return VLC_EGENERIC;
291 }
292
293