add global proxy / cache settings to httpget class. This removes the need of passing...
[Rockbox.git] / apps / metadata / metadata_parsers.h
blobc3265f8a434e29a4419f6e702ce4877ed9121077
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include "id3.h"
21 bool get_adx_metadata(int fd, struct mp3entry* id3);
22 bool get_aiff_metadata(int fd, struct mp3entry* id3);
23 bool get_flac_metadata(int fd, struct mp3entry* id3);
24 bool get_mp4_metadata(int fd, struct mp3entry* id3);
25 bool get_monkeys_metadata(int fd, struct mp3entry* id3);
26 bool get_musepack_metadata(int fd, struct mp3entry *id3);
27 bool get_sid_metadata(int fd, struct mp3entry* id3);
28 bool get_spc_metadata(int fd, struct mp3entry* id3);
29 bool get_ogg_metadata(int fd, struct mp3entry* id3);
30 bool get_wave_metadata(int fd, struct mp3entry* id3);
31 bool get_wavpack_metadata(int fd, struct mp3entry* id3);
32 bool get_a52_metadata(int fd, struct mp3entry* id3);
33 bool get_asf_metadata(int fd, struct mp3entry* id3);