Fix wps image tags description.
[Rockbox.git] / apps / metadata.h
blob00a1903a5d7bb7ee374bc3d1fff07848aae00902
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 "playback.h"
25 unsigned int probe_file_format(const char *filename);
26 bool get_metadata(struct mp3entry* id3, int fd, const char* trackname);
27 #if CONFIG_CODEC == SWCODEC
28 void strip_tags(int handle_id);
29 #endif
31 #endif