]> git.sesse.net Git - vlc/blob - modules/demux/flac.c
Fixed flac demuxer segfault (/0) when seektable is empty.
[vlc] / modules / demux / flac.c
1 /*****************************************************************************
2  * flac.c : FLAC demux module for vlc
3  *****************************************************************************
4  * Copyright (C) 2001-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *          Laurent Aimar <fenrir@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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 /*****************************************************************************
26  * Preamble
27  *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34 #include <vlc_demux.h>
35 #include <vlc_meta.h>
36 #include <vlc_input.h>
37 #include <vlc_codec.h>
38 #include <assert.h>
39 #include <vlc_charset.h>
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( N_("FLAC demuxer") );
49     set_capability( "demux", 155 );
50     set_category( CAT_INPUT );
51     set_subcategory( SUBCAT_INPUT_DEMUX );
52     set_callbacks( Open, Close );
53     add_shortcut( "flac" );
54 vlc_module_end();
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 static int Demux  ( demux_t * );
60 static int Control( demux_t *, int, va_list );
61
62 static int  ReadMeta( demux_t *, uint8_t **pp_streaminfo, int *pi_streaminfo );
63
64 struct demux_sys_t
65 {
66     bool  b_start;
67     es_out_id_t *p_es;
68
69     /* Packetizer */
70     decoder_t *p_packetizer;
71
72     vlc_meta_t *p_meta;
73     audio_replay_gain_t replay_gain;
74
75     int64_t i_time_offset;
76     int64_t i_pts;
77     int64_t i_pts_start;
78
79     int64_t i_length; /* Length from stream info */
80     int64_t i_data_pos;
81
82     /* */
83     int         i_seekpoint;
84     seekpoint_t **seekpoint;
85
86     /* */
87     int                i_attachments;
88     input_attachment_t **attachments;
89     int                i_cover_idx;
90     int                i_cover_score;
91 };
92
93 #define STREAMINFO_SIZE 38
94 #define FLAC_PACKET_SIZE 16384
95
96 /*****************************************************************************
97  * Open: initializes ES structures
98  *****************************************************************************/
99 static int Open( vlc_object_t * p_this )
100 {
101     demux_t     *p_demux = (demux_t*)p_this;
102     demux_sys_t *p_sys;
103     const uint8_t *p_peek;
104     uint8_t     *p_streaminfo;
105     int         i_streaminfo;
106
107     /* Have a peep at the show. */
108     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
109
110     if( p_peek[0]!='f' || p_peek[1]!='L' || p_peek[2]!='a' || p_peek[3]!='C' )
111     {
112         if( !p_demux->b_force ) return VLC_EGENERIC;
113
114         /* User forced */
115         msg_Err( p_demux, "this doesn't look like a flac stream, "
116                  "continuing anyway" );
117     }
118
119     p_demux->pf_demux   = Demux;
120     p_demux->pf_control = Control;
121     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
122     p_sys->b_start = true;
123     p_sys->p_meta = NULL;
124     memset( &p_sys->replay_gain, 0, sizeof(p_sys->replay_gain) );
125     p_sys->i_length = 0;
126     p_sys->i_time_offset = 0;
127     p_sys->i_pts = 0;
128     p_sys->i_pts_start = 0;
129     p_sys->p_es = NULL;
130     TAB_INIT( p_sys->i_seekpoint, p_sys->seekpoint );
131     TAB_INIT( p_sys->i_attachments, p_sys->attachments);
132     p_sys->i_cover_idx = 0;
133     p_sys->i_cover_score = 0;
134
135     /* We need to read and store the STREAMINFO metadata */
136     if( ReadMeta( p_demux, &p_streaminfo, &i_streaminfo ) )
137     {
138         free( p_sys );
139         return VLC_EGENERIC;
140     }
141
142     /* Load the FLAC packetizer */
143     INIT_APACKETIZER( p_sys->p_packetizer, 'f', 'l', 'a', 'c' );
144
145     /* Store STREAMINFO for the decoder and packetizer */
146     p_streaminfo[4] |= 0x80; /* Fake this as the last metadata block */
147     p_sys->p_packetizer->fmt_in.i_extra = i_streaminfo;
148     p_sys->p_packetizer->fmt_in.p_extra = p_streaminfo;
149
150     p_sys->p_packetizer->p_module =
151         module_Need( p_sys->p_packetizer, "packetizer", NULL, 0 );
152     if( !p_sys->p_packetizer->p_module )
153     {
154         free( p_sys->p_packetizer->fmt_in.p_extra );
155         vlc_object_release( p_sys->p_packetizer );
156
157         msg_Err( p_demux, "cannot find flac packetizer" );
158         return VLC_EGENERIC;
159     }
160
161     if( p_sys->i_cover_idx < p_sys->i_attachments )
162     {
163         char psz_url[128];
164         if( !p_sys->p_meta )
165             p_sys->p_meta = vlc_meta_New();
166         snprintf( psz_url, sizeof(psz_url), "attachment://%s",
167                   p_sys->attachments[p_sys->i_cover_idx]->psz_name );
168         vlc_meta_Set( p_sys->p_meta, vlc_meta_ArtworkURL, psz_url );
169     }
170     vlc_audio_replay_gain_MergeFromMeta( &p_sys->replay_gain, p_sys->p_meta );
171     return VLC_SUCCESS;
172 }
173
174 /*****************************************************************************
175  * Close: frees unused data
176  *****************************************************************************/
177 static void Close( vlc_object_t * p_this )
178 {
179     demux_t     *p_demux = (demux_t*)p_this;
180     demux_sys_t *p_sys = p_demux->p_sys;
181
182     TAB_CLEAN( p_sys->i_seekpoint, p_sys->seekpoint );
183
184     int i;
185     for( i = 0; i < p_sys->i_attachments; i++ )
186         free( p_sys->attachments[i] );
187     TAB_CLEAN( p_sys->i_attachments, p_sys->attachments);
188
189     /* Unneed module */
190     module_Unneed( p_sys->p_packetizer, p_sys->p_packetizer->p_module );
191
192     free( p_sys->p_packetizer->fmt_in.p_extra );
193
194     /* Delete the decoder */
195     vlc_object_release( p_sys->p_packetizer );
196     if( p_sys->p_meta )
197         vlc_meta_Delete( p_sys->p_meta );
198     free( p_sys );
199 }
200
201 /*****************************************************************************
202  * Demux: reads and demuxes data packets
203  *****************************************************************************
204  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
205  *****************************************************************************/
206 static int Demux( demux_t *p_demux )
207 {
208     demux_sys_t *p_sys = p_demux->p_sys;
209     block_t     *p_block_in, *p_block_out;
210
211     if( !( p_block_in = stream_Block( p_demux->s, FLAC_PACKET_SIZE ) ) )
212         return 0;
213
214     p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start ? 1 : 0;
215     p_sys->b_start = false;
216
217     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
218                 p_sys->p_packetizer, &p_block_in )) )
219     {
220         while( p_block_out )
221         {
222             block_t *p_next = p_block_out->p_next;
223
224             p_block_out->p_next = NULL;
225
226             if( p_sys->p_es == NULL )
227             {
228                 p_sys->p_packetizer->fmt_out.b_packetized = true;
229                 p_sys->p_packetizer->fmt_out.audio_replay_gain = p_sys->replay_gain;
230                 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
231             }
232
233             /* set PCR */
234             if( p_block_out->i_dts >= p_sys->i_pts_start )
235                 es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
236             else
237                 es_out_Control( p_demux->out, ES_OUT_RESET_PCR );
238
239             p_sys->i_pts = p_block_out->i_dts;
240             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
241
242             p_block_out = p_next;
243         }
244     }
245     return 1;
246 }
247
248 /*****************************************************************************
249  * Control:
250  *****************************************************************************/
251 static int64_t ControlGetLength( demux_t *p_demux )
252 {
253     demux_sys_t *p_sys = p_demux->p_sys;
254     const int64_t i_size = stream_Size(p_demux->s) - p_sys->i_data_pos;
255     int64_t i_length = p_sys->i_length;
256     int i;
257
258     /* Try to fix length using seekpoint and current size for truncated file */
259     for( i = p_sys->i_seekpoint-1; i >= 0; i-- )
260     {
261         seekpoint_t *s = p_sys->seekpoint[i];
262         if( s->i_byte_offset <= i_size )
263         {
264             if( i+1 < p_sys->i_seekpoint )
265             {
266                 /* Broken file */
267                 seekpoint_t *n = p_sys->seekpoint[i+1];
268                 assert( n->i_byte_offset != s->i_byte_offset); /* Should be ensured by ParseSeekTable */
269                 i_length = s->i_time_offset + (n->i_time_offset-s->i_time_offset) * (i_size-s->i_byte_offset) / (n->i_byte_offset-s->i_byte_offset);
270             }
271             break;
272         }
273     }
274     return i_length;
275 }
276
277 static int64_t ControlGetTime( demux_t *p_demux )
278 {
279     demux_sys_t *p_sys = p_demux->p_sys;
280     return __MAX(p_sys->i_pts, p_sys->i_pts_start) + p_sys->i_time_offset;
281 }
282
283 static int ControlSetTime( demux_t *p_demux, int64_t i_time )
284 {
285     demux_sys_t *p_sys = p_demux->p_sys;
286     int64_t i_delta_time;
287     bool b_seekable;
288     int i;
289
290     /* */
291     stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_seekable );
292     if( !b_seekable )
293         return VLC_EGENERIC;
294
295     /* */
296     assert( p_sys->i_seekpoint > 0 );   /* ReadMeta ensure at least (0,0) */
297     for( i = p_sys->i_seekpoint-1; i >= 0; i-- )
298     {
299         if( p_sys->seekpoint[i]->i_time_offset <= i_time )
300             break;
301     }
302     i_delta_time = i_time - p_sys->seekpoint[i]->i_time_offset;
303
304     /* XXX We do exact seek if it's not too far away(45s) */
305     if( i_delta_time < 45*INT64_C(1000000) )
306     {
307         if( stream_Seek( p_demux->s, p_sys->seekpoint[i]->i_byte_offset+p_sys->i_data_pos ) )
308             return VLC_EGENERIC;
309
310         p_sys->i_time_offset = p_sys->seekpoint[i]->i_time_offset - p_sys->i_pts;
311         p_sys->i_pts_start = p_sys->i_pts+i_delta_time;
312         es_out_Control( p_demux->out, ES_OUT_SET_NEXT_DISPLAY_TIME, p_sys->p_es, p_sys->i_pts_start );
313     }
314     else
315     {
316         int64_t i_delta_offset;
317         int64_t i_next_time;
318         int64_t i_next_offset;
319
320         if( i+1 < p_sys->i_seekpoint )
321         {
322             i_next_time   = p_sys->seekpoint[i+1]->i_time_offset;
323             i_next_offset = p_sys->seekpoint[i+1]->i_byte_offset;
324         }
325         else
326         {
327             i_next_time   = p_sys->i_length;
328             i_next_offset = stream_Size(p_demux->s)-p_sys->i_data_pos;
329         }
330
331         i_delta_offset = 0;
332         if( i_next_time-p_sys->seekpoint[i]->i_time_offset > 0 )
333             i_delta_offset = (i_next_offset - p_sys->seekpoint[i]->i_byte_offset) * i_delta_time /
334                              (i_next_time-p_sys->seekpoint[i]->i_time_offset);
335
336         if( stream_Seek( p_demux->s, p_sys->seekpoint[i]->i_byte_offset+p_sys->i_data_pos + i_delta_offset ) )
337             return VLC_EGENERIC;
338
339         p_sys->i_pts_start = p_sys->i_pts;
340         p_sys->i_time_offset = (p_sys->seekpoint[i]->i_time_offset+i_delta_time) - p_sys->i_pts;
341     }
342     return VLC_SUCCESS;
343 }
344
345 static int Control( demux_t *p_demux, int i_query, va_list args )
346 {
347     demux_sys_t *p_sys = p_demux->p_sys;
348
349     if( i_query == DEMUX_GET_META )
350     {
351         vlc_meta_t *p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t* );
352         if( p_demux->p_sys->p_meta )
353             vlc_meta_Merge( p_meta, p_demux->p_sys->p_meta );
354         return VLC_SUCCESS;
355     }
356     else if( i_query == DEMUX_HAS_UNSUPPORTED_META )
357     {
358         bool *pb_bool = (bool*)va_arg( args, bool* );
359         *pb_bool = true;
360         return VLC_SUCCESS;
361     }
362     else if( i_query == DEMUX_GET_LENGTH )
363     {
364         int64_t *pi64 = (int64_t*)va_arg( args, int64_t * );
365         *pi64 = ControlGetLength( p_demux );
366         return VLC_SUCCESS;
367     }
368     else if( i_query == DEMUX_SET_TIME )
369     {
370         int64_t i_time = (int64_t)va_arg( args, int64_t );
371         return ControlSetTime( p_demux, i_time );
372     }
373     else if( i_query == DEMUX_SET_POSITION )
374     {
375         const double f = (double)va_arg( args, double );
376         int64_t i_time = f * ControlGetLength( p_demux );
377         return ControlSetTime( p_demux, i_time );
378     }
379     else if( i_query == DEMUX_GET_TIME )
380     {
381         int64_t *pi64 = (int64_t*)va_arg( args, int64_t * );
382         *pi64 = ControlGetTime( p_demux );
383         return VLC_SUCCESS;
384     }
385     else if( i_query == DEMUX_GET_POSITION )
386     {
387         double *pf = (double*)va_arg( args, double * );
388         const int64_t i_length = ControlGetLength(p_demux);
389         if( i_length > 0 )
390             *pf = (double)ControlGetTime(p_demux) / (double)i_length;
391         else
392             *pf= 0.0;
393         return VLC_SUCCESS;
394     }
395     else if( i_query == DEMUX_GET_ATTACHMENTS )
396     {
397         input_attachment_t ***ppp_attach =
398             (input_attachment_t***)va_arg( args, input_attachment_t*** );
399         int *pi_int = (int*)va_arg( args, int * );
400         int i;
401
402         if( p_sys->i_attachments <= 0 )
403             return VLC_EGENERIC;
404
405         *pi_int = p_sys->i_attachments;;
406         *ppp_attach = malloc( sizeof(input_attachment_t**) * p_sys->i_attachments );
407         for( i = 0; i < p_sys->i_attachments; i++ )
408             (*ppp_attach)[i] = vlc_input_attachment_Duplicate( p_sys->attachments[i] );
409         return VLC_SUCCESS;
410     }
411
412     return demux_vaControlHelper( p_demux->s, p_sys->i_data_pos, -1,
413                                    8*0, 1, i_query, args );
414 }
415
416 enum
417 {
418     META_STREAMINFO = 0,
419     META_SEEKTABLE = 3,
420     META_COMMENT = 4,
421     META_PICTURE = 6,
422 };
423
424 static inline int Get24bBE( const uint8_t *p )
425 {
426     return (p[0] << 16)|(p[1] << 8)|(p[2]);
427 }
428
429 static void ParseStreamInfo( demux_t *p_demux, int *pi_rate, int64_t *pi_count, uint8_t *p_data, int i_data );
430 static void ParseSeekTable( demux_t *p_demux, const uint8_t *p_data, int i_data,
431                             int i_sample_rate );
432 static void ParseComment( demux_t *, const uint8_t *p_data, int i_data );
433 static void ParsePicture( demux_t *, const uint8_t *p_data, int i_data );
434
435 static int  ReadMeta( demux_t *p_demux, uint8_t **pp_streaminfo, int *pi_streaminfo )
436 {
437     demux_sys_t *p_sys = p_demux->p_sys;
438     int     i_peek;
439     const uint8_t *p_peek;
440     bool b_last;
441     int i_sample_rate;
442     int64_t i_sample_count;
443     seekpoint_t *s;
444
445     /* Read STREAMINFO */
446     i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
447     if( (p_peek[4] & 0x7F) != META_STREAMINFO )
448     {
449         msg_Err( p_demux, "this isn't a STREAMINFO metadata block" );
450         return VLC_EGENERIC;
451     }
452     if( Get24bBE(&p_peek[5]) != (STREAMINFO_SIZE - 4) )
453     {
454         msg_Err( p_demux, "invalid size for a STREAMINFO metadata block" );
455         return VLC_EGENERIC;
456     }
457
458     *pi_streaminfo = 4 + STREAMINFO_SIZE;
459     *pp_streaminfo = malloc( 4 + STREAMINFO_SIZE );
460     if( *pp_streaminfo == NULL )
461         return VLC_EGENERIC;
462
463     if( stream_Read( p_demux->s, *pp_streaminfo, 4+STREAMINFO_SIZE ) != 4+STREAMINFO_SIZE )
464     {
465         msg_Err( p_demux, "failed to read STREAMINFO metadata block" );
466         free( *pp_streaminfo );
467         return VLC_EGENERIC;
468     }
469
470     /* */
471     ParseStreamInfo( p_demux, &i_sample_rate, &i_sample_count,  *pp_streaminfo, *pi_streaminfo );
472     if( i_sample_rate > 0 )
473         p_sys->i_length = i_sample_count * INT64_C(1000000)/i_sample_rate;
474
475     /* Be sure we have seekpoint 0 */
476     s = vlc_seekpoint_New();
477     s->i_time_offset = 0;
478     s->i_byte_offset = 0;
479     TAB_APPEND( p_sys->i_seekpoint, p_sys->seekpoint, s );
480
481     b_last = (*pp_streaminfo)[4]&0x80;
482     while( !b_last )
483     {
484         int i_len;
485         int i_type;
486
487         i_peek = stream_Peek( p_demux->s, &p_peek, 4 );
488         if( i_peek < 4 )
489             break;
490         b_last = p_peek[0]&0x80;
491         i_type = p_peek[0]&0x7f;
492         i_len  = Get24bBE( &p_peek[1] );
493
494         if( i_type == META_SEEKTABLE )
495         {
496             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
497             if( i_peek == 4+i_len )
498                 ParseSeekTable( p_demux, p_peek, i_peek, i_sample_rate );
499         }
500         else if( i_type == META_COMMENT )
501         {
502             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
503             if( i_peek == 4+i_len )
504                 ParseComment( p_demux, p_peek, i_peek );
505         }
506         else if( i_type == META_PICTURE )
507         {
508             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
509             if( i_peek == 4+i_len )
510                 ParsePicture( p_demux, p_peek, i_peek );
511         }
512
513         if( stream_Read( p_demux->s, NULL, 4+i_len ) < 4+i_len )
514             break;
515     }
516
517     /* */
518     p_sys->i_data_pos = stream_Tell( p_demux->s );
519
520     return VLC_SUCCESS;
521 }
522 static void ParseStreamInfo( demux_t *p_demux, int *pi_rate, int64_t *pi_count, uint8_t *p_data, int i_data )
523 {
524     const int i_skip = 4+4;
525
526     *pi_rate = GetDWBE(&p_data[i_skip+4+6]) >> 12;
527     *pi_count = GetQWBE(&p_data[i_skip+4+6]) &  ((INT64_C(1)<<36)-1);
528 }
529
530 static void ParseSeekTable( demux_t *p_demux, const uint8_t *p_data, int i_data,
531                             int i_sample_rate )
532 {
533     demux_sys_t *p_sys = p_demux->p_sys;
534     seekpoint_t *s;
535     int i;
536
537     if( i_sample_rate <= 0 )
538         return;
539
540     /* */
541     for( i = 0; i < (i_data-4)/18; i++ )
542     {
543         const int64_t i_sample = GetQWBE( &p_data[4+18*i+0] );
544         int j;
545
546         if( i_sample < 0 || i_sample >= INT64_MAX )
547             continue;
548
549         s = vlc_seekpoint_New();
550         s->i_time_offset = i_sample * INT64_C(1000000)/i_sample_rate;
551         s->i_byte_offset = GetQWBE( &p_data[4+18*i+8] );
552
553         /* Check for duplicate entry */
554         for( j = 0; j < p_sys->i_seekpoint; j++ )
555         {
556             if( p_sys->seekpoint[j]->i_time_offset == s->i_time_offset ||
557                 p_sys->seekpoint[j]->i_byte_offset == s->i_byte_offset )
558             {
559                 vlc_seekpoint_Delete( s );
560                 s = NULL;
561                 break;
562             }
563         }
564         if( s )
565         {
566             TAB_APPEND( p_sys->i_seekpoint, p_sys->seekpoint, s );
567         }
568     }
569     /* TODO sort it by size and remove wrong seek entry (time not increasing) */
570 }
571
572 #define RM(x) do { i_data -= (x); p_data += (x); } while(0)
573 static void ParseComment( demux_t *p_demux, const uint8_t *p_data, int i_data )
574 {
575     demux_sys_t *p_sys = p_demux->p_sys;
576     int n;
577     int i_comment;
578
579     if( i_data < 8 )
580         return;
581
582     RM(4);
583
584     n = GetDWLE(p_data); RM(4);
585     if( n < 0 || n > i_data )
586         return;
587 #if 0
588     if( n > 0 )
589     {
590         /* TODO report vendor string ? */
591         char *psz_vendor = psz_vendor = strndup( p_data, n );
592         msg_Dbg( p_demux, "FLAC: COMMENT vendor length=%d vendor=%s\n", n, psz_vendor );
593         free( psz_vendor );
594     }
595 #endif
596     RM(n);
597
598     if( i_data < 4 )
599         return;
600
601     i_comment = GetDWLE(p_data); RM(4);
602     if( i_comment <= 0 )
603         return;
604
605     p_sys->p_meta = vlc_meta_New();
606
607     for( ; i_comment > 0; i_comment-- )
608     {
609         char *psz;
610         if( i_data < 4 )
611             break;
612         n = GetDWLE(p_data); RM(4);
613         if( n > i_data )
614             break;
615         if( n <= 0 )
616             continue;
617
618         psz = strndup( p_data, n );
619         RM(n);
620
621         EnsureUTF8( psz );
622
623 #define IF_EXTRACT(txt,var) \
624     if( !strncasecmp(psz, txt, strlen(txt)) ) \
625     { \
626         const char *oldval = vlc_meta_Get( p_sys->p_meta, vlc_meta_ ## var ); \
627         if( oldval ) \
628         { \
629             char * newval; \
630             if( asprintf( &newval, "%s,%s", oldval, &psz[strlen(txt)] ) == -1 ) \
631                 newval = NULL; \
632             vlc_meta_Set( p_sys->p_meta, vlc_meta_ ## var, newval ); \
633             free( newval ); \
634         } \
635         else \
636             vlc_meta_Set( p_sys->p_meta, vlc_meta_ ## var, &psz[strlen(txt)] ); \
637     }
638         IF_EXTRACT("TITLE=", Title )
639         else IF_EXTRACT("ALBUM=", Album )
640         else IF_EXTRACT("TRACKNUMBER=", TrackNumber )
641         else IF_EXTRACT("ARTIST=", Artist )
642         else IF_EXTRACT("COPYRIGHT=", Copyright )
643         else IF_EXTRACT("DESCRIPTION=", Description )
644         else IF_EXTRACT("GENRE=", Genre )
645         else IF_EXTRACT("DATE=", Date )
646         else if( strchr( psz, '=' ) )
647         {
648             /* generic (PERFORMER/LICENSE/ORGANIZATION/LOCATION/CONTACT/ISRC,
649              * undocumented tags and replay gain ) */
650             char *p = strchr( psz, '=' );
651             *p++ = '\0';
652             vlc_meta_AddExtra( p_sys->p_meta, psz, p );
653         }
654 #undef IF_EXTRACT
655         free( psz );
656     }
657 #undef RM
658 }
659
660 static void ParsePicture( demux_t *p_demux, const uint8_t *p_data, int i_data )
661 {
662     static const int pi_cover_score[] = {
663         0,      /* other */
664         2, 1,   /* icons */
665         10,     /* front cover */
666         9,      /* back cover */
667         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
668         6,      /* movie/video screen capture */
669         0,
670         7,      /* Illustration */
671         8,      /* Band/Artist logotype */
672         0,      /* Publisher/Studio */
673     };
674     demux_sys_t *p_sys = p_demux->p_sys;
675     int i_type;
676     int i_len;
677     char *psz_mime = NULL;
678     char *psz_description = NULL;
679     input_attachment_t *p_attachment;
680     char psz_name[128];
681
682     if( i_data < 4 + 3*4 )
683         return;
684 #define RM(x) do { i_data -= (x); p_data += (x); } while(0)
685     RM(4);
686
687     i_type = GetDWBE( p_data ); RM(4);
688     i_len = GetDWBE( p_data ); RM(4);
689     if( i_len < 0 || i_data < i_len + 4 )
690         goto error;
691     psz_mime = strndup( p_data, i_len ); RM(i_len);
692     i_len = GetDWBE( p_data ); RM(4);
693     if( i_len < 0 || i_data < i_len + 4*4 + 4)
694         goto error;
695     psz_description = strndup( p_data, i_len ); RM(i_len);
696     EnsureUTF8( psz_description );
697     RM(4*4);
698     i_len = GetDWBE( p_data ); RM(4);
699     if( i_len < 0 || i_len > i_data )
700         goto error;
701
702     msg_Dbg( p_demux, "FLAC: Picture type=%d mime=%s description='%s' file length=%d",
703              i_type, psz_mime, psz_description, i_len );
704
705     snprintf( psz_name, sizeof(psz_name), "picture%d", p_sys->i_attachments );
706     if( !strcasecmp( psz_mime, "image/jpeg" ) )
707         strcat( psz_name, ".jpg" );
708     else if( !strcasecmp( psz_mime, "image/png" ) )
709         strcat( psz_name, ".png" );
710
711     p_attachment = vlc_input_attachment_New( psz_name, psz_mime, psz_description,
712                                              p_data, i_data );
713     TAB_APPEND( p_sys->i_attachments, p_sys->attachments, p_attachment );
714
715     if( i_type >= 0 && i_type < sizeof(pi_cover_score)/sizeof(pi_cover_score[0]) &&
716         p_sys->i_cover_score < pi_cover_score[i_type] )
717     {
718         p_sys->i_cover_idx = p_sys->i_attachments-1;
719         p_sys->i_cover_score = pi_cover_score[i_type];
720     }
721 error:
722     free( psz_mime );
723     free( psz_description );
724 }
725 #undef RM
726