1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 char* id3_get_num_genre(unsigned int genre_num
);
23 int getid3v2len(int fd
);
24 bool setid3v1title(int fd
, struct mp3entry
*entry
);
25 bool get_mp3_metadata(int fd
, struct mp3entry
* id3
, const char *filename
);
27 bool get_adx_metadata(int fd
, struct mp3entry
* id3
);
28 bool get_aiff_metadata(int fd
, struct mp3entry
* id3
);
29 bool get_flac_metadata(int fd
, struct mp3entry
* id3
);
30 bool get_mp4_metadata(int fd
, struct mp3entry
* id3
);
31 bool get_monkeys_metadata(int fd
, struct mp3entry
* id3
);
32 bool get_musepack_metadata(int fd
, struct mp3entry
*id3
);
33 bool get_sid_metadata(int fd
, struct mp3entry
* id3
);
34 bool get_mod_metadata(int fd
, struct mp3entry
* id3
);
35 bool get_spc_metadata(int fd
, struct mp3entry
* id3
);
36 bool get_ogg_metadata(int fd
, struct mp3entry
* id3
);
37 bool get_wave_metadata(int fd
, struct mp3entry
* id3
);
38 bool get_wavpack_metadata(int fd
, struct mp3entry
* id3
);
39 bool get_a52_metadata(int fd
, struct mp3entry
* id3
);
40 bool get_asf_metadata(int fd
, struct mp3entry
* id3
);
41 bool get_asap_metadata(int fd
, struct mp3entry
* id3
);
42 bool get_rm_metadata(int fd
, struct mp3entry
* id3
);
43 bool get_nsf_metadata(int fd
, struct mp3entry
* id3
);
44 bool get_oma_metadata(int fd
, struct mp3entry
* id3
);
45 bool get_smaf_metadata(int fd
, struct mp3entry
* id3
);
46 bool get_au_metadata(int fd
, struct mp3entry
* id3
);
47 bool get_vox_metadata(int fd
, struct mp3entry
* id3
);
48 bool get_wave64_metadata(int fd
, struct mp3entry
* id3
);