]> git.sesse.net Git - vlc/blob - modules/demux/mod.c
* modules/demux/*: removed useless probing messages.
[vlc] / modules / demux / mod.c
1 /*****************************************************************************
2  * mod.c: MOD file demuxer (using libmodplug)
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
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 <stdlib.h>                                      /* malloc(), free() */
28
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 #include <libmodplug/modplug.h>
33
34 /* TODO:
35  *  - extend demux control to query meta data (demuxer should NEVER touch
36  *      playlist itself)
37  *  - FIXME test endian of samples
38  *  - ...
39  */
40
41 /*****************************************************************************
42  * Module descriptor
43  *****************************************************************************/
44 static int  Open    ( vlc_object_t * );
45 static void Close  ( vlc_object_t * );
46
47 vlc_module_begin();
48     set_description( _("MOD demuxer (libmodplug)" ) );
49     set_capability( "demux2", 10 );
50     set_category( CAT_INPUT );
51     set_subcategory( SUBCAT_INPUT_DEMUX );
52
53     add_bool( "mod-noisereduction", VLC_TRUE, NULL, N_("Noise reduction"), N_("Noise reduction"), VLC_FALSE );
54
55     add_bool( "mod-reverb", VLC_FALSE, NULL, N_("Reverb"), N_("Reverb"), VLC_FALSE );
56     add_integer_with_range( "mod-reverb-level", 0, 0, 100, NULL, N_("Reverb level (0-100)"), N_("Reverb level (0-100 defaults to 0)"), VLC_FALSE );
57     add_integer_with_range( "mod-reverb-delay", 40, 0, 1000, NULL, N_("Reverb delay (ms)"), N_("Reverb delay in ms (usually 40-200ms)"), VLC_FALSE );
58
59     add_bool( "mod-megabass", VLC_FALSE, NULL, N_("Mega bass"), N_("Mega bass"), VLC_FALSE );
60     add_integer_with_range( "mod-megabass-level", 0, 0, 100, NULL, N_("Mega bass level (0-100)"), N_("Mega bass level (0-100 defaults to 0)"), VLC_FALSE );
61     add_integer_with_range( "mod-megabass-range", 10, 10, 100, NULL, N_("Mega bass cut off (Hz)"), N_("Mega bass cut off (10-100Hz)"), VLC_FALSE );
62
63     add_bool( "mod-surround", VLC_FALSE, NULL, N_("Surround"), N_("Surround"), VLC_FALSE );
64     add_integer_with_range( "mod-surround-level", 0, 0, 100, NULL, N_("Surround level (0-100)"), N_("Surround level (0-100 defaults to 0)"), VLC_FALSE );
65     add_integer_with_range( "mod-surround-delay", 5, 0, 1000, NULL, N_("Surround delay (ms)"), N_("Surround delay in ms (usually 5-40ms)"), VLC_FALSE );
66
67     set_callbacks( Open, Close );
68     add_shortcut( "mod" );
69 vlc_module_end();
70
71 /*****************************************************************************
72  * Local prototypes
73  *****************************************************************************/
74
75 struct demux_sys_t
76 {
77     es_format_t  fmt;
78     es_out_id_t *es;
79
80     int64_t     i_time;
81     int64_t     i_length;
82
83     int         i_data;
84     uint8_t     *p_data;
85     ModPlugFile *f;
86 };
87
88 static int Demux  ( demux_t *p_demux );
89 static int Control( demux_t *p_demux, int i_query, va_list args );
90
91 static const char* mod_ext[] =
92 {
93     "mod", "s3m", "xm",  "it",  "669", "amf", "ams", "dbm", "dmf", "dsm",
94     "far", "mdl", "med", "mtm", "okt", "ptm", "stm", "ult", "umx", "mt2",
95     "psm", NULL
96 };
97
98 /*****************************************************************************
99  * Open
100  *****************************************************************************/
101 static int Open( vlc_object_t *p_this )
102 {
103     demux_t     *p_demux = (demux_t*)p_this;
104     demux_sys_t *p_sys;
105     char        *ext;
106     int         i;
107     ModPlug_Settings settings;
108     vlc_value_t val;
109
110     /* We accept file based on extention match */
111     if( strcasecmp( p_demux->psz_demux, "mod" ) )
112     {
113         if( ( ext = strchr( p_demux->psz_path, '.' ) ) == NULL ||
114             stream_Size( p_demux->s ) == 0 ) return VLC_EGENERIC;
115
116         ext++;  /* skip . */
117         for( i = 0; mod_ext[i] != NULL; i++ )
118         {
119             if( !strcasecmp( ext, mod_ext[i] ) )
120             {
121                 break;
122             }
123         }
124         if( mod_ext[i] == NULL ) return VLC_EGENERIC;
125         msg_Dbg( p_demux, "running MOD demuxer (ext=%s)", mod_ext[i] );
126     }
127
128     /* Fill p_demux field */
129     p_demux->pf_demux = Demux;
130     p_demux->pf_control = Control;
131     p_demux->p_sys = p_sys = malloc( sizeof( demux_sys_t ) );
132
133     msg_Dbg( p_demux, "loading complete file (could be long)" );
134     p_sys->i_data = stream_Size( p_demux->s );
135     p_sys->p_data = malloc( p_sys->i_data );
136     p_sys->i_data = stream_Read( p_demux->s, p_sys->p_data, p_sys->i_data );
137     if( p_sys->i_data <= 0 )
138     {
139         msg_Err( p_demux, "failed to read the complete file" );
140         free( p_sys->p_data );
141         free( p_sys );
142         return VLC_EGENERIC;
143     }
144     /* Create our config variable */
145     var_Create( p_demux, "mod-noisereduction", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
146     var_Create( p_demux, "mod-reverb", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
147     var_Create( p_demux, "mod-reverb-level", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
148     var_Create( p_demux, "mod-reverb-delay", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
149     var_Create( p_demux, "mod-megabass", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
150     var_Create( p_demux, "mod-megabass-level", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
151     var_Create( p_demux, "mod-megabass-range", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
152     var_Create( p_demux, "mod-surround", VLC_VAR_BOOL|VLC_VAR_DOINHERIT );
153     var_Create( p_demux, "mod-surround-level", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
154     var_Create( p_demux, "mod-surround-delay", VLC_VAR_INTEGER|VLC_VAR_DOINHERIT );
155
156     /* Configure modplug before loading the file */
157     ModPlug_GetSettings( &settings );
158     settings.mFlags = MODPLUG_ENABLE_OVERSAMPLING;
159     settings.mChannels = 2;
160     settings.mBits = 16;
161     settings.mFrequency = 44100;
162     settings.mResamplingMode = MODPLUG_RESAMPLE_FIR;
163
164     var_Get( p_demux, "mod-noisereduction", &val );
165     if( val.b_bool) settings.mFlags |= MODPLUG_ENABLE_NOISE_REDUCTION;
166
167     var_Get( p_demux, "mod-reverb", &val );
168     if( val.b_bool) settings.mFlags |= MODPLUG_ENABLE_REVERB;
169     var_Get( p_demux, "mod-reverb-level", &val );
170     settings.mReverbDepth = val.i_int;
171     var_Get( p_demux, "mod-reverb-delay", &val );
172     settings.mReverbDelay = val.i_int;
173
174     var_Get( p_demux, "mod-megabass", &val );
175     if( val.b_bool) settings.mFlags |= MODPLUG_ENABLE_MEGABASS;
176     var_Get( p_demux, "mod-megabass-level", &val );
177     settings.mBassAmount = val.i_int;
178     var_Get( p_demux, "mod-megabass-range", &val );
179     settings.mBassRange = val.i_int;
180
181     var_Get( p_demux, "mod-surround", &val );
182     if( val.b_bool) settings.mFlags |= MODPLUG_ENABLE_SURROUND;
183     var_Get( p_demux, "mod-surround-level", &val );
184     settings.mSurroundDepth = val.i_int;
185     var_Get( p_demux, "mod-surround-delay", &val );
186     settings.mSurroundDelay = val.i_int;
187
188     ModPlug_SetSettings( &settings );
189
190     if( ( p_sys->f = ModPlug_Load( p_sys->p_data, p_sys->i_data ) ) == NULL )
191     {
192         msg_Err( p_demux, "failed to understand the file" );
193         /* we try to seek to recover for other plugin */
194         stream_Seek( p_demux->s, 0 );
195         free( p_sys->p_data );
196         free( p_sys );
197         return VLC_EGENERIC;
198     }
199
200     /* init time */
201     p_sys->i_time  = 1;
202     p_sys->i_length = ModPlug_GetLength( p_sys->f ) * (int64_t)1000;
203
204     msg_Dbg( p_demux, "MOD loaded name=%s lenght="I64Fd"ms",
205              ModPlug_GetName( p_sys->f ),
206              p_sys->i_length );
207
208 #ifdef WORDS_BIGENDIAN
209     es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 't', 'w', 'o', 's' ) );
210 #else
211     es_format_Init( &p_sys->fmt, AUDIO_ES, VLC_FOURCC( 'a', 'r', 'a', 'w' ) );
212 #endif
213     p_sys->fmt.audio.i_rate = settings.mFrequency;
214     p_sys->fmt.audio.i_channels = settings.mChannels;
215     p_sys->fmt.audio.i_bitspersample = settings.mBits;
216     p_sys->es = es_out_Add( p_demux->out, &p_sys->fmt );
217
218     return VLC_SUCCESS;
219 }
220
221 /*****************************************************************************
222  * Close
223  *****************************************************************************/
224 static void Close( vlc_object_t *p_this )
225 {
226     demux_t     *p_demux = (demux_t*)p_this;
227     demux_sys_t *p_sys = p_demux->p_sys;
228
229     ModPlug_Unload( p_sys->f );
230     free( p_sys->p_data );
231     free( p_sys );
232 }
233
234
235 /*****************************************************************************
236  * Demux:
237  *****************************************************************************/
238 static int Demux( demux_t *p_demux )
239 {
240     demux_sys_t *p_sys = p_demux->p_sys;
241     block_t     *p_frame;
242     int         i_bk = ( p_sys->fmt.audio.i_bitspersample / 8 ) *
243                        p_sys->fmt.audio.i_channels;
244
245     p_frame = block_New( p_demux, p_sys->fmt.audio.i_rate / 10 * i_bk );
246
247     p_frame->i_buffer = ModPlug_Read( p_sys->f, p_frame->p_buffer, p_frame->i_buffer );
248     if( p_frame->i_buffer <= 0 )
249     {
250         /* EOF */
251         block_Release( p_frame );
252         return 0;
253     }
254
255     /* Set PCR */
256     es_out_Control( p_demux->out, ES_OUT_SET_PCR, (int64_t)p_sys->i_time );
257
258     /* We should use p_frame->i_buffer */
259     p_sys->i_time += (int64_t)1000000 * p_frame->i_buffer / i_bk / p_sys->fmt.audio.i_rate;
260
261     /* Send data */
262     p_frame->i_dts = p_frame->i_pts = p_sys->i_time;
263     es_out_Send( p_demux->out, p_sys->es, p_frame );
264
265     return 1;
266 }
267
268 /*****************************************************************************
269  * Control:
270  *****************************************************************************/
271 static int Control( demux_t *p_demux, int i_query, va_list args )
272 {
273     demux_sys_t *p_sys = p_demux->p_sys;
274     double f, *pf;
275     int64_t i64, *pi64;
276
277     switch( i_query )
278     {
279         case DEMUX_GET_POSITION:
280             pf = (double*) va_arg( args, double* );
281             if( p_sys->i_length > 0 )
282             {
283                 *pf = (double)p_sys->i_time / (double)p_sys->i_length;
284                 return VLC_SUCCESS;
285             }
286             return VLC_EGENERIC;
287
288         case DEMUX_SET_POSITION:
289             f = (double) va_arg( args, double );
290
291             i64 = f * p_sys->i_length;
292             if( i64 >= 0 && i64 <= p_sys->i_length )
293             {
294                 ModPlug_Seek( p_sys->f, i64 / 1000 );
295                 p_sys->i_time = i64 + 1;
296                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
297
298                 return VLC_SUCCESS;
299             }
300             return VLC_EGENERIC;
301
302         case DEMUX_GET_TIME:
303             pi64 = (int64_t*)va_arg( args, int64_t * );
304             *pi64 = p_sys->i_time;
305             return VLC_SUCCESS;
306
307         case DEMUX_GET_LENGTH:
308             pi64 = (int64_t*)va_arg( args, int64_t * );
309             *pi64 = p_sys->i_length;
310             return VLC_SUCCESS;
311
312         case DEMUX_SET_TIME:
313             i64 = (int64_t)va_arg( args, int64_t );
314
315             if( i64 >= 0 && i64 <= p_sys->i_length )
316             {
317                 ModPlug_Seek( p_sys->f, i64 / 1000 );
318                 p_sys->i_time = i64 + 1;
319                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
320
321                 return VLC_SUCCESS;
322             }
323             return VLC_EGENERIC;
324
325         case DEMUX_GET_FPS: /* meaningless */
326         default:
327             return VLC_EGENERIC;
328     }
329 }
330