Rename variables sectorbuf and verbose to avoid clashes in rbutil. Cleanup exports...
[Rockbox.git] / apps / metadata.h
blobe7004baabae5c9b881e28d7a1c90cf1723d500f2
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 ****************************************************************************/
20 #ifndef _METADATA_H
21 #define _METADATA_H
23 #include <stdbool.h>
24 #include "config.h"
25 #include "id3.h"
27 unsigned int probe_file_format(const char *filename);
28 bool get_metadata(struct mp3entry* id3, int fd, const char* trackname);
29 #if CONFIG_CODEC == SWCODEC
30 void strip_tags(int handle_id);
31 #endif
33 #endif