From d0556dc9839627f899939e9419181a4ad9b2053d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 29 Aug 2008 09:38:11 +0200 Subject: tag: renamed MpdTag and MpdTagItem to struct tag, struct mpd_tag_item Getting rid of CamelCase; not having typedefs also allows us to forward-declare the structures. --- src/inputPlugins/aac_plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/inputPlugins/aac_plugin.c') diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index f0796bb62..bd5e6a432 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -572,9 +572,9 @@ static int aac_decode(struct decoder * mpd_decoder, char *path) return 0; } -static MpdTag *aacTagDup(char *file) +static struct tag *aacTagDup(char *file) { - MpdTag *ret = NULL; + struct tag *ret = NULL; int file_time = getAacTotalTime(file); if (file_time >= 0) { -- cgit v1.2.3