⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 id3.c

📁 VLC媒体播放程序
💻 C
字号:
/***************************************************************************** * id3.c: simple id3 tag skipper ***************************************************************************** * Copyright (C) 2001 VideoLAN * $Id: id3.c,v 1.7 2004/01/25 20:05:29 hartman Exp $ * * Authors: Sigmund Augdal <sigmunau@idi.ntnu.no> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA. *****************************************************************************//***************************************************************************** * Preamble *****************************************************************************/#include <stdlib.h>                                      /* malloc(), free() */#include <string.h>#include <vlc/vlc.h>#include <vlc/input.h>#include "ninput.h"#include <sys/types.h>/***************************************************************************** * Local prototypes *****************************************************************************/static int  SkipID3Tag ( vlc_object_t * );/***************************************************************************** * Module descriptor *****************************************************************************/vlc_module_begin();    set_description( _("Simple id3 tag skipper" ) );    set_capability( "id3", 50 );    set_callbacks( SkipID3Tag, NULL );vlc_module_end();/**************************************************************************** * SkipID3Tag : check if an ID3 tag is present, and skip it if it is ****************************************************************************/static int SkipID3Tag( vlc_object_t *p_this ){    input_thread_t *p_input;    uint8_t *p_peek;    int i_size;    uint8_t version, revision;    int b_footer;    if ( p_this->i_object_type != VLC_OBJECT_INPUT )    {        return( VLC_EGENERIC );    }    p_input = (input_thread_t *)p_this;    msg_Dbg( p_input, "checking for ID3 tag" );    /* get 10 byte id3 header */    if( stream_Peek( p_input->s, &p_peek, 10 ) < 10 )    {        msg_Err( p_input, "cannot peek()" );        return VLC_EGENERIC;    }    if( p_peek[0] != 'I' || p_peek[1] != 'D' || p_peek[2] != '3' )    {        return VLC_SUCCESS;    }    version = p_peek[3];  /* These may become usfull later, */    revision = p_peek[4]; /* but we ignore them for now */    b_footer = p_peek[5] & 0x10;    i_size = (p_peek[6] << 21) +             (p_peek[7] << 14) +             (p_peek[8] << 7) +             p_peek[9];    if ( b_footer )    {        i_size += 10;    }    i_size += 10;    /* Skip the entire tag */    stream_Read( p_input->s, NULL, i_size );    msg_Dbg( p_input, "ID3v2.%d revision %d tag found, skiping %d bytes",             version, revision, i_size );    return VLC_SUCCESS;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -