]> git.sesse.net Git - vlc/blob - modules/codec/twolame.c
* ALL: We are now using libtwolame instead of libtoolame. The reason is that
[vlc] / modules / codec / twolame.c
1 /*****************************************************************************
2  * twolame.c: libtwolame encoder (MPEG-1/2 layer II) module
3  *            (using libtwolame from http://users.tpg.com.au/adslblvi/)
4  *****************************************************************************
5  * Copyright (C) 2004-2005 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 <twolame.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-twolame-"
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 #define ENC_PSY_TEXT N_("Psycho-acoustic model")
62 #define ENC_PSY_LONGTEXT N_( \
63   "Integer from -1 (no model) to 4." )
64
65 vlc_module_begin();
66     set_shortname( "twolame");
67     set_description( _("Libtwolame audio encoder") );
68     set_capability( "encoder", 50 );
69     set_callbacks( OpenEncoder, CloseEncoder );
70     set_category( CAT_INPUT );
71     set_subcategory( SUBCAT_INPUT_ACODEC );
72
73     add_float( ENC_CFG_PREFIX "quality", 0.0, NULL, ENC_QUALITY_TEXT,
74                ENC_QUALITY_LONGTEXT, VLC_FALSE );
75     add_integer( ENC_CFG_PREFIX "mode", 0, NULL, ENC_MODE_TEXT,
76                  ENC_MODE_LONGTEXT, VLC_FALSE );
77     add_bool( ENC_CFG_PREFIX "vbr", 0, NULL, ENC_VBR_TEXT,
78               ENC_VBR_LONGTEXT, VLC_FALSE );
79     add_integer( ENC_CFG_PREFIX "psy", 3, NULL, ENC_PSY_TEXT,
80                  ENC_PSY_LONGTEXT, VLC_FALSE );
81 vlc_module_end();
82
83 static const char *ppsz_enc_options[] = {
84     "quality", "mode", "vbr", "psy", NULL
85 };
86
87 /*****************************************************************************
88  * encoder_sys_t : twolame encoder descriptor
89  *****************************************************************************/
90 struct encoder_sys_t
91 {
92     /*
93      * Input properties
94      */
95     int16_t p_buffer[MPEG_FRAME_SIZE * 2];
96     int i_nb_samples;
97     mtime_t i_pts;
98
99     /*
100      * libtwolame properties
101      */
102     twolame_options *p_twolame;
103     unsigned char p_out_buffer[MAX_CODED_FRAME_SIZE];
104 };
105
106 /*****************************************************************************
107  * OpenEncoder: probe the encoder and return score
108  *****************************************************************************/
109 static int OpenEncoder( vlc_object_t *p_this )
110 {
111     encoder_t *p_enc = (encoder_t *)p_this;
112     encoder_sys_t *p_sys;
113     vlc_value_t val;
114
115     if( p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','g','a') &&
116         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2','a') &&
117         p_enc->fmt_out.i_codec != VLC_FOURCC('m','p','2',' ') &&
118         !p_enc->b_force )
119     {
120         return VLC_EGENERIC;
121     }
122
123     if( p_enc->fmt_in.audio.i_channels > 2 )
124     {
125         msg_Err( p_enc, "doesn't support > 2 channels" );
126         return VLC_EGENERIC;
127     }
128
129     /* Allocate the memory needed to store the decoder's structure */
130     if( ( p_sys = (encoder_sys_t *)malloc(sizeof(encoder_sys_t)) ) == NULL )
131     {
132         msg_Err( p_enc, "out of memory" );
133         return VLC_EGENERIC;
134     }
135     p_enc->p_sys = p_sys;
136
137     p_enc->pf_encode_audio = Encode;
138     p_enc->fmt_in.i_codec = AOUT_FMT_S16_NE;
139     p_enc->fmt_out.i_codec = VLC_FOURCC('m','p','g','a');
140
141     sout_CfgParse( p_enc, ENC_CFG_PREFIX, ppsz_enc_options, p_enc->p_cfg );
142
143     p_sys->p_twolame = twolame_init();
144
145     /* Set options */
146     twolame_set_in_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
147     twolame_set_out_samplerate( p_sys->p_twolame, p_enc->fmt_out.audio.i_rate );
148
149     var_Get( p_enc, ENC_CFG_PREFIX "vbr", &val );
150     if ( val.b_bool )
151     {
152         float i_quality;
153         var_Get( p_enc, ENC_CFG_PREFIX "quality", &val );
154         i_quality = val.i_int;
155         if ( i_quality > 50.0 ) i_quality = 50.0;
156         if ( i_quality < 0.0 ) i_quality = 0.0;
157         twolame_set_VBR( p_sys->p_twolame, 1 );
158         twolame_set_VBR_q( p_sys->p_twolame, i_quality );
159     }
160     else
161     {
162         twolame_set_bitrate( p_sys->p_twolame, p_enc->fmt_out.i_bitrate / 1000 );
163     }
164
165     if ( p_enc->fmt_in.audio.i_channels == 1 )
166     {
167         twolame_set_num_channels( p_sys->p_twolame, 1 );
168         twolame_set_mode( p_sys->p_twolame, TWOLAME_MONO );
169     }
170     else
171     {
172         twolame_set_num_channels( p_sys->p_twolame, 2 );
173         var_Get( p_enc, ENC_CFG_PREFIX "mode", &val );
174         switch ( val.i_int )
175         {
176         case 1:
177             twolame_set_mode( p_sys->p_twolame, TWOLAME_DUAL_CHANNEL );
178             break;
179         case 2:
180             twolame_set_mode( p_sys->p_twolame, TWOLAME_JOINT_STEREO );
181             break;
182         case 0:
183         default:
184             twolame_set_mode( p_sys->p_twolame, TWOLAME_STEREO );
185             break;
186         }
187     }
188
189     var_Get( p_enc, ENC_CFG_PREFIX "psy", &val );
190     twolame_set_psymodel( p_sys->p_twolame, val.i_int );
191
192     if ( twolame_init_params( p_sys->p_twolame ) )
193     {
194         msg_Err( p_enc, "twolame initialization failed" );
195         return -VLC_EGENERIC;
196     }
197
198     p_sys->i_nb_samples = 0;
199
200     return VLC_SUCCESS;
201 }
202
203 /****************************************************************************
204  * Encode: the whole thing
205  ****************************************************************************
206  * This function spits out MPEG packets.
207  ****************************************************************************/
208 static void Bufferize( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
209 {
210     int16_t *p_buffer = p_enc->p_sys->p_buffer
211                          + (p_enc->p_sys->i_nb_samples
212                              * p_enc->fmt_in.audio.i_channels);
213
214     memcpy( p_buffer, p_in, i_nb_samples * p_enc->fmt_in.audio.i_channels
215                              * sizeof(int16_t) );
216 }
217
218 static block_t *Encode( encoder_t *p_enc, aout_buffer_t *p_aout_buf )
219 {
220     encoder_sys_t *p_sys = p_enc->p_sys;
221     int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
222     int i_nb_samples = p_aout_buf->i_nb_samples;
223     block_t *p_chain = NULL;
224
225     p_sys->i_pts = p_aout_buf->start_date -
226                 (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /
227                 (mtime_t)p_enc->fmt_out.audio.i_rate;
228
229     while ( p_sys->i_nb_samples + i_nb_samples >= MPEG_FRAME_SIZE )
230     {
231         int i_used;
232         block_t *p_block;
233
234         Bufferize( p_enc, p_buffer, MPEG_FRAME_SIZE - p_sys->i_nb_samples );
235         i_nb_samples -= MPEG_FRAME_SIZE - p_sys->i_nb_samples;
236         p_buffer += (MPEG_FRAME_SIZE - p_sys->i_nb_samples) * 2;
237
238         i_used = twolame_encode_buffer_interleaved( p_sys->p_twolame,
239                                p_sys->p_buffer, MPEG_FRAME_SIZE,
240                                p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE );
241         p_sys->i_nb_samples = 0;
242         p_block = block_New( p_enc, i_used );
243         p_enc->p_vlc->pf_memcpy( p_block->p_buffer, p_sys->p_out_buffer,
244                                  i_used );
245         p_block->i_length = (mtime_t)1000000 *
246                 (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_out.audio.i_rate;
247         p_block->i_dts = p_block->i_pts = p_sys->i_pts;
248         p_sys->i_pts += p_block->i_length;
249         block_ChainAppend( &p_chain, p_block );
250     }
251
252     if ( i_nb_samples )
253     {
254         Bufferize( p_enc, p_buffer, i_nb_samples );
255         p_sys->i_nb_samples += i_nb_samples;
256     }
257
258     return p_chain;
259 }
260
261 /*****************************************************************************
262  * CloseEncoder: twolame encoder destruction
263  *****************************************************************************/
264 static void CloseEncoder( vlc_object_t *p_this )
265 {
266     encoder_t *p_enc = (encoder_t *)p_this;
267     encoder_sys_t *p_sys = p_enc->p_sys;
268
269     twolame_close( &p_sys->p_twolame );
270
271     free( p_sys );
272 }