562
|
1 /*
|
|
2 id3: ID3v2.3 and ID3v2.4 parsing (a relevant subset)
|
|
3
|
|
4 copyright 2006-2007 by the mpg123 project - free software under the terms of the LGPL 2.1
|
|
5 see COPYING and AUTHORS files in distribution or http://mpg123.org
|
|
6 initially written by Thomas Orgis
|
|
7 */
|
|
8
|
|
9 #ifndef MPG123_ID3_H
|
|
10 #define MPG123_ID3_H
|
|
11
|
|
12 /* really need it _here_! */
|
|
13 #include "frame.h"
|
|
14
|
|
15 void init_id3(mpg123_handle *fr);
|
|
16 void exit_id3(mpg123_handle *fr);
|
|
17 void reset_id3(mpg123_handle *fr);
|
|
18 int parse_new_id3(mpg123_handle *fr, unsigned long first4bytes);
|
|
19 void id3_link(mpg123_handle *fr);
|
|
20
|
|
21 #endif
|