From c6205bd4617b12f080cff86ecf0d964ebe39dd62 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 16 Feb 2009 19:31:06 +0100 Subject: [PATCH] renamed decoder plugin "oggvorbis" to "vorbis" This plugin uses libvorbis. --- src/Makefile.am | 4 ++-- src/decoder/{oggvorbis_plugin.c => vorbis_plugin.c} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename src/decoder/{oggvorbis_plugin.c => vorbis_plugin.c} (99%) diff --git a/src/Makefile.am b/src/Makefile.am index f3d9e40cf..77781b028 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -279,7 +279,7 @@ mpd_SOURCES += decoder/wavpack_plugin.c endif if HAVE_FAAD -mpd_SOURCES += decoder/aac_plugin.c +mpd_SOURCES += decoder/faad_plugin.c endif if HAVE_MP4 @@ -295,7 +295,7 @@ mpd_SOURCES += decoder/_flac_common.c endif if HAVE_OGGVORBIS -mpd_SOURCES += decoder/oggvorbis_plugin.c +mpd_SOURCES += decoder/vorbis_plugin.c endif if HAVE_FLAC diff --git a/src/decoder/oggvorbis_plugin.c b/src/decoder/vorbis_plugin.c similarity index 99% rename from src/decoder/oggvorbis_plugin.c rename to src/decoder/vorbis_plugin.c index e935870de..526824cfc 100644 --- a/src/decoder/oggvorbis_plugin.c +++ b/src/decoder/vorbis_plugin.c @@ -407,7 +407,7 @@ static const char *const vorbis_mime_types[] = { }; const struct decoder_plugin vorbis_decoder_plugin = { - .name = "oggvorbis", + .name = "vorbis", .stream_decode = vorbis_stream_decode, .tag_dup = vorbis_tag_dup, .suffixes = vorbis_suffixes,