id3.c
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * id3.c: simple id3 tag skipper
  3.  *****************************************************************************
  4.  * Copyright (C) 2001 VideoLAN
  5.  * $Id: id3.c 8036 2004-06-23 10:00:21Z zorglub $
  6.  *
  7.  * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <stdlib.h>                                      /* malloc(), free() */
  27. #include <string.h>
  28. #include <vlc/vlc.h>
  29. #include <vlc/input.h>
  30. /*****************************************************************************
  31.  * Local prototypes
  32.  *****************************************************************************/
  33. static int  SkipID3Tag ( vlc_object_t * );
  34. /*****************************************************************************
  35.  * Module descriptor
  36.  *****************************************************************************/
  37. vlc_module_begin();
  38.     set_description( _("Simple id3 tag skipper" ) );
  39.     set_capability( "id3", 50 );
  40.     set_callbacks( SkipID3Tag, NULL );
  41. vlc_module_end();
  42. /****************************************************************************
  43.  * SkipID3Tag : check if an ID3 tag is present, and skip it if it is
  44.  ****************************************************************************/
  45. static int SkipID3Tag( vlc_object_t *p_this )
  46. {
  47.     demux_t *p_demux = (demux_t *)p_this;
  48.     uint8_t *p_peek;
  49.     int i_size;
  50.     uint8_t version, revision;
  51.     int b_footer;
  52.     p_demux->p_private = NULL;
  53.     msg_Dbg( p_demux, "checking for ID3 tag" );
  54.     /* get 10 byte id3 header */
  55.     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
  56.     {
  57.         msg_Err( p_demux, "cannot peek()" );
  58.         return VLC_EGENERIC;
  59.     }
  60.     if( p_peek[0] != 'I' || p_peek[1] != 'D' || p_peek[2] != '3' )
  61.     {
  62.         return VLC_SUCCESS;
  63.     }
  64.     version = p_peek[3];  /* These may become usfull later, */
  65.     revision = p_peek[4]; /* but we ignore them for now */
  66.     b_footer = p_peek[5] & 0x10;
  67.     i_size = (p_peek[6] << 21) +
  68.              (p_peek[7] << 14) +
  69.              (p_peek[8] << 7) +
  70.              p_peek[9];
  71.     if ( b_footer )
  72.     {
  73.         i_size += 10;
  74.     }
  75.     i_size += 10;
  76.     /* Skip the entire tag */
  77.     stream_Read( p_demux->s, NULL, i_size );
  78.     msg_Dbg( p_demux, "ID3v2.%d revision %d tag found, skiping %d bytes",
  79.              version, revision, i_size );
  80.     return VLC_SUCCESS;
  81. }