]> git.sesse.net Git - vlc/blob - modules/demux/util/id3.c
* modules/demux/aac.c: removed deprecated aac demux (replaced by the m4a demux which...
[vlc] / modules / demux / util / id3.c
1 /*****************************************************************************
2  * id3.c: simple id3 tag skipper
3  *****************************************************************************
4  * Copyright (C) 2001 VideoLAN
5  * $Id$
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 /*****************************************************************************
34  * Local prototypes
35  *****************************************************************************/
36 static int  SkipID3Tag ( vlc_object_t * );
37
38 /*****************************************************************************
39  * Module descriptor
40  *****************************************************************************/
41 vlc_module_begin();
42     set_description( _("Simple id3 tag skipper" ) );
43     set_capability( "id3", 50 );
44     set_callbacks( SkipID3Tag, NULL );
45 vlc_module_end();
46
47 /****************************************************************************
48  * SkipID3Tag : check if an ID3 tag is present, and skip it if it is
49  ****************************************************************************/
50 static int SkipID3Tag( vlc_object_t *p_this )
51 {
52     demux_t *p_demux = (demux_t *)p_this;
53     uint8_t *p_peek;
54     int i_size;
55     uint8_t version, revision;
56     int b_footer;
57
58     p_demux->p_private = NULL;
59
60     msg_Dbg( p_demux, "checking for ID3 tag" );
61
62     /* get 10 byte id3 header */
63     if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) return VLC_EGENERIC;
64
65     if( p_peek[0] != 'I' || p_peek[1] != 'D' || p_peek[2] != '3' )
66     {
67         return VLC_SUCCESS;
68     }
69
70     version = p_peek[3];  /* These may become usfull later, */
71     revision = p_peek[4]; /* but we ignore them for now */
72     b_footer = p_peek[5] & 0x10;
73     i_size = (p_peek[6] << 21) +
74              (p_peek[7] << 14) +
75              (p_peek[8] << 7) +
76              p_peek[9];
77     if ( b_footer )
78     {
79         i_size += 10;
80     }
81     i_size += 10;
82
83     /* Skip the entire tag */
84     stream_Read( p_demux->s, NULL, i_size );
85
86     msg_Dbg( p_demux, "ID3v2.%d revision %d tag found, skiping %d bytes",
87              version, revision, i_size );
88
89     return VLC_SUCCESS;
90 }