aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-08-29 09:38:27 +0200
committerEric Wong <normalperson@yhbt.net>2008-09-02 00:14:53 -0700
commit323835240107ba08c080bbd8ed7aebe742fc4475 (patch)
tree2787c8b370e94325c2cedf0fc589785aed18117f /src/tag.h
parent3787544e1dce9470629780aead44c97714b3ea35 (diff)
downloadmpd-323835240107ba08c080bbd8ed7aebe742fc4475.tar.gz
mpd-323835240107ba08c080bbd8ed7aebe742fc4475.tar.xz
mpd-323835240107ba08c080bbd8ed7aebe742fc4475.zip
tag: moved code to tag_id3.c
The ID3 code uses only the public tag API, but is otherwise unrelated. Move it to a separate source file.
Diffstat (limited to '')
-rw-r--r--src/tag.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/tag.h b/src/tag.h
index 8a056a9db..f9a02d41a 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -19,15 +19,9 @@
#ifndef TAG_H
#define TAG_H
-#include "../config.h"
-
#include "mpd_types.h"
#include "os_compat.h"
-#ifdef HAVE_ID3TAG
-#include <id3tag.h>
-#endif
-
enum tag_type {
TAG_ITEM_ARTIST,
TAG_ITEM_ALBUM,
@@ -56,14 +50,8 @@ struct mpd_tag {
mpd_uint8 numOfItems;
};
-#ifdef HAVE_ID3TAG
-struct mpd_tag *tag_id3_import(struct id3_tag *);
-#endif
-
struct mpd_tag *tag_ape_load(char *file);
-struct mpd_tag *tag_id3_load(char *file);
-
struct mpd_tag *tag_new(void);
void tag_lib_init(void);