]> git.sesse.net Git - vlc/blob - modules/codec/toolame.c
* modules/codec/toolame.c: MPEG-1/2 layer II audio encoder using libtoolame (http...
[vlc] / modules / codec / toolame.c
1 /*****************************************************************************
2  * toolame.c: libtoolame encoder (MPEG-1/2 layer II) module
3  *            (using libtoolame from http://users.tpg.com.au/adslblvi/)
4  *****************************************************************************
5  * Copyright (C) 2004 VideoLAN
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
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 <vlc/vlc.h>
29 #include <vlc/decoder.h>
30 #include <vlc/sout.h>
31 #include <vlc/aout.h>
32
33 #include <toolame.h>
34
35 #define MPEG_FRAME_SIZE 1152
36 #define MAX_CODED_FRAME_SIZE 1792
37
38 /****************************************************************************
39  * Local prototypes
40  ****************************************************************************/
41 static int OpenEncoder   ( vlc_object_t * );
42 static void CloseEncoder ( vlc_object_t * );
43 static block_t *Encode   ( encoder_t *, aout_buffer_t * );
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48 #define ENC_CFG_PREFIX "sout-toolame-"
49
50 #define ENC_QUALITY_TEXT N_("Encoding quality")
51 #define ENC_QUALITY_LONGTEXT N_( \
52   "Allows you to specify a quality between 0.0 (high) and 50.0 (low), " \
53   "instead of specifying a particular bitrate. " \
54   "This will produce a VBR stream." )
55 #define ENC_MODE_TEXT N_("Stereo mode")
56 #define ENC_MODE_LONGTEXT N_( \
57   "[0=stereo, 1=dual-mono, 2=joint-stereo]" )
58 #define ENC_VBR_TEXT N_("VBR mode")
59 #define ENC_VBR_LONGTEXT N_( \
60   "By default the encoding is CBR." )
61
62 vlc_module_begin();
63     set_description( _("libtoolame audio encoder") );
64     set_capability( "encoder", 200 );
65     set_callbacks( OpenEncoder, CloseEncoder );
66
67     add_float( ENC_CFG_PREFIX "quality", 0.0, NULL, ENC_QUALITY_TEXT,
68                ENC_QUALITY_LONGTEXT, VLC_FALSE );
69     add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT,
70                  ENC_MODE_LONGTEXT, VLC_FALSE );
71     add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT,
72               ENC_VBR_LONGTEXT, VLC_FALSE );
73 vlc_module_end();
74
75 static const char *ppsz_enc_options[] = {
76     "quality", "mode", "vbr", NULL
77 };
78
79 /*****************************************************************************
80  * encoder_sys_t : toolame encoder descriptor
81  *****************************************************************************/
82 struct encoder_sys_t
83 {
84     /*
85      * Input properties
86      */
87     int16_t p_left[MPEG_FRAME_SIZE];
88     int16_t p_right[MPEG_FRAME_SIZE];
89     int i_nb_samples;
90     audio_date_t pts;
91
92     /*
93      * libtoolame properties
94      */
95     toolame_options *p_toolame;
96     unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE];
97 };
98
99 /*****************************************************************************
100  * OpenEncoder: probe the encoder and return score
101  *****************************************************************************/
102 static int OpenEncoder( vlc_object_t *p_this )
103 {
104     encoder_t *p_enc = (encoder_t *)p_this;
105     encoder_sys_t *p_sys;
106     vlc_value_t val;
107
108     if ( (p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','g','a') &&
109           !p_enc->b_force)
110             || p_enc->fmt_in.audio.i_channels > 2 )
111     {
112         return VLC_EGENERIC;
113     }
114
115     /* Allocate the memory needed to store the decoder's structure */
116     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
117     {
118         msg_Err( p_enc, "out of memory" );
119         return VLC_EGENERIC;
120     }
121     p_enc->p_sys = p_sys;
122
123     p_enc->pf_header = NULL;
124     p_enc->pf_encode_audio = Encode;
125     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
126     p_enc->fmt_out.i_codec = VLC_FOURCC('m','p','g','a');
127
128     sout_ParseCfg( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
129
130     p_sys->p_toolame = toolame_init();
131
132     /* Set options */
133     toolame_setSampleFreq( p_sys->p_toolame, p_enc->fmt_out.audio.i_rate );
134
135     var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val );
136     if ( val.b_bool )
137     {
138         FLOAT i_quality;
139         var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
140         i_quality = val.i_int;
141         if ( i_quality > 50.0 ) i_quality = 50.0;
142         if ( i_quality < 0.0 ) i_quality = 0.0;
143         toolame_setVBR( p_sys->p_toolame, 1 );
144         toolame_setVBRLevel( p_sys->p_toolame, i_quality );
145     }
146     else
147     {
148         toolame_setBitrate( p_sys->p_toolame, p_enc->fmt_out.i_bitrate / 1000 );
149     }
150
151     if ( p_enc->fmt_in.audio.i_channels == 1 )
152     {
153         toolame_setMode( p_sys->p_toolame, MPG_MD_MONO );
154     }
155     else
156     {
157         var_Get( p_enc, ENC_CFG_PREFIX "mode", &val );
158         switch ( val.i_int )
159         {
160         case 1:
161             toolame_setMode( p_sys->p_toolame, MPG_MD_DUAL_CHANNEL );
162             break;
163         case 2:
164             toolame_setMode( p_sys->p_toolame, MPG_MD_JOINT_STEREO );
165             break;
166         case 0:
167         default:
168             toolame_setMode( p_sys->p_toolame, MPG_MD_STEREO );
169             break;
170         }
171     }
172
173     if ( toolame_init_params( p_sys->p_toolame ) )
174     {
175         msg_Err( p_enc, "toolame initialization failed" );
176         return -VLC_EGENERIC;
177     }
178
179     p_sys->i_nb_samples = 0;
180     aout_DateInit( &p_sys->pts, p_enc->fmt_out.audio.i_rate );
181
182     return VLC_SUCCESS;
183 }
184
185 /****************************************************************************
186  * Encode: the whole thing
187  ****************************************************************************
188  * This function spits out MPEG packets.
189  ****************************************************************************/
190 static void Uninterleave( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
191 {
192     int16_t *p_left = p_enc->p_sys->p_left + p_enc->p_sys->i_nb_samples;
193     int16_t *p_right = p_enc->p_sys->p_right + p_enc->p_sys->i_nb_samples;
194
195     while ( i_nb_samples > 0 )
196     {
197         *p_left++ = *p_in++;
198         *p_right++ = *p_in++;
199         i_nb_samples--;
200     }
201 }
202
203 static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
204 {
205     encoder_sys_t *p_sys = p_enc->p_sys;
206     int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
207     int i_nb_samples = p_aout_buf->i_nb_samples;
208     block_t *p_chain = NULL;
209     mtime_t i_computed_pts = p_aout_buf->start_date -
210                 (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
211                 (mtime_t)p_enc->fmt_in.audio.i_rate;
212
213     if ( aout_DateGet( &p_sys->pts ) - i_computed_pts > 10000 ||
214          aout_DateGet( &p_sys->pts ) - i_computed_pts < -10000 )
215     {
216         msg_Dbg( p_enc, "resetting audio date" );
217         aout_DateSet( &p_sys->pts, i_computed_pts );
218     }
219
220     while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE )
221     {
222         int i_used;
223         block_t *p_block;
224
225         Uninterleave( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples );
226         i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples;
227         p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2;
228
229         toolame_encode_buffer( p_sys->p_toolame, p_sys->p_left,
230                                p_sys->p_right, MPEG_FRAME_SIZE,
231                                p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE,
232                                &i_used );
233         p_sys->i_nb_samples = 0;
234         p_block = block_New( p_enc, i_used );
235         p_enc->p_vlc->pf_memcpy( p_block->p_buffer, p_sys->p_out_buffer,
236                                  i_used );
237         p_block->i_length = (mtime_t)1000000 *
238                 (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_in.audio.i_rate;
239         p_block->i_dts = p_block->i_pts = aout_DateGet( &p_sys->pts );
240         aout_DateIncrement( &p_sys->pts, MPEG_FRAME_SIZE );
241         block_ChainAppend( &p_chain, p_block );
242     }
243
244     if ( i_nb_samples )
245     {
246         Uninterleave( p_enc, p_buffer, i_nb_samples );
247         p_sys->i_nb_samples += i_nb_samples;
248     }
249
250     return p_chain;
251 }
252
253 /*****************************************************************************
254  * CloseEncoder: toolame encoder destruction
255  *****************************************************************************/
256 static void CloseEncoder( vlc_object_t *p_this )
257 {
258     encoder_t *p_enc = (encoder_t *)p_this;
259     encoder_sys_t *p_sys = p_enc->p_sys;
260
261     toolame_deinit( p_sys->p_toolame );
262
263     free( p_sys );
264 }