]> git.sesse.net Git - vlc/blob - modules/demux/mpc.c
Added const wheen needed for stream_Peek (demuxer/access)
[vlc] / modules / demux / mpc.c
1 /*****************************************************************************
2  * mpc.c : MPC stream input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr.com>
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc_demux.h>
29 #include <vlc_input.h>
30 #include <vlc_codec.h>
31 #include <math.h>
32
33 #include <mpcdec/mpcdec.h>
34
35 /* TODO:
36  *  - test stream version 4..6
37  *  - test fixed float version
38  *  - ...
39  *
40  *  XXX:
41  *  It is done the ugly way (the demux does the decode stage... but it works
42  */
43
44 /*****************************************************************************
45  * Module descriptor
46  *****************************************************************************/
47 #define REPLAYGAIN_TYPE_TEXT N_("Replay Gain type" )
48 #define REPLAYGAIN_TYPE_LONGTEXT N_( "Musepack can have a title-specific " \
49               "replay gain (volume control) or an album-specific one. "  \
50               "Choose which type you want to use" )
51
52 static int  Open  ( vlc_object_t * );
53 static void Close ( vlc_object_t * );
54
55 vlc_module_begin();
56     set_category( CAT_INPUT );
57     set_subcategory( SUBCAT_INPUT_DEMUX );
58     set_description( _("MusePack demuxer") );
59     set_capability( "demux2", 145 );
60
61     set_callbacks( Open, Close );
62     add_shortcut( "mpc" );
63 vlc_module_end();
64
65 /*****************************************************************************
66  * Local prototypes
67  *****************************************************************************/
68 static int Demux  ( demux_t * );
69 static int Control( demux_t *, int, va_list );
70
71 struct demux_sys_t
72 {
73     /* */
74     es_out_id_t *p_es;
75
76     /* */
77     mpc_decoder    decoder;
78     mpc_reader     reader;
79     mpc_streaminfo info;
80
81     /* */
82     vlc_meta_t     *p_meta;
83     int64_t        i_position;
84 };
85
86 mpc_int32_t ReaderRead( void *p_private, void *dst, mpc_int32_t i_size );
87 mpc_bool_t  ReaderSeek( void *p_private, mpc_int32_t i_offset );
88 mpc_int32_t ReaderTell( void *p_private);
89 mpc_int32_t ReaderGetSize( void *p_private );
90 mpc_bool_t  ReaderCanSeek( void *p_private );
91
92 /*****************************************************************************
93  * Open: initializes ES structures
94  *****************************************************************************/
95 static int Open( vlc_object_t * p_this )
96 {
97     demux_t     *p_demux = (demux_t*)p_this;
98     demux_sys_t *p_sys;
99     es_format_t fmt;
100     const uint8_t *p_peek;
101     module_t    *p_id3;
102
103     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 )
104         return VLC_EGENERIC;
105
106     if( memcmp( p_peek, "MP+", 3 ) )
107     {
108         /* for v4..6 we check extension file */
109         const int i_version = (GetDWLE( p_peek ) >> 11)&0x3ff;
110
111         if( i_version  < 4 || i_version > 6 )
112             return VLC_EGENERIC;
113
114         if( !p_demux->b_force )
115         {
116             /* Check file name extension */
117             if( !demux2_IsPathExtension( p_demux, ".mpc" ) &&
118                 !demux2_IsPathExtension( p_demux, ".mp+" ) &&
119                 !demux2_IsPathExtension( p_demux, ".mpp" ) )
120                 return VLC_EGENERIC;
121         }
122     }
123
124     /* */
125     p_sys = malloc( sizeof( demux_sys_t ) );
126     memset( p_sys, 0, sizeof(demux_sys_t) );
127
128     p_sys->i_position = 0;
129
130     p_sys->reader.read = ReaderRead;
131     p_sys->reader.seek = ReaderSeek;
132     p_sys->reader.tell = ReaderTell;
133     p_sys->reader.get_size = ReaderGetSize;
134     p_sys->reader.canseek = ReaderCanSeek;
135     p_sys->reader.data = p_demux;
136
137     /* Load info */
138     mpc_streaminfo_init( &p_sys->info );
139     if( mpc_streaminfo_read( &p_sys->info, &p_sys->reader ) != ERROR_CODE_OK )
140     {
141         /* invalid file */
142         free( p_sys );
143         return VLC_EGENERIC;
144     }
145
146     /* */
147     mpc_decoder_setup( &p_sys->decoder, &p_sys->reader );
148     if( !mpc_decoder_initialize( &p_sys->decoder, &p_sys->info ) )
149     {
150         /* */
151         free( p_sys );
152         return VLC_EGENERIC;
153     }
154
155     /* Fill p_demux fields */
156     p_demux->pf_demux = Demux;
157     p_demux->pf_control = Control;
158     p_demux->p_sys = p_sys;
159
160     /* */
161 #ifndef MPC_FIXED_POINT
162     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 'f', 'l', '3', '2' ) );
163 #else
164 #   ifdef WORDS_BIGENDIAN
165     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 's', '3', '2', 'b' ) );
166 #   else
167     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 's', '3', '2', 'l' ) );
168 #   endif
169 #endif
170     fmt.audio.i_channels = p_sys->info.channels;
171     fmt.audio.i_rate = p_sys->info.sample_freq;
172     fmt.audio.i_blockalign = 4*fmt.audio.i_channels;
173     fmt.audio.i_bitspersample = 32;
174     fmt.i_bitrate = fmt.i_bitrate * fmt.audio.i_channels *
175                     fmt.audio.i_bitspersample;
176     if( p_sys->info.peak_title > 0 )
177     {
178         fmt.audio_replay_gain.pb_peak[AUDIO_REPLAY_GAIN_TRACK] = VLC_TRUE;
179         fmt.audio_replay_gain.pf_peak[AUDIO_REPLAY_GAIN_TRACK] = (float)p_sys->info.peak_title / 32767.0;
180         fmt.audio_replay_gain.pb_gain[AUDIO_REPLAY_GAIN_TRACK] = VLC_TRUE;
181         fmt.audio_replay_gain.pf_gain[AUDIO_REPLAY_GAIN_TRACK] = (float)p_sys->info.gain_title / 100.0;
182     }
183     if( p_sys->info.peak_album > 0 )
184     {
185         fmt.audio_replay_gain.pb_peak[AUDIO_REPLAY_GAIN_ALBUM] = VLC_TRUE;
186         fmt.audio_replay_gain.pf_peak[AUDIO_REPLAY_GAIN_ALBUM] = (float)p_sys->info.peak_album / 32767.0;
187         fmt.audio_replay_gain.pb_gain[AUDIO_REPLAY_GAIN_ALBUM] = VLC_TRUE;
188         fmt.audio_replay_gain.pf_gain[AUDIO_REPLAY_GAIN_ALBUM] = (float)p_sys->info.gain_album / 100.0;
189     }
190
191     /* Parse possible id3 header */
192     if( ( p_id3 = module_Need( p_demux, "meta reader", NULL, 0 ) ) )
193     {
194         p_sys->p_meta = (vlc_meta_t *)p_demux->p_private;
195         p_demux->p_private = NULL;
196         module_Unneed( p_demux, p_id3 );
197     }
198
199     if( !p_sys->p_meta )
200         p_sys->p_meta = vlc_meta_New();
201
202     vlc_audio_replay_gain_MergeFromMeta( &fmt.audio_replay_gain, p_sys->p_meta );
203     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
204
205     return VLC_SUCCESS;
206 }
207
208 /*****************************************************************************
209  * Close: frees unused data
210  *****************************************************************************/
211 static void Close( vlc_object_t * p_this )
212 {
213     demux_t        *p_demux = (demux_t*)p_this;
214     demux_sys_t    *p_sys = p_demux->p_sys;
215
216     free( p_sys );
217 }
218
219 /*****************************************************************************
220  * Demux:
221  *****************************************************************************
222  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
223  *****************************************************************************/
224 static int Demux( demux_t *p_demux )
225 {
226     demux_sys_t *p_sys = p_demux->p_sys;
227     block_t     *p_data;
228     int i_ret;
229
230     p_data = block_New( p_demux,
231                         MPC_DECODER_BUFFER_LENGTH*sizeof(MPC_SAMPLE_FORMAT) );
232     i_ret = mpc_decoder_decode( &p_sys->decoder,
233                                (MPC_SAMPLE_FORMAT*)p_data->p_buffer,
234                                NULL, NULL );
235     if( i_ret <= 0 )
236     {
237         block_Release( p_data );
238         return i_ret < 0 ? -1 : 0;
239     }
240
241     /* */
242     p_data->i_buffer = i_ret * sizeof(MPC_SAMPLE_FORMAT) * p_sys->info.channels;
243     p_data->i_dts = p_data->i_pts =
244             1 + I64C(1000000) * p_sys->i_position / p_sys->info.sample_freq;
245
246     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_data->i_dts );
247
248     es_out_Send( p_demux->out, p_sys->p_es, p_data );
249
250     /* */
251     p_sys->i_position += i_ret;
252
253     return 1;
254 }
255
256 /*****************************************************************************
257  * Control:
258  *****************************************************************************/
259 static int Control( demux_t *p_demux, int i_query, va_list args )
260 {
261     demux_sys_t *p_sys = p_demux->p_sys;
262     double   f, *pf;
263     int64_t i64, *pi64;
264     vlc_meta_t *p_meta;
265
266     switch( i_query )
267     {
268         case DEMUX_GET_META:
269             p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t* );
270             if( p_sys->p_meta )
271                 vlc_meta_Merge( p_meta, p_sys->p_meta );
272             else
273                 p_meta = NULL;
274             return VLC_SUCCESS;
275
276         case DEMUX_GET_LENGTH:
277             pi64 = (int64_t*)va_arg( args, int64_t * );
278             *pi64 = I64C(1000000) * p_sys->info.pcm_samples /
279                         p_sys->info.sample_freq;
280             return VLC_SUCCESS;
281
282         case DEMUX_GET_POSITION:
283             pf = (double*)va_arg( args, double * );
284             if( p_sys->info.pcm_samples > 0 )
285                 *pf = (double) p_sys->i_position /
286                       (double)p_sys->info.pcm_samples;
287             else
288                 *pf = 0.0;
289             return VLC_SUCCESS;
290
291         case DEMUX_GET_TIME:
292             pi64 = (int64_t*)va_arg( args, int64_t * );
293             *pi64 = I64C(1000000) * p_sys->i_position /
294                         p_sys->info.sample_freq;
295             return VLC_SUCCESS;
296
297         case DEMUX_SET_POSITION:
298             f = (double)va_arg( args, double );
299             i64 = (int64_t)(f * p_sys->info.pcm_samples);
300             if( mpc_decoder_seek_sample( &p_sys->decoder, i64 ) )
301             {
302                 p_sys->i_position = i64;
303                 return VLC_SUCCESS;
304             }
305             return VLC_EGENERIC;
306
307         case DEMUX_SET_TIME:
308             i64 = (int64_t)va_arg( args, int64_t );
309             if( mpc_decoder_seek_sample( &p_sys->decoder, i64 ) )
310             {
311                 p_sys->i_position = i64;
312                 return VLC_SUCCESS;
313             }
314             return VLC_EGENERIC;
315
316         default:
317             return VLC_EGENERIC;
318     }
319 }
320
321 mpc_int32_t ReaderRead( void *p_private, void *dst, mpc_int32_t i_size )
322 {
323     demux_t *p_demux = (demux_t*)p_private;
324     return stream_Read( p_demux->s, dst, i_size );
325 }
326
327 mpc_bool_t ReaderSeek( void *p_private, mpc_int32_t i_offset )
328 {
329     demux_t *p_demux = (demux_t*)p_private;
330     return !stream_Seek( p_demux->s, i_offset );
331 }
332
333 mpc_int32_t ReaderTell( void *p_private)
334 {
335     demux_t *p_demux = (demux_t*)p_private;
336     return stream_Tell( p_demux->s );
337 }
338
339 mpc_int32_t ReaderGetSize( void *p_private )
340 {
341     demux_t *p_demux = (demux_t*)p_private;
342     return stream_Size( p_demux->s );
343 }
344
345 mpc_bool_t ReaderCanSeek( void *p_private )
346 {
347     demux_t *p_demux = (demux_t*)p_private;
348     vlc_bool_t b_canseek;
349
350     stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_canseek );
351     return b_canseek;
352 }
353