diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/ffmpeg/Init.hxx (renamed from src/tag/TagSettings.c) | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/tag/TagSettings.c b/src/lib/ffmpeg/Init.hxx index e0c577c2b..ca5f9d691 100644 --- a/src/tag/TagSettings.c +++ b/src/lib/ffmpeg/Init.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2014 The Music Player Daemon Project + * Copyright (C) 2003-2015 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -17,9 +17,10 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "TagSettings.h" +#ifndef MPD_FFMPEG_INIT_HXX +#define MPD_FFMPEG_INIT_HXX -bool ignore_tag_items[TAG_NUM_OF_ITEM_TYPES] = { - /* ignore comments by default */ - [TAG_COMMENT] = true, -}; +void +FfmpegInit(); + +#endif |