]> git.sesse.net Git - vlc/blob - modules/demux/util/id3.c
d17e16ac45dca8be1e35ff4a861754e064e052b3
[vlc] / modules / demux / util / id3.c
1 /*****************************************************************************
2  * id3.c: simple id3 tag skipper
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id: id3.c,v 1.4 2003/07/13 12:52:40 sigmunau Exp $
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31 #include <vlc/input.h>
32
33 #include <sys/types.h>
34
35 /*****************************************************************************
36  * Local prototypes
37  *****************************************************************************/
38 static int  SkipID3Tag ( vlc_object_t * );
39
40 /*****************************************************************************
41  * Module descriptor
42  *****************************************************************************/
43 vlc_module_begin();
44     set_description( _("Simple id3 tag skipper" ) );
45     set_capability( "id3", 50 );
46     set_callbacks( SkipID3Tag, NULL );
47 vlc_module_end();
48
49 /****************************************************************************
50  * SkipID3Tag : check if an ID3 tag is present, and skip it if it is
51  ****************************************************************************/
52 static int SkipID3Tag( vlc_object_t *p_this )
53 {
54     input_thread_t *p_input;
55     u8  *p_peek;
56     int i_size;
57     u8  version, revision;
58     int b_footer;
59
60     if ( p_this->i_object_type != VLC_OBJECT_INPUT )
61     {
62         return( VLC_EGENERIC );
63     }
64     p_input = (input_thread_t *)p_this;
65
66     msg_Dbg( p_input, "Checking for ID3 tag" );
67     /* get 10 byte id3 header */    
68     if( input_Peek( p_input, &p_peek, 10 ) < 10 )
69     {
70         msg_Err( p_input, "cannot peek()" );
71         return( VLC_EGENERIC );
72     }
73
74     if ( !( (p_peek[0] == 0x49) && (p_peek[1] == 0x44) && (p_peek[2] == 0x33)))
75     {
76         return( VLC_SUCCESS );
77     }
78     
79     version = p_peek[3];  /* These may become usfull later, */
80     revision = p_peek[4]; /* but we ignore them for now */
81     b_footer = p_peek[5] & 0x10;
82     i_size = (p_peek[6] << 21) +
83              (p_peek[7] << 14) +
84              (p_peek[8] << 7) +
85              p_peek[9];
86     if ( b_footer )
87     {
88         i_size += 10;
89     }
90     i_size += 10;
91
92     /* peek the entire tag */
93     if ( input_Peek( p_input, &p_peek, i_size ) < i_size )
94     {
95         msg_Err( p_input, "cannot peek()" );
96         return( VLC_EGENERIC );
97     }
98
99     msg_Dbg( p_input, "ID3v2.%d revision %d tag found, skiping %d bytes",
100              version, revision, i_size );
101     p_input->p_current_data += i_size; /* seek passed end of ID3 tag */
102     return ( VLC_SUCCESS );
103 }