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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vorbis.h: Vorbis Comment parser
  3.  *****************************************************************************
  4.  * Copyright (C) 2008 the VideoLAN team
  5.  * $Id: 6a96fa1bb6b196073809d7cb5098877fd73cf986 $
  6.  *
  7.  * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
  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. static inline void vorbis_ParseComment( vlc_meta_t **pp_meta, const uint8_t *p_data, int i_data )
  24. {
  25.     int n;
  26.     int i_comment;
  27.     if( i_data < 8 )
  28.         return;
  29. #define RM(x) do { i_data -= (x); p_data += (x); } while(0)
  30.     n = GetDWLE(p_data); RM(4);
  31.     if( n < 0 || n > i_data )
  32.         return;
  33. #if 0
  34.     if( n > 0 )
  35.     {
  36.         /* TODO report vendor string ? */
  37.         char *psz_vendor = psz_vendor = strndup( p_data, n );
  38.         free( psz_vendor );
  39.     }
  40. #endif
  41.     RM(n);
  42.     if( i_data < 4 )
  43.         return;
  44.     i_comment = GetDWLE(p_data); RM(4);
  45.     if( i_comment <= 0 )
  46.         return;
  47.     /* */
  48.     vlc_meta_t *p_meta = *pp_meta;
  49.     if( !p_meta )
  50.         *pp_meta = p_meta = vlc_meta_New();
  51.     if( !p_meta )
  52.         return;
  53.     for( ; i_comment > 0; i_comment-- )
  54.     {
  55.         char *psz;
  56.         if( i_data < 4 )
  57.             break;
  58.         n = GetDWLE(p_data); RM(4);
  59.         if( n > i_data )
  60.             break;
  61.         if( n <= 0 )
  62.             continue;
  63.         psz = strndup( (const char*)p_data, n );
  64.         RM(n);
  65.         EnsureUTF8( psz );
  66. #define IF_EXTRACT(txt,var) 
  67.     if( !strncasecmp(psz, txt, strlen(txt)) ) 
  68.     { 
  69.         const char *oldval = vlc_meta_Get( p_meta, vlc_meta_ ## var ); 
  70.         if( oldval ) 
  71.         { 
  72.             char * newval; 
  73.             if( asprintf( &newval, "%s,%s", oldval, &psz[strlen(txt)] ) == -1 ) 
  74.                 newval = NULL; 
  75.             vlc_meta_Set( p_meta, vlc_meta_ ## var, newval ); 
  76.             free( newval ); 
  77.         } 
  78.         else 
  79.             vlc_meta_Set( p_meta, vlc_meta_ ## var, &psz[strlen(txt)] ); 
  80.     }
  81.         IF_EXTRACT("TITLE=", Title )
  82.         else IF_EXTRACT("ALBUM=", Album )
  83.         else IF_EXTRACT("TRACKNUMBER=", TrackNumber )
  84.         else IF_EXTRACT("ARTIST=", Artist )
  85.         else IF_EXTRACT("COPYRIGHT=", Copyright )
  86.         else IF_EXTRACT("DESCRIPTION=", Description )
  87.         else IF_EXTRACT("GENRE=", Genre )
  88.         else IF_EXTRACT("DATE=", Date )
  89.         else if( strchr( psz, '=' ) )
  90.         {
  91.             /* generic (PERFORMER/LICENSE/ORGANIZATION/LOCATION/CONTACT/ISRC,
  92.              * undocumented tags and replay gain ) */
  93.             char *p = strchr( psz, '=' );
  94.             *p++ = '';
  95.             vlc_meta_AddExtra( p_meta, psz, p );
  96.         }
  97. #undef IF_EXTRACT
  98.         free( psz );
  99.     }
  100. #undef RM
  101. }