]> git.sesse.net Git - vlc/blob - modules/demux/util/id3.c
* Stringreview !!!
[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.7 2004/01/25 20:05:29 hartman 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 "ninput.h"
34
35 #include <sys/types.h>
36
37 /*****************************************************************************
38  * Local prototypes
39  *****************************************************************************/
40 static int  SkipID3Tag ( vlc_object_t * );
41
42 /*****************************************************************************
43  * Module descriptor
44  *****************************************************************************/
45 vlc_module_begin();
46     set_description( _("Simple id3 tag skipper" ) );
47     set_capability( "id3", 50 );
48     set_callbacks( SkipID3Tag, NULL );
49 vlc_module_end();
50
51 /****************************************************************************
52  * SkipID3Tag : check if an ID3 tag is present, and skip it if it is
53  ****************************************************************************/
54 static int SkipID3Tag( vlc_object_t *p_this )
55 {
56     input_thread_t *p_input;
57     uint8_t *p_peek;
58     int i_size;
59     uint8_t version, revision;
60     int b_footer;
61
62     if ( p_this->i_object_type != VLC_OBJECT_INPUT )
63     {
64         return( VLC_EGENERIC );
65     }
66     p_input = (input_thread_t *)p_this;
67
68     msg_Dbg( p_input, "checking for ID3 tag" );
69
70     /* get 10 byte id3 header */
71     if( stream_Peek( p_input->s, &p_peek, 10 ) < 10 )
72     {
73         msg_Err( p_input, "cannot peek()" );
74         return VLC_EGENERIC;
75     }
76
77     if( p_peek[0] != 'I' || p_peek[1] != 'D' || p_peek[2] != '3' )
78     {
79         return VLC_SUCCESS;
80     }
81
82     version = p_peek[3];  /* These may become usfull later, */
83     revision = p_peek[4]; /* but we ignore them for now */
84     b_footer = p_peek[5] & 0x10;
85     i_size = (p_peek[6] << 21) +
86              (p_peek[7] << 14) +
87              (p_peek[8] << 7) +
88              p_peek[9];
89     if ( b_footer )
90     {
91         i_size += 10;
92     }
93     i_size += 10;
94
95     /* Skip the entire tag */
96     stream_Read( p_input->s, NULL, i_size );
97
98     msg_Dbg( p_input, "ID3v2.%d revision %d tag found, skiping %d bytes",
99              version, revision, i_size );
100
101     return VLC_SUCCESS;
102 }