flac.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:20k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * flac.c : FLAC demux module for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2001-2007 the VideoLAN team
  5.  * $Id: 17b45ff6cc072d6c7eeb38791efb3865047be88b $
  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.  * Preamble
  26.  *****************************************************************************/
  27. #ifdef HAVE_CONFIG_H
  28. # include "config.h"
  29. #endif
  30. #include <vlc_common.h>
  31. #include <vlc_plugin.h>
  32. #include <vlc_demux.h>
  33. #include <vlc_meta.h>
  34. #include <vlc_input.h>
  35. #include <vlc_codec.h>
  36. #include <assert.h>
  37. #include <vlc_charset.h>
  38. #include "vorbis.h"
  39. /*****************************************************************************
  40.  * Module descriptor
  41.  *****************************************************************************/
  42. static int  Open  ( vlc_object_t * );
  43. static void Close ( vlc_object_t * );
  44. vlc_module_begin ()
  45.     set_description( N_("FLAC demuxer") )
  46.     set_capability( "demux", 155 )
  47.     set_category( CAT_INPUT )
  48.     set_subcategory( SUBCAT_INPUT_DEMUX )
  49.     set_callbacks( Open, Close )
  50.     add_shortcut( "flac" )
  51. vlc_module_end ()
  52. /*****************************************************************************
  53.  * Local prototypes
  54.  *****************************************************************************/
  55. static int Demux  ( demux_t * );
  56. static int Control( demux_t *, int, va_list );
  57. static int  ReadMeta( demux_t *, uint8_t **pp_streaminfo, int *pi_streaminfo );
  58. struct demux_sys_t
  59. {
  60.     bool  b_start;
  61.     es_out_id_t *p_es;
  62.     /* Packetizer */
  63.     decoder_t *p_packetizer;
  64.     vlc_meta_t *p_meta;
  65.     audio_replay_gain_t replay_gain;
  66.     int64_t i_time_offset;
  67.     int64_t i_pts;
  68.     int64_t i_pts_start;
  69.     int64_t i_length; /* Length from stream info */
  70.     int64_t i_data_pos;
  71.     /* */
  72.     int         i_seekpoint;
  73.     seekpoint_t **seekpoint;
  74.     /* */
  75.     int                i_attachments;
  76.     input_attachment_t **attachments;
  77.     int                i_cover_idx;
  78.     int                i_cover_score;
  79. };
  80. #define STREAMINFO_SIZE 38
  81. #define FLAC_PACKET_SIZE 16384
  82. /*****************************************************************************
  83.  * Open: initializes ES structures
  84.  *****************************************************************************/
  85. static int Open( vlc_object_t * p_this )
  86. {
  87.     demux_t     *p_demux = (demux_t*)p_this;
  88.     demux_sys_t *p_sys;
  89.     const uint8_t *p_peek;
  90.     uint8_t     *p_streaminfo;
  91.     int         i_streaminfo;
  92.     es_format_t fmt;
  93.     /* Have a peep at the show. */
  94.     if( stream_Peek( p_demux->s, &p_peek, 4 ) < 4 ) return VLC_EGENERIC;
  95.     if( p_peek[0]!='f' || p_peek[1]!='L' || p_peek[2]!='a' || p_peek[3]!='C' )
  96.     {
  97.         if( !p_demux->b_force ) return VLC_EGENERIC;
  98.         /* User forced */
  99.         msg_Err( p_demux, "this doesn't look like a flac stream, "
  100.                  "continuing anyway" );
  101.     }
  102.     p_demux->pf_demux   = Demux;
  103.     p_demux->pf_control = Control;
  104.     p_demux->p_sys      = p_sys = malloc( sizeof( demux_sys_t ) );
  105.     p_sys->b_start = true;
  106.     p_sys->p_meta = NULL;
  107.     memset( &p_sys->replay_gain, 0, sizeof(p_sys->replay_gain) );
  108.     p_sys->i_length = 0;
  109.     p_sys->i_time_offset = 0;
  110.     p_sys->i_pts = 0;
  111.     p_sys->i_pts_start = 0;
  112.     p_sys->p_es = NULL;
  113.     TAB_INIT( p_sys->i_seekpoint, p_sys->seekpoint );
  114.     TAB_INIT( p_sys->i_attachments, p_sys->attachments);
  115.     p_sys->i_cover_idx = 0;
  116.     p_sys->i_cover_score = 0;
  117.     /* We need to read and store the STREAMINFO metadata */
  118.     if( ReadMeta( p_demux, &p_streaminfo, &i_streaminfo ) )
  119.     {
  120.         free( p_sys );
  121.         return VLC_EGENERIC;
  122.     }
  123.     /* Load the FLAC packetizer */
  124.     /* Store STREAMINFO for the decoder and packetizer */
  125.     p_streaminfo[4] |= 0x80; /* Fake this as the last metadata block */
  126.     es_format_Init( &fmt, AUDIO_ES, VLC_FOURCC( 'f', 'l', 'a', 'c' ) );
  127.     fmt.i_extra = i_streaminfo;
  128.     fmt.p_extra = p_streaminfo;
  129.     p_sys->p_packetizer = demux_PacketizerNew( p_demux, &fmt, "flac" );
  130.     if( !p_sys->p_packetizer )
  131.     {
  132.         free( p_sys );
  133.         return VLC_EGENERIC;
  134.     }
  135.     if( p_sys->i_cover_idx < p_sys->i_attachments )
  136.     {
  137.         char psz_url[128];
  138.         if( !p_sys->p_meta )
  139.             p_sys->p_meta = vlc_meta_New();
  140.         snprintf( psz_url, sizeof(psz_url), "attachment://%s",
  141.                   p_sys->attachments[p_sys->i_cover_idx]->psz_name );
  142.         vlc_meta_Set( p_sys->p_meta, vlc_meta_ArtworkURL, psz_url );
  143.     }
  144.     vlc_audio_replay_gain_MergeFromMeta( &p_sys->replay_gain, p_sys->p_meta );
  145.     return VLC_SUCCESS;
  146. }
  147. /*****************************************************************************
  148.  * Close: frees unused data
  149.  *****************************************************************************/
  150. static void Close( vlc_object_t * p_this )
  151. {
  152.     demux_t     *p_demux = (demux_t*)p_this;
  153.     demux_sys_t *p_sys = p_demux->p_sys;
  154.     TAB_CLEAN( p_sys->i_seekpoint, p_sys->seekpoint );
  155.     int i;
  156.     for( i = 0; i < p_sys->i_attachments; i++ )
  157.         free( p_sys->attachments[i] );
  158.     TAB_CLEAN( p_sys->i_attachments, p_sys->attachments);
  159.     /* Delete the decoder */
  160.     demux_PacketizerDestroy( p_sys->p_packetizer );
  161.     if( p_sys->p_meta )
  162.         vlc_meta_Delete( p_sys->p_meta );
  163.     free( p_sys );
  164. }
  165. /*****************************************************************************
  166.  * Demux: reads and demuxes data packets
  167.  *****************************************************************************
  168.  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
  169.  *****************************************************************************/
  170. static int Demux( demux_t *p_demux )
  171. {
  172.     demux_sys_t *p_sys = p_demux->p_sys;
  173.     block_t     *p_block_in, *p_block_out;
  174.     if( !( p_block_in = stream_Block( p_demux->s, FLAC_PACKET_SIZE ) ) )
  175.         return 0;
  176.     p_block_in->i_pts = p_block_in->i_dts = p_sys->b_start ? 1 : 0;
  177.     p_sys->b_start = false;
  178.     while( (p_block_out = p_sys->p_packetizer->pf_packetize(
  179.                 p_sys->p_packetizer, &p_block_in )) )
  180.     {
  181.         while( p_block_out )
  182.         {
  183.             block_t *p_next = p_block_out->p_next;
  184.             p_block_out->p_next = NULL;
  185.             if( p_sys->p_es == NULL )
  186.             {
  187.                 p_sys->p_packetizer->fmt_out.b_packetized = true;
  188.                 p_sys->p_packetizer->fmt_out.audio_replay_gain = p_sys->replay_gain;
  189.                 p_sys->p_es = es_out_Add( p_demux->out, &p_sys->p_packetizer->fmt_out);
  190.             }
  191.             p_sys->i_pts = p_block_out->i_dts;
  192.             /* Correct timestamp */
  193.             p_block_out->i_pts += p_sys->i_time_offset;
  194.             p_block_out->i_dts += p_sys->i_time_offset;
  195.             /* set PCR */
  196.             es_out_Control( p_demux->out, ES_OUT_SET_PCR, p_block_out->i_dts );
  197.             es_out_Send( p_demux->out, p_sys->p_es, p_block_out );
  198.             p_block_out = p_next;
  199.         }
  200.     }
  201.     return 1;
  202. }
  203. /*****************************************************************************
  204.  * Control:
  205.  *****************************************************************************/
  206. static int64_t ControlGetLength( demux_t *p_demux )
  207. {
  208.     demux_sys_t *p_sys = p_demux->p_sys;
  209.     const int64_t i_size = stream_Size(p_demux->s) - p_sys->i_data_pos;
  210.     int64_t i_length = p_sys->i_length;
  211.     int i;
  212.     /* Try to fix length using seekpoint and current size for truncated file */
  213.     for( i = p_sys->i_seekpoint-1; i >= 0; i-- )
  214.     {
  215.         seekpoint_t *s = p_sys->seekpoint[i];
  216.         if( s->i_byte_offset <= i_size )
  217.         {
  218.             if( i+1 < p_sys->i_seekpoint )
  219.             {
  220.                 /* Broken file */
  221.                 seekpoint_t *n = p_sys->seekpoint[i+1];
  222.                 assert( n->i_byte_offset != s->i_byte_offset); /* Should be ensured by ParseSeekTable */
  223.                 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);
  224.             }
  225.             break;
  226.         }
  227.     }
  228.     return i_length;
  229. }
  230. static int64_t ControlGetTime( demux_t *p_demux )
  231. {
  232.     demux_sys_t *p_sys = p_demux->p_sys;
  233.     return __MAX(p_sys->i_pts, p_sys->i_pts_start) + p_sys->i_time_offset;
  234. }
  235. static int ControlSetTime( demux_t *p_demux, int64_t i_time )
  236. {
  237.     demux_sys_t *p_sys = p_demux->p_sys;
  238.     int64_t i_delta_time;
  239.     bool b_seekable;
  240.     int i;
  241.     /* */
  242.     stream_Control( p_demux->s, STREAM_CAN_SEEK, &b_seekable );
  243.     if( !b_seekable )
  244.         return VLC_EGENERIC;
  245.     /* */
  246.     assert( p_sys->i_seekpoint > 0 );   /* ReadMeta ensure at least (0,0) */
  247.     for( i = p_sys->i_seekpoint-1; i >= 0; i-- )
  248.     {
  249.         if( p_sys->seekpoint[i]->i_time_offset <= i_time )
  250.             break;
  251.     }
  252.     i_delta_time = i_time - p_sys->seekpoint[i]->i_time_offset;
  253.     /* XXX We do exact seek if it's not too far away(45s) */
  254.     if( i_delta_time < 45*INT64_C(1000000) )
  255.     {
  256.         if( stream_Seek( p_demux->s, p_sys->seekpoint[i]->i_byte_offset+p_sys->i_data_pos ) )
  257.             return VLC_EGENERIC;
  258.         p_sys->i_time_offset = p_sys->seekpoint[i]->i_time_offset - p_sys->i_pts;
  259.         p_sys->i_pts_start = p_sys->i_pts+i_delta_time;
  260.         es_out_Control( p_demux->out, ES_OUT_SET_NEXT_DISPLAY_TIME, p_sys->i_pts_start + p_sys->i_time_offset );
  261.     }
  262.     else
  263.     {
  264.         int64_t i_delta_offset;
  265.         int64_t i_next_time;
  266.         int64_t i_next_offset;
  267.         if( i+1 < p_sys->i_seekpoint )
  268.         {
  269.             i_next_time   = p_sys->seekpoint[i+1]->i_time_offset;
  270.             i_next_offset = p_sys->seekpoint[i+1]->i_byte_offset;
  271.         }
  272.         else
  273.         {
  274.             i_next_time   = p_sys->i_length;
  275.             i_next_offset = stream_Size(p_demux->s)-p_sys->i_data_pos;
  276.         }
  277.         i_delta_offset = 0;
  278.         if( i_next_time-p_sys->seekpoint[i]->i_time_offset > 0 )
  279.             i_delta_offset = (i_next_offset - p_sys->seekpoint[i]->i_byte_offset) * i_delta_time /
  280.                              (i_next_time-p_sys->seekpoint[i]->i_time_offset);
  281.         if( stream_Seek( p_demux->s, p_sys->seekpoint[i]->i_byte_offset+p_sys->i_data_pos + i_delta_offset ) )
  282.             return VLC_EGENERIC;
  283.         p_sys->i_pts_start = p_sys->i_pts;
  284.         p_sys->i_time_offset = (p_sys->seekpoint[i]->i_time_offset+i_delta_time) - p_sys->i_pts;
  285.     }
  286.     return VLC_SUCCESS;
  287. }
  288. static int Control( demux_t *p_demux, int i_query, va_list args )
  289. {
  290.     demux_sys_t *p_sys = p_demux->p_sys;
  291.     if( i_query == DEMUX_GET_META )
  292.     {
  293.         vlc_meta_t *p_meta = (vlc_meta_t *)va_arg( args, vlc_meta_t* );
  294.         if( p_demux->p_sys->p_meta )
  295.             vlc_meta_Merge( p_meta, p_demux->p_sys->p_meta );
  296.         return VLC_SUCCESS;
  297.     }
  298.     else if( i_query == DEMUX_HAS_UNSUPPORTED_META )
  299.     {
  300.         bool *pb_bool = (bool*)va_arg( args, bool* );
  301.         *pb_bool = true;
  302.         return VLC_SUCCESS;
  303.     }
  304.     else if( i_query == DEMUX_GET_LENGTH )
  305.     {
  306.         int64_t *pi64 = (int64_t*)va_arg( args, int64_t * );
  307.         *pi64 = ControlGetLength( p_demux );
  308.         return VLC_SUCCESS;
  309.     }
  310.     else if( i_query == DEMUX_SET_TIME )
  311.     {
  312.         int64_t i_time = (int64_t)va_arg( args, int64_t );
  313.         return ControlSetTime( p_demux, i_time );
  314.     }
  315.     else if( i_query == DEMUX_SET_POSITION )
  316.     {
  317.         const double f = (double)va_arg( args, double );
  318.         int64_t i_time = f * ControlGetLength( p_demux );
  319.         return ControlSetTime( p_demux, i_time );
  320.     }
  321.     else if( i_query == DEMUX_GET_TIME )
  322.     {
  323.         int64_t *pi64 = (int64_t*)va_arg( args, int64_t * );
  324.         *pi64 = ControlGetTime( p_demux );
  325.         return VLC_SUCCESS;
  326.     }
  327.     else if( i_query == DEMUX_GET_POSITION )
  328.     {
  329.         double *pf = (double*)va_arg( args, double * );
  330.         const int64_t i_length = ControlGetLength(p_demux);
  331.         if( i_length > 0 )
  332.             *pf = (double)ControlGetTime(p_demux) / (double)i_length;
  333.         else
  334.             *pf= 0.0;
  335.         return VLC_SUCCESS;
  336.     }
  337.     else if( i_query == DEMUX_GET_ATTACHMENTS )
  338.     {
  339.         input_attachment_t ***ppp_attach =
  340.             (input_attachment_t***)va_arg( args, input_attachment_t*** );
  341.         int *pi_int = (int*)va_arg( args, int * );
  342.         int i;
  343.         if( p_sys->i_attachments <= 0 )
  344.             return VLC_EGENERIC;
  345.         *pi_int = p_sys->i_attachments;;
  346.         *ppp_attach = malloc( sizeof(input_attachment_t**) * p_sys->i_attachments );
  347.         for( i = 0; i < p_sys->i_attachments; i++ )
  348.             (*ppp_attach)[i] = vlc_input_attachment_Duplicate( p_sys->attachments[i] );
  349.         return VLC_SUCCESS;
  350.     }
  351.     return demux_vaControlHelper( p_demux->s, p_sys->i_data_pos, -1,
  352.                                    8*0, 1, i_query, args );
  353. }
  354. enum
  355. {
  356.     META_STREAMINFO = 0,
  357.     META_SEEKTABLE = 3,
  358.     META_COMMENT = 4,
  359.     META_PICTURE = 6,
  360. };
  361. static inline int Get24bBE( const uint8_t *p )
  362. {
  363.     return (p[0] << 16)|(p[1] << 8)|(p[2]);
  364. }
  365. static void ParseStreamInfo( int *pi_rate, int64_t *pi_count, uint8_t *p_data );
  366. static void ParseSeekTable( demux_t *p_demux, const uint8_t *p_data, int i_data,
  367.                             int i_sample_rate );
  368. static void ParseComment( demux_t *, const uint8_t *p_data, int i_data );
  369. static void ParsePicture( demux_t *, const uint8_t *p_data, int i_data );
  370. static int  ReadMeta( demux_t *p_demux, uint8_t **pp_streaminfo, int *pi_streaminfo )
  371. {
  372.     demux_sys_t *p_sys = p_demux->p_sys;
  373.     int     i_peek;
  374.     const uint8_t *p_peek;
  375.     bool b_last;
  376.     int i_sample_rate;
  377.     int64_t i_sample_count;
  378.     seekpoint_t *s;
  379.     /* Read STREAMINFO */
  380.     i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
  381.     if( (p_peek[4] & 0x7F) != META_STREAMINFO )
  382.     {
  383.         msg_Err( p_demux, "this isn't a STREAMINFO metadata block" );
  384.         return VLC_EGENERIC;
  385.     }
  386.     if( Get24bBE(&p_peek[5]) != (STREAMINFO_SIZE - 4) )
  387.     {
  388.         msg_Err( p_demux, "invalid size for a STREAMINFO metadata block" );
  389.         return VLC_EGENERIC;
  390.     }
  391.     *pi_streaminfo = 4 + STREAMINFO_SIZE;
  392.     *pp_streaminfo = malloc( 4 + STREAMINFO_SIZE );
  393.     if( *pp_streaminfo == NULL )
  394.         return VLC_EGENERIC;
  395.     if( stream_Read( p_demux->s, *pp_streaminfo, 4+STREAMINFO_SIZE ) != 4+STREAMINFO_SIZE )
  396.     {
  397.         msg_Err( p_demux, "failed to read STREAMINFO metadata block" );
  398.         free( *pp_streaminfo );
  399.         return VLC_EGENERIC;
  400.     }
  401.     /* */
  402.     ParseStreamInfo( &i_sample_rate, &i_sample_count, *pp_streaminfo );
  403.     if( i_sample_rate > 0 )
  404.         p_sys->i_length = i_sample_count * INT64_C(1000000)/i_sample_rate;
  405.     /* Be sure we have seekpoint 0 */
  406.     s = vlc_seekpoint_New();
  407.     s->i_time_offset = 0;
  408.     s->i_byte_offset = 0;
  409.     TAB_APPEND( p_sys->i_seekpoint, p_sys->seekpoint, s );
  410.     b_last = (*pp_streaminfo)[4]&0x80;
  411.     while( !b_last )
  412.     {
  413.         int i_len;
  414.         int i_type;
  415.         i_peek = stream_Peek( p_demux->s, &p_peek, 4 );
  416.         if( i_peek < 4 )
  417.             break;
  418.         b_last = p_peek[0]&0x80;
  419.         i_type = p_peek[0]&0x7f;
  420.         i_len  = Get24bBE( &p_peek[1] );
  421.         if( i_type == META_SEEKTABLE )
  422.         {
  423.             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
  424.             if( i_peek == 4+i_len )
  425.                 ParseSeekTable( p_demux, p_peek, i_peek, i_sample_rate );
  426.         }
  427.         else if( i_type == META_COMMENT )
  428.         {
  429.             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
  430.             if( i_peek == 4+i_len )
  431.                 ParseComment( p_demux, p_peek, i_peek );
  432.         }
  433.         else if( i_type == META_PICTURE )
  434.         {
  435.             i_peek = stream_Peek( p_demux->s, &p_peek, 4+i_len );
  436.             if( i_peek == 4+i_len )
  437.                 ParsePicture( p_demux, p_peek, i_peek );
  438.         }
  439.         if( stream_Read( p_demux->s, NULL, 4+i_len ) < 4+i_len )
  440.             break;
  441.     }
  442.     /* */
  443.     p_sys->i_data_pos = stream_Tell( p_demux->s );
  444.     return VLC_SUCCESS;
  445. }
  446. static void ParseStreamInfo( int *pi_rate, int64_t *pi_count, uint8_t *p_data )
  447. {
  448.     const int i_skip = 4+4;
  449.     *pi_rate = GetDWBE(&p_data[i_skip+4+6]) >> 12;
  450.     *pi_count = GetQWBE(&p_data[i_skip+4+6]) &  ((INT64_C(1)<<36)-1);
  451. }
  452. static void ParseSeekTable( demux_t *p_demux, const uint8_t *p_data, int i_data,
  453.                             int i_sample_rate )
  454. {
  455.     demux_sys_t *p_sys = p_demux->p_sys;
  456.     seekpoint_t *s;
  457.     int i;
  458.     if( i_sample_rate <= 0 )
  459.         return;
  460.     /* */
  461.     for( i = 0; i < (i_data-4)/18; i++ )
  462.     {
  463.         const int64_t i_sample = GetQWBE( &p_data[4+18*i+0] );
  464.         int j;
  465.         if( i_sample < 0 || i_sample >= INT64_MAX )
  466.             continue;
  467.         s = vlc_seekpoint_New();
  468.         s->i_time_offset = i_sample * INT64_C(1000000)/i_sample_rate;
  469.         s->i_byte_offset = GetQWBE( &p_data[4+18*i+8] );
  470.         /* Check for duplicate entry */
  471.         for( j = 0; j < p_sys->i_seekpoint; j++ )
  472.         {
  473.             if( p_sys->seekpoint[j]->i_time_offset == s->i_time_offset ||
  474.                 p_sys->seekpoint[j]->i_byte_offset == s->i_byte_offset )
  475.             {
  476.                 vlc_seekpoint_Delete( s );
  477.                 s = NULL;
  478.                 break;
  479.             }
  480.         }
  481.         if( s )
  482.         {
  483.             TAB_APPEND( p_sys->i_seekpoint, p_sys->seekpoint, s );
  484.         }
  485.     }
  486.     /* TODO sort it by size and remove wrong seek entry (time not increasing) */
  487. }
  488. #define RM(x) do { i_data -= (x); p_data += (x); } while(0)
  489. static void ParseComment( demux_t *p_demux, const uint8_t *p_data, int i_data )
  490. {
  491.     demux_sys_t *p_sys = p_demux->p_sys;
  492.     if( i_data < 4 )
  493.         return;
  494.     vorbis_ParseComment( &p_sys->p_meta, &p_data[4], i_data - 4 );
  495. }
  496. static void ParsePicture( demux_t *p_demux, const uint8_t *p_data, int i_data )
  497. {
  498.     static const int pi_cover_score[] = {
  499.         0,      /* other */
  500.         2, 1,   /* icons */
  501.         10,     /* front cover */
  502.         9,      /* back cover */
  503.         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
  504.         6,      /* movie/video screen capture */
  505.         0,
  506.         7,      /* Illustration */
  507.         8,      /* Band/Artist logotype */
  508.         0,      /* Publisher/Studio */
  509.     };
  510.     demux_sys_t *p_sys = p_demux->p_sys;
  511.     int i_type;
  512.     int i_len;
  513.     char *psz_mime = NULL;
  514.     char *psz_description = NULL;
  515.     input_attachment_t *p_attachment;
  516.     char psz_name[128];
  517.     if( i_data < 4 + 3*4 )
  518.         return;
  519. #define RM(x) do { i_data -= (x); p_data += (x); } while(0)
  520.     RM(4);
  521.     i_type = GetDWBE( p_data ); RM(4);
  522.     i_len = GetDWBE( p_data ); RM(4);
  523.     if( i_len < 0 || i_data < i_len + 4 )
  524.         goto error;
  525.     psz_mime = strndup( (const char*)p_data, i_len ); RM(i_len);
  526.     i_len = GetDWBE( p_data ); RM(4);
  527.     if( i_len < 0 || i_data < i_len + 4*4 + 4)
  528.         goto error;
  529.     psz_description = strndup( (const char*)p_data, i_len ); RM(i_len);
  530.     EnsureUTF8( psz_description );
  531.     RM(4*4);
  532.     i_len = GetDWBE( p_data ); RM(4);
  533.     if( i_len < 0 || i_len > i_data )
  534.         goto error;
  535.     msg_Dbg( p_demux, "FLAC: Picture type=%d mime=%s description='%s' file length=%d",
  536.              i_type, psz_mime, psz_description, i_len );
  537.     snprintf( psz_name, sizeof(psz_name), "picture%d", p_sys->i_attachments );
  538.     if( !strcasecmp( psz_mime, "image/jpeg" ) )
  539.         strcat( psz_name, ".jpg" );
  540.     else if( !strcasecmp( psz_mime, "image/png" ) )
  541.         strcat( psz_name, ".png" );
  542.     p_attachment = vlc_input_attachment_New( psz_name, psz_mime, psz_description,
  543.                                              p_data, i_data );
  544.     TAB_APPEND( p_sys->i_attachments, p_sys->attachments, p_attachment );
  545.     if( i_type >= 0 && (unsigned int)i_type < sizeof(pi_cover_score)/sizeof(pi_cover_score[0]) &&
  546.         p_sys->i_cover_score < pi_cover_score[i_type] )
  547.     {
  548.         p_sys->i_cover_idx = p_sys->i_attachments-1;
  549.         p_sys->i_cover_score = pi_cover_score[i_type];
  550.     }
  551. error:
  552.     free( psz_mime );
  553.     free( psz_description );
  554. }
  555. #undef RM