]> git.sesse.net Git - vlc/blob - modules/demux/mpc.c
taglib: support for id3v2 embedded album art
[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     p_demux->p_private = malloc( sizeof( demux_meta_t ) );
193     if( !p_demux->p_private )
194         return VLC_ENOMEM;
195     if( ( p_id3 = module_Need( p_demux, "meta reader", NULL, 0 ) ) )
196     {
197         demux_meta_t *p_demux_meta = (demux_meta_t *)p_demux->p_private;
198         p_sys->p_meta = p_demux_meta->p_meta;
199         module_Unneed( p_demux, p_id3 );
200         TAB_CLEAN( p_demux_meta->i_attachments, p_demux_meta->attachments );
201     }
202     free( p_demux->p_private );
203
204     if( !p_sys->p_meta )
205         p_sys->p_meta = vlc_meta_New();
206
207     vlc_audio_replay_gain_MergeFromMeta( &fmt.audio_replay_gain, p_sys->p_meta );
208     p_sys->p_es = es_out_Add( p_demux->out, &fmt );
209
210     return VLC_SUCCESS;
211 }
212
213 /*****************************************************************************
214  * Close: frees unused data
215  *****************************************************************************/
216 static void Close( vlc_object_t * p_this )
217 {
218     demux_t        *p_demux = (demux_t*)p_this;
219     demux_sys_t    *p_sys = p_demux->p_sys;
220
221     free( p_sys );
222 }
223
224 /*****************************************************************************
225  * Demux:
226  *****************************************************************************
227  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
228  *****************************************************************************/
229 static int Demux( demux_t *p_demux )
230 {
231     demux_sys_t *p_sys = p_demux->p_sys;
232     block_t     *p_data;
233     int i_ret;
234
235     p_data = block_New( p_demux,
236                         MPC_DECODER_BUFFER_LENGTH*sizeof(MPC_SAMPLE_FORMAT) );
237     i_ret = mpc_decoder_decode( &p_sys->decoder,
238                                (MPC_SAMPLE_FORMAT*)p_data->p_buffer,
239                                NULL, NULL );
240     if( i_ret <= 0 )
241     {
242         block_Release( p_data );
243         return i_ret < 0 ? -1 : 0;
244     }
245
246     /* */
247     p_data->i_buffer = i_ret * sizeof(MPC_SAMPLE_FORMAT) * p_sys->info.channels;
248     p_data->i_dts = p_data->i_pts =
249             1 + I64C(1000000) * p_sys->i_position / p_sys->info.sample_freq;
250
251     es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_data->i_dts );
252
253     es_out_Send( p_demux->out, p_sys->p_es, p_data );
254
255     /* */
256     p_sys->i_position += i_ret;
257
258     return 1;
259 }
260
261 /*****************************************************************************
262  * Control:
263  *****************************************************************************/
264 static int Control( demux_t *p_demux, int i_query, va_list args )
265 {
266     demux_sys_t *p_sys = p_demux->p_sys;
267     double   f, *pf;
268     int64_t i64, *pi64;
269     vlc_meta_t *p_meta;
270
271     switch( i_query )
272     {
273         case DEMUX_GET_META:
274             p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t* );
275             if( p_sys->p_meta )
276                 vlc_meta_Merge( p_meta, p_sys->p_meta );
277             else
278                 p_meta = NULL;
279             return VLC_SUCCESS;
280
281         case DEMUX_GET_LENGTH:
282             pi64 = (int64_t*)va_arg( args, int64_t * );
283             *pi64 = I64C(1000000) * p_sys->info.pcm_samples /
284                         p_sys->info.sample_freq;
285             return VLC_SUCCESS;
286
287         case DEMUX_GET_POSITION:
288             pf = (double*)va_arg( args, double * );
289             if( p_sys->info.pcm_samples > 0 )
290                 *pf = (double) p_sys->i_position /
291                       (double)p_sys->info.pcm_samples;
292             else
293                 *pf = 0.0;
294             return VLC_SUCCESS;
295
296         case DEMUX_GET_TIME:
297             pi64 = (int64_t*)va_arg( args, int64_t * );
298             *pi64 = I64C(1000000) * p_sys->i_position /
299                         p_sys->info.sample_freq;
300             return VLC_SUCCESS;
301
302         case DEMUX_SET_POSITION:
303             f = (double)va_arg( args, double );
304             i64 = (int64_t)(f * p_sys->info.pcm_samples);
305             if( mpc_decoder_seek_sample( &p_sys->decoder, i64 ) )
306             {
307                 p_sys->i_position = i64;
308                 return VLC_SUCCESS;
309             }
310             return VLC_EGENERIC;
311
312         case DEMUX_SET_TIME:
313             i64 = (int64_t)va_arg( args, int64_t );
314             if( mpc_decoder_seek_sample( &p_sys->decoder, i64 ) )
315             {
316                 p_sys->i_position = i64;
317                 return VLC_SUCCESS;
318             }
319             return VLC_EGENERIC;
320
321         default:
322             return VLC_EGENERIC;
323     }
324 }
325
326 mpc_int32_t ReaderRead( void *p_private, void *dst, mpc_int32_t i_size )
327 {
328     demux_t *p_demux = (demux_t*)p_private;
329     return stream_Read( p_demux->s, dst, i_size );
330 }
331
332 mpc_bool_t ReaderSeek( void *p_private, mpc_int32_t i_offset )
333 {
334     demux_t *p_demux = (demux_t*)p_private;
335     return !stream_Seek( p_demux->s, i_offset );
336 }
337
338 mpc_int32_t ReaderTell( void *p_private)
339 {
340     demux_t *p_demux = (demux_t*)p_private;
341     return stream_Tell( p_demux->s );
342 }
343
344 mpc_int32_t ReaderGetSize( void *p_private )
345 {
346     demux_t *p_demux = (demux_t*)p_private;
347     return stream_Size( p_demux->s );
348 }
349
350 mpc_bool_t ReaderCanSeek( void *p_private )
351 {
352     demux_t *p_demux = (demux_t*)p_private;
353     vlc_bool_t b_canseek;
354
355     stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_canseek );
356     return b_canseek;
357 }
358