]> git.sesse.net Git - vlc/blob - modules/demux/util/id3tag.c
ef171ce4e6e1f2de4ea6576df8adf377ed541422
[vlc] / modules / demux / util / id3tag.c
1 /*****************************************************************************
2  * id3tag.c: id3 tag parser/skipper based on libid3tag
3  *****************************************************************************
4  * Copyright (C) 2002-2004 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Sigmund Augdal Helberg <dnumgis@videolan.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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/intf.h>
32 #include <vlc/input.h>
33
34 #include <sys/types.h>
35
36 #include "vlc_meta.h"
37
38 #include <id3tag.h>
39 #include "id3genres.h"
40
41 /*****************************************************************************
42  * Local prototypes
43  *****************************************************************************/
44 static int  ParseID3Tags ( vlc_object_t * );
45
46 /*****************************************************************************
47  * Module descriptor
48  *****************************************************************************/
49 vlc_module_begin();
50 set_description( _("ID3 tag parser using libid3tag" ) );
51 set_capability( "id3", 70 );
52 set_callbacks( ParseID3Tags, NULL );
53 vlc_module_end();
54
55 /*****************************************************************************
56  * Definitions of structures  and functions used by this plugins
57  *****************************************************************************/
58
59 /*****************************************************************************
60  * ParseID3Tag : parse an id3tag into the info structures
61  *****************************************************************************/
62 static void ParseID3Tag( demux_t *p_demux, uint8_t *p_data, int i_size )
63 {
64     struct id3_tag   *p_id3_tag;
65     struct id3_frame *p_frame;
66     int i = 0;
67
68     p_id3_tag = id3_tag_parse( p_data, i_size );
69     if( !p_id3_tag ) return;
70
71     if( !p_demux->p_private ) p_demux->p_private = (void *)vlc_meta_New();
72
73     while( ( p_frame = id3_tag_findframe( p_id3_tag , "T", i ) ) )
74     {
75         int i_strings = id3_field_getnstrings( &p_frame->fields[1] );
76
77         while( i_strings > 0 )
78         {
79             char *psz_temp = id3_ucs4_utf8duplicate(
80                 id3_field_getstrings( &p_frame->fields[1], --i_strings ) );
81
82             if( !strcmp( p_frame->id, ID3_FRAME_GENRE ) )
83             {
84                 char *psz_endptr;
85                 int i_genre = strtol( psz_temp, &psz_endptr, 10 );
86
87                 if( psz_temp != psz_endptr &&
88                     i_genre >= 0 && i_genre < NUM_GENRES )
89                 {
90                     vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,
91                                   VLC_META_GENRE, ppsz_genres[atoi(psz_temp)]);
92                 }
93                 else
94                 {
95                     /* Unknown genre */
96                     vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,
97                                   VLC_META_GENRE, psz_temp );
98                 }
99             }
100             else if( !strcmp(p_frame->id, ID3_FRAME_TITLE ) )
101             {
102                 vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,
103                               VLC_META_TITLE, psz_temp );
104             }
105             else if( !strcmp(p_frame->id, ID3_FRAME_ARTIST ) )
106             {
107                 vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,
108                               VLC_META_ARTIST, psz_temp );
109             }
110             else
111             {
112                 /* Unknown meta info */
113                 vlc_meta_Add( (vlc_meta_t *)p_demux->p_private,
114                               (char *)p_frame->description, psz_temp );
115             }
116             free( psz_temp );
117         }
118         i++;
119     }
120     id3_tag_delete( p_id3_tag );
121 }
122
123 /*****************************************************************************
124  * ParseID3Tags: check if ID3 tags at common locations. Parse them and skip it
125  * if it's at the start of the file
126  ****************************************************************************/
127 static int ParseID3Tags( vlc_object_t *p_this )
128 {
129     demux_t *p_demux = (demux_t *)p_this;
130     uint8_t *p_peek;
131     vlc_bool_t b_seekable;
132     int64_t i_init, i_pos;
133     int i_size;
134
135     p_demux->p_private = NULL;
136
137     msg_Dbg( p_demux, "checking for ID3 tag" );
138
139     stream_Control( p_demux->s, STREAM_CAN_FASTSEEK, &b_seekable );
140     if( !b_seekable ) return VLC_SUCCESS;
141
142     i_init = stream_Tell( p_demux->s );
143
144     /*
145      * Look for a ID3v1 tag at the end of the file
146      */
147     i_init = stream_Tell( p_demux->s );
148     i_pos = stream_Size( p_demux->s );
149
150     while( i_pos > 128 ) /* while used so we can break; */
151     {
152         stream_Seek( p_demux->s, i_pos - 128 );
153
154         /* get 10 byte id3 header */
155         if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) break;
156
157         i_size = id3_tag_query( p_peek, 10 );
158         if( i_size == 128 )
159         {
160             /* peek the entire tag */
161             if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;
162
163             msg_Dbg( p_demux, "found ID3v1 tag" );
164             ParseID3Tag( p_demux, p_peek, i_size );
165         }
166
167         /* look for ID3v2.4 tag at end of file */
168         /* get 10 byte ID3 footer */
169         if( stream_Peek( p_demux->s, &p_peek, 128 ) < 128 ) break;
170
171         i_size = id3_tag_query( p_peek + 118, 10 );
172         if( i_size < 0  && i_pos > -i_size )
173         {
174             /* id3v2.4 footer found */
175             stream_Seek( p_demux->s , i_pos + i_size );
176             /* peek the entire tag */
177             if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) break;
178
179             msg_Dbg( p_demux, "found ID3v2 tag at end of file" );
180             ParseID3Tag( p_demux, p_peek, i_size );
181         }
182         break;
183     }
184
185     /*
186      * Get 10 byte id3 header
187      */
188     stream_Seek( p_demux->s, 0 );
189     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) goto end;
190
191     if( (i_size = id3_tag_query( p_peek, 10 )) <= 0 ) goto end;
192
193     if( stream_Peek( p_demux->s, &p_peek, i_size ) < i_size ) goto end;
194
195     msg_Dbg( p_demux, "found ID3v2 tag" );
196     ParseID3Tag( p_demux, p_peek, i_size );
197
198  end:
199     stream_Seek( p_demux->s, i_init );
200     return VLC_SUCCESS;
201 }