]> git.sesse.net Git - vlc/blob - modules/audio_filter/converter/mpgatofixed32.c
* modules/*: sanitization of the modules description strings.
[vlc] / modules / audio_filter / converter / mpgatofixed32.c
1 /*****************************************************************************
2  * mpgatofixed32.c: MPEG-1 & 2 audio layer I, II, III + MPEG 2.5 decoder,
3  * using MAD (MPEG Audio Decoder)
4  *****************************************************************************
5  * Copyright (C) 2001 by Jean-Paul Saman
6  * $Id: mpgatofixed32.c,v 1.8 2003/03/30 18:14:36 gbazin Exp $
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Jean-Paul Saman <jpsaman@wxs.nl>
10  *      
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  * 
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>                                      /* malloc(), free() */
30 #include <string.h>                                              /* strdup() */
31
32 #include <mad.h>
33
34 #include <vlc/vlc.h>
35 #include "audio_output.h"
36 #include "aout_internal.h"
37
38 /*****************************************************************************
39  * Local prototypes
40  *****************************************************************************/
41 static int  Create    ( vlc_object_t * );
42 static void Destroy   ( vlc_object_t * );
43 static void DoWork    ( aout_instance_t *, aout_filter_t *, aout_buffer_t *,  
44                         aout_buffer_t * );
45
46 /*****************************************************************************
47  * Local structures
48  *****************************************************************************/
49 struct aout_filter_sys_t
50 {
51     struct mad_stream mad_stream;
52     struct mad_frame mad_frame;
53     struct mad_synth mad_synth;
54 };
55
56 /*****************************************************************************
57  * Module descriptor
58  *****************************************************************************/
59 vlc_module_begin();
60     add_category_hint( N_("Miscellaneous"), NULL, VLC_TRUE );
61     set_description( _("MPEG audio decoder") );
62     set_capability( "audio filter", 100 );
63     set_callbacks( Create, Destroy );
64 vlc_module_end();
65
66 /*****************************************************************************
67  * Create: 
68  *****************************************************************************/
69 static int Create( vlc_object_t * _p_filter )
70 {
71     aout_filter_t * p_filter = (aout_filter_t *)_p_filter;
72     struct aout_filter_sys_t * p_sys;
73
74     if ( (p_filter->input.i_format != VLC_FOURCC('m','p','g','a')
75            && p_filter->input.i_format != VLC_FOURCC('m','p','g','3'))
76             || (p_filter->output.i_format != VLC_FOURCC('f','l','3','2')
77                  && p_filter->output.i_format != VLC_FOURCC('f','i','3','2')) )
78     {
79         return -1;
80     }
81
82     if ( !AOUT_FMTS_SIMILAR( &p_filter->input, &p_filter->output ) )
83     {
84         return -1;
85     }
86
87     /* Allocate the memory needed to store the module's structure */
88     p_sys = p_filter->p_sys = malloc( sizeof(struct aout_filter_sys_t) );
89     if( p_sys == NULL )
90     {
91         msg_Err( p_filter, "out of memory" );
92         return -1;
93     }
94
95     /* Initialize libmad */
96     mad_stream_init( &p_sys->mad_stream );
97     mad_frame_init( &p_sys->mad_frame );
98     mad_synth_init( &p_sys->mad_synth );
99     mad_stream_options( &p_sys->mad_stream, MAD_OPTION_IGNORECRC );
100
101     p_filter->pf_do_work = DoWork;
102     p_filter->b_in_place = 0;
103
104     return 0;
105 }
106
107 /*****************************************************************************
108  * DoWork: decode an MPEG audio frame.
109  *****************************************************************************/
110 static void DoWork( aout_instance_t * p_aout, aout_filter_t * p_filter,
111                     aout_buffer_t * p_in_buf, aout_buffer_t * p_out_buf )
112 {
113     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
114
115
116     p_out_buf->i_nb_samples = p_in_buf->i_nb_samples;
117     p_out_buf->i_nb_bytes = p_in_buf->i_nb_samples * sizeof(vlc_fixed_t) * 
118                                aout_FormatNbChannels( &p_filter->input );
119
120     /* Do the actual decoding now. */
121     mad_stream_buffer( &p_sys->mad_stream, p_in_buf->p_buffer,
122                        p_in_buf->i_nb_bytes );
123     if ( mad_frame_decode( &p_sys->mad_frame, &p_sys->mad_stream ) == -1 )
124     {
125         msg_Warn( p_aout, "libmad error: %s",
126                   mad_stream_errorstr( &p_sys->mad_stream ) );
127         if( p_filter->output.i_format == VLC_FOURCC('f','l','3','2') )
128         {
129             int i;
130             int i_size = p_out_buf->i_nb_bytes / sizeof(float);
131             
132             float * a = (float *)p_out_buf->p_buffer;
133             for ( i = 0 ; i < i_size ; i++ )
134                 *a++ = 0.0;
135         }
136         else
137         {
138             memset( p_out_buf->p_buffer, 0, p_out_buf->i_nb_bytes );
139         }
140         return;
141     }
142     mad_synth_frame( &p_sys->mad_synth, &p_sys->mad_frame );
143
144     if ( p_filter->output.i_format == VLC_FOURCC('f','i','3','2') )
145     {
146         /* Interleave and keep buffers in mad_fixed_t format */
147         mad_fixed_t * p_samples = (mad_fixed_t *)p_out_buf->p_buffer;
148         struct mad_pcm * p_pcm = &p_sys->mad_synth.pcm;
149         unsigned int i_samples = p_pcm->length;
150         mad_fixed_t const * p_left = p_pcm->samples[0];
151         mad_fixed_t const * p_right = p_pcm->samples[1];
152
153         switch ( p_pcm->channels )
154         {
155         case 2:
156             while ( i_samples-- )
157             {
158                 *p_samples++ = *p_left++;
159                 *p_samples++ = *p_right++;
160             }
161             break;
162
163         case 1:
164             p_filter->p_vlc->pf_memcpy( p_samples, p_left,
165                                         i_samples * sizeof(mad_fixed_t) );
166             break;
167
168         default:
169             msg_Err( p_filter, "cannot interleave %i channels",
170                      p_pcm->channels );
171         }
172     }
173     else
174     {
175         /* float32 */
176         float * p_samples = (float *)p_out_buf->p_buffer;
177         struct mad_pcm * p_pcm = &p_sys->mad_synth.pcm;
178         unsigned int i_samples = p_pcm->length;
179         mad_fixed_t const * p_left = p_pcm->samples[0];
180         mad_fixed_t const * p_right = p_pcm->samples[1];
181
182         switch ( p_pcm->channels )
183         {
184         case 2:
185             while ( i_samples-- )
186             {
187                 *p_samples++ = (float)*p_left++ / (float)FIXED32_ONE;
188                 *p_samples++ = (float)*p_right++ / (float)FIXED32_ONE;
189             }
190             break;
191
192         case 1:
193             while ( i_samples-- )
194             {
195                 *p_samples++ = (float)*p_left++ / (float)FIXED32_ONE;
196             }
197             break;
198
199         default:
200             msg_Err( p_filter, "cannot interleave %i channels",
201                      p_pcm->channels );
202         }
203     }
204 }
205
206 /*****************************************************************************
207  * Destroy : deallocate data structures
208  *****************************************************************************/
209 static void Destroy( vlc_object_t * _p_filter )
210 {
211     aout_filter_t * p_filter = (aout_filter_t *)_p_filter;
212     struct aout_filter_sys_t * p_sys = p_filter->p_sys;
213
214     mad_synth_finish( &p_sys->mad_synth );
215     mad_frame_finish( &p_sys->mad_frame );
216     mad_stream_finish( &p_sys->mad_stream );
217     free( p_sys );
218 }
219