]> git.sesse.net Git - vlc/blob - modules/codec/araw.c
* all: I have added two new variables in es_descriptor_t and
[vlc] / modules / codec / araw.c
1 /*****************************************************************************
2  * araw.c: Pseudo audio decoder; for raw pcm data
3  *****************************************************************************
4  * Copyright (C) 2001, 2002 VideoLAN
5  * $Id: araw.c,v 1.11 2003/01/07 21:49:01 fenrir Exp $
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 <vlc/vlc.h>
28 #include <vlc/aout.h>
29 #include <vlc/decoder.h>
30 #include <vlc/input.h>
31
32 #include <stdlib.h>                                      /* malloc(), free() */
33 #include <string.h>                                              /* strdup() */
34 #include "codecs.h"
35 /*****************************************************************************
36  * Local prototypes
37  *****************************************************************************/
38
39 typedef struct adec_thread_s
40 {
41     WAVEFORMATEX    *p_wf;
42     
43     //waveformatex_t  format;
44
45     /* The bit stream structure handles the PES stream at the bit level */
46 //    bit_stream_t        bit_stream;
47
48     /* Input properties */
49     decoder_fifo_t *p_fifo;
50     
51     /* Output properties */
52     aout_instance_t *   p_aout;       /* opaque */
53     aout_input_t *      p_aout_input; /* opaque */
54     audio_sample_format_t output_format;
55
56     audio_date_t        date;
57     mtime_t             pts;
58
59 } adec_thread_t;
60
61 static int  OpenDecoder    ( vlc_object_t * );
62
63 static int  RunDecoder     ( decoder_fifo_t * );
64 static int  InitThread     ( adec_thread_t * );
65 static void DecodeThread   ( adec_thread_t * );
66 static void EndThread      ( adec_thread_t * );
67
68 /*****************************************************************************
69  * Module descriptor
70  *****************************************************************************/
71
72 vlc_module_begin();
73     set_description( _("Pseudo Raw Audio decoder") );
74     set_capability( "decoder", 50 );
75     set_callbacks( OpenDecoder, NULL );
76 vlc_module_end();
77
78
79 static int pi_channels_maps[6] =
80 {
81     0,
82     AOUT_CHAN_CENTER,
83     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT,
84     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER,
85     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARLEFT,
86     AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER
87      | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARLEFT 
88 };
89
90 /*****************************************************************************
91  * OpenDecoder: probe the decoder and return score
92  *****************************************************************************
93  * Tries to launch a decoder and return score so that the interface is able
94  * to choose.
95  *****************************************************************************/
96 static int OpenDecoder( vlc_object_t *p_this )
97 {
98     decoder_fifo_t *p_fifo = (decoder_fifo_t*) p_this;
99     
100     switch( p_fifo->i_fourcc )
101     {   
102         case VLC_FOURCC('a','r','a','w'):
103         case VLC_FOURCC('t','w','o','s'): /* for mov file */
104             p_fifo->pf_run = RunDecoder;
105             return VLC_SUCCESS;
106             
107         default:
108             return VLC_EGENERIC;
109     }
110
111 }
112
113 /*****************************************************************************
114  * RunDecoder: this function is called just after the thread is created
115  *****************************************************************************/
116 static int RunDecoder( decoder_fifo_t *p_fifo )
117 {
118     adec_thread_t *p_adec;
119     int b_error;
120
121     if( !( p_adec = malloc( sizeof( adec_thread_t ) ) ) )
122     {
123         msg_Err( p_fifo, "out of memory" );
124         DecoderError( p_fifo );
125         return( -1 );
126     }
127     memset( p_adec, 0, sizeof( adec_thread_t ) );
128     
129     p_adec->p_fifo = p_fifo;
130
131     if( InitThread( p_adec ) != 0 )
132     {
133         DecoderError( p_fifo );
134         return( -1 );
135     }
136
137     while( ( !p_adec->p_fifo->b_die )&&( !p_adec->p_fifo->b_error ) )
138     {
139         DecodeThread( p_adec );
140     }
141
142
143     if( ( b_error = p_adec->p_fifo->b_error ) )
144     {
145         DecoderError( p_adec->p_fifo );
146     }
147
148     EndThread( p_adec );
149     if( b_error )
150     {
151         return( -1 );
152     }
153
154     return( 0 );
155 }
156
157
158 #define FREE( p ) if( p ) free( p ); p = NULL
159 #define GetWLE( p ) \
160     ( *(u8*)(p) + ( *((u8*)(p)+1) << 8 ) )
161
162 #define GetDWLE( p ) \
163     (  *(u8*)(p) + ( *((u8*)(p)+1) << 8 ) + \
164         ( *((u8*)(p)+2) << 16 ) + ( *((u8*)(p)+3) << 24 ) )
165
166 #if 0
167 static void GetWaveFormatEx( waveformatex_t *p_wh,
168                              u8 *p_data )
169 {
170
171     p_wh->i_formattag     = GetWLE( p_data );
172     p_wh->i_channels      = GetWLE( p_data + 2 );
173     p_wh->i_samplespersec = GetDWLE( p_data + 4 );
174     p_wh->i_avgbytespersec= GetDWLE( p_data + 8 );
175     p_wh->i_blockalign    = GetWLE( p_data + 12 );
176     p_wh->i_bitspersample = GetWLE( p_data + 14 );
177     if( p_wh->i_formattag != 1 )
178     {
179         p_wh->i_size          = GetWLE( p_data + 16 );
180
181         if( p_wh->i_size )
182         {
183             p_wh->p_data = malloc( p_wh->i_size );
184             memcpy( p_wh->p_data, p_data + 18, p_wh->i_size );
185         }
186     }
187 }
188 #endif
189
190 /*****************************************************************************
191  * InitThread: initialize data before entering main loop
192  *****************************************************************************/
193
194 static int InitThread( adec_thread_t * p_adec )
195 {
196     if( ( p_adec->p_wf = (WAVEFORMATEX*)p_adec->p_fifo->p_waveformatex ) == NULL )
197     {
198         msg_Err( p_adec->p_fifo, "unknown raw format" );
199         return( -1 );
200     }
201
202     /* fixing some values */
203     if( p_adec->p_wf->wFormatTag  == WAVE_FORMAT_PCM && 
204         !p_adec->p_wf->nBlockAlign )
205     {
206         p_adec->p_wf->nBlockAlign = 
207             p_adec->p_wf->nChannels * 
208                 ( ( p_adec->p_wf->wBitsPerSample + 7 ) / 8 );
209     }
210
211     msg_Dbg( p_adec->p_fifo,
212              "raw format: samplerate:%dHz channels:%d bits/sample:%d blockalign:%d",
213              p_adec->p_wf->nSamplesPerSec,
214              p_adec->p_wf->nChannels,
215              p_adec->p_wf->wBitsPerSample, 
216              p_adec->p_wf->nBlockAlign );
217
218     /* Initialize the thread properties */
219     switch( ( p_adec->p_wf->wBitsPerSample + 7 ) / 8 )
220     {
221         case( 2 ):
222             p_adec->output_format.i_format = VLC_FOURCC('s','1','6','l');
223             break;
224         case( 3 ):
225             p_adec->output_format.i_format = VLC_FOURCC('s','2','4','l');
226             break;
227         case( 4 ):
228             p_adec->output_format.i_format = VLC_FOURCC('s','3','2','l');
229             break;
230         case( 1 ):
231             p_adec->output_format.i_format = VLC_FOURCC('u','8',' ',' ');
232             break;
233         default:
234             msg_Err( p_adec->p_fifo, "bad parameters(bits/sample)" );
235             return( -1 );
236     }
237     p_adec->output_format.i_rate = p_adec->p_wf->nSamplesPerSec;
238
239     if( p_adec->p_wf->nChannels <= 0 || 
240             p_adec->p_wf->nChannels > 5 )
241     {
242         msg_Err( p_adec->p_fifo, "bad channels count(1-5)" );
243         return( -1 );
244     }
245
246     p_adec->output_format.i_physical_channels = 
247             p_adec->output_format.i_original_channels =
248             pi_channels_maps[p_adec->p_wf->nChannels];
249     p_adec->p_aout = NULL;
250     p_adec->p_aout_input = NULL;
251
252     /* **** Create a new audio output **** */
253     aout_DateInit( &p_adec->date, p_adec->output_format.i_rate );
254     p_adec->p_aout_input = aout_DecNew( p_adec->p_fifo,
255                                         &p_adec->p_aout,
256                                         &p_adec->output_format );
257     if( !p_adec->p_aout_input )
258     {
259         msg_Err( p_adec->p_fifo, "cannot create aout" );
260         return( -1 );
261     }
262
263     /* Init the BitStream */
264 //    InitBitstream( &p_adec->bit_stream, p_adec->p_fifo,
265 //                   NULL, NULL );
266
267     return( 0 );
268 }
269
270 static void GetPESData( u8 *p_buf, int i_max, pes_packet_t *p_pes )
271 {
272     int i_copy;
273     int i_count;
274
275     data_packet_t   *p_data;
276
277     i_count = 0;
278     p_data = p_pes->p_first;
279     while( p_data != NULL && i_count < i_max )
280     {
281
282         i_copy = __MIN( p_data->p_payload_end - p_data->p_payload_start, i_max - i_count );
283         
284         if( i_copy > 0 )
285         {
286             memcpy( p_buf,
287                     p_data->p_payload_start,
288                     i_copy );
289         }
290
291         p_data = p_data->p_next;
292         i_count += i_copy;
293         p_buf   += i_copy;
294     }
295
296     if( i_count < i_max )
297     {
298         memset( p_buf, 0, i_max - i_count );
299     }
300 }
301
302 /*****************************************************************************
303  * DecodeThread: decodes a frame
304  *****************************************************************************/
305 static void DecodeThread( adec_thread_t *p_adec )
306 {
307     aout_buffer_t   *p_aout_buffer;
308     int             i_samples; // per channels
309     int             i_size;
310
311     pes_packet_t    *p_pes;
312
313     /* **** get samples count **** */
314     input_ExtractPES( p_adec->p_fifo, &p_pes );
315     if( !p_pes )
316     {
317         p_adec->p_fifo->b_error = 1;
318         return;
319     }
320     i_size = p_pes->i_pes_size;
321
322     if( p_adec->p_wf->nBlockAlign > 0 )
323     {
324         i_size -= i_size % p_adec->p_wf->nBlockAlign;
325     }
326     i_size = __MAX( i_size, p_adec->p_wf->nBlockAlign );
327
328     if( !i_size || !p_pes )
329     {
330         msg_Err( p_adec->p_fifo, "infinite loop..." );
331         return;
332     }
333     i_samples = i_size / 
334                 ( ( p_adec->p_wf->wBitsPerSample + 7 ) / 8 ) / 
335                 p_adec->p_wf->nChannels;
336
337 //    msg_Warn( p_adec->p_fifo, "got %d samples (%d bytes)", i_samples, i_size );
338     p_adec->pts = p_pes->i_pts;
339         
340     /* **** Now we can output these samples **** */
341     
342     if( p_adec->pts != 0 && p_adec->pts != aout_DateGet( &p_adec->date ) )
343     {
344         aout_DateSet( &p_adec->date, p_adec->pts );
345     }
346     else if( !aout_DateGet( &p_adec->date ) )
347     {
348         return;
349     }
350
351     p_aout_buffer = aout_DecNewBuffer( p_adec->p_aout, 
352                                        p_adec->p_aout_input,
353                                        i_samples );
354     if( !p_aout_buffer )
355     {
356         msg_Err( p_adec->p_fifo, "cannot get aout buffer" );
357         p_adec->p_fifo->b_error = 1;
358         return;
359     }
360     
361     p_aout_buffer->start_date = aout_DateGet( &p_adec->date );
362     p_aout_buffer->end_date = aout_DateIncrement( &p_adec->date,
363                                                   i_samples );
364
365     GetPESData( p_aout_buffer->p_buffer, p_aout_buffer->i_nb_bytes, p_pes );
366
367     aout_DecPlay( p_adec->p_aout, p_adec->p_aout_input, p_aout_buffer );
368
369
370     input_DeletePES( p_adec->p_fifo->p_packets_mgt, p_pes );
371 }
372
373
374 /*****************************************************************************
375  * EndThread : faad decoder thread destruction
376  *****************************************************************************/
377 static void EndThread (adec_thread_t *p_adec)
378 {
379     if( p_adec->p_aout_input )
380     {
381         aout_DecDelete( p_adec->p_aout, p_adec->p_aout_input );
382     }
383
384     msg_Dbg( p_adec->p_fifo, "raw audio decoder closed" );
385         
386     free( p_adec );
387 }
388
389