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

📄 id3tag.c

📁 video linux conference
💻 C
字号:
/***************************************************************************** * id3tag.c: id3 tag parser/skipper based on libid3tag ***************************************************************************** * Copyright (C) 2002-2004 VideoLAN * $Id: id3tag.c 10615 2005-04-09 11:27:23Z gbazin $ * * 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/intf.h>#include <vlc/input.h>#include <sys/types.h>#include "vlc_meta.h"#include <id3tag.h>#include "id3genres.h"/***************************************************************************** * Local prototypes *****************************************************************************/static int  ParseID3Tags ( vlc_object_t * );/***************************************************************************** * Module descriptor *****************************************************************************/vlc_module_begin();set_description( _("ID3 tag parser using libid3tag" ) );set_capability( "id3", 70 );set_callbacks( ParseID3Tags, NULL );vlc_module_end();/***************************************************************************** * Definitions of structures  and functions used by this plugins *****************************************************************************//***************************************************************************** * ParseID3Tag : parse an id3tag into the info structures *****************************************************************************/static void ParseID3Tag( demux_t *p_demux, uint8_t *p_data, int i_size ){    struct id3_tag   *p_id3_tag;    struct id3_frame *p_frame;    int i = 0;    p_id3_tag = id3_tag_parse( p_data, i_size );    if( !p_id3_tag ) return;    if( !p_demux->p_private ) p_demux->p_private = (void *)vlc_meta_New();    while( ( p_frame = id3_tag_findframe( p_id3_tag , "T", i ) ) )    {        int i_strings = id3_field_getnstrings( &p_frame->fields[1] );        while( i_strings > 0 )        {            char *psz_temp = id3_ucs4_utf8duplicate(                id3_field_getstrings( &p_frame->fields[1], --i_strings ) );            if( !strcmp( p_frame->id, ID3_FRAME_GENRE ) )            {                char *psz_endptr;                int i_genre = strtol( psz_temp, &psz_endptr, 10 );                if( psz_temp != psz_endptr &&                    i_genre >= 0 && i_genre < NUM_GENRES )                {                    vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,                                  VLC_META_GENRE, ppsz_genres[atoi(psz_temp)]);                }                else                {                    /* Unknown genre */                    vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,                                  VLC_META_GENRE, psz_temp );                }            }            else if( !strcmp(p_frame->id, ID3_FRAME_TITLE ) )            {                vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,                              VLC_META_TITLE, psz_temp );            }            else if( !strcmp(p_frame->id, ID3_FRAME_ARTIST ) )            {                vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,                              VLC_META_ARTIST, psz_temp );            }            else            {                /* Unknown meta info */                vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,                              (char *)p_frame->description, psz_temp );            }            free( psz_temp );        }        i++;    }    id3_tag_delete( p_id3_tag );}/***************************************************************************** * ParseID3Tags: check if ID3 tags at common locations. Parse them and skip it * if it's at the start of the file ****************************************************************************/static int ParseID3Tags( vlc_object_t *p_this ){    demux_t *p_demux = (demux_t *)p_this;    uint8_t *p_peek;    vlc_bool_t b_seekable;    int64_t i_init, i_pos;    int i_size;    p_demux->p_private = NULL;    msg_Dbg( p_demux, "checking for ID3 tag" );    stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &b_seekable );    if( !b_seekable ) return VLC_SUCCESS;    i_init = stream_Tell( p_demux->s );    /*     * Look for a ID3v1 tag at the end of the file     */    i_init = stream_Tell( p_demux->s );    i_pos = stream_Size( p_demux->s );    while( i_pos > 128 ) /* while used so we can break; */    {        stream_Seek( p_demux->s, i_pos - 128 );        /* get 10 byte id3 header */        if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) break;        i_size = id3_tag_query( p_peek, 10 );        if( i_size == 128 )        {            /* peek the entire tag */            if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;            msg_Dbg( p_demux, "found ID3v1 tag" );            ParseID3Tag( p_demux, p_peek, i_size );        }        /* look for ID3v2.4 tag at end of file */        /* get 10 byte ID3 footer */        if( stream_Peek( p_demux->s, &p_peek, 128 ) < 128 ) break;        i_size = id3_tag_query( p_peek + 118, 10 );        if( i_size < 0  && i_pos > -i_size )        {            /* id3v2.4 footer found */            stream_Seek( p_demux->s , i_pos + i_size );            /* peek the entire tag */            if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;            msg_Dbg( p_demux, "found ID3v2 tag at end of file" );            ParseID3Tag( p_demux, p_peek, i_size );        }        break;    }    /*     * Get 10 byte id3 header     */    stream_Seek( p_demux->s, 0 );    if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) goto end;    if( (i_size = id3_tag_query( p_peek, 10 )) <= 0 ) goto end;    if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) goto end;    msg_Dbg( p_demux, "found ID3v2 tag" );    ParseID3Tag( p_demux, p_peek, i_size ); end:    stream_Seek( p_demux->s, i_init );    return VLC_SUCCESS;}

⌨️ 快捷键说明

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