aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-28 23:26:16 +0100
committerMax Kellermann <max@duempel.org>2013-10-28 23:26:16 +0100
commit5b0d6a59cfc99cb0cbb92a65dd8181cd5e59835a (patch)
treeeb8ef187f29da356aa6f74f663170a9033578c46
parentfd3dc7e5fb37883c62ec4e30978d482e82e30b16 (diff)
downloadmpd-5b0d6a59cfc99cb0cbb92a65dd8181cd5e59835a.tar.gz
mpd-5b0d6a59cfc99cb0cbb92a65dd8181cd5e59835a.tar.xz
mpd-5b0d6a59cfc99cb0cbb92a65dd8181cd5e59835a.zip
decoder/dsdlib: move API documentation to header
-rw-r--r--src/decoder/DsdLib.cxx5
-rw-r--r--src/decoder/DsdLib.hxx4
2 files changed, 4 insertions, 5 deletions
diff --git a/src/decoder/DsdLib.cxx b/src/decoder/DsdLib.cxx
index 231f48c7a..67cc7e945 100644
--- a/src/decoder/DsdLib.cxx
+++ b/src/decoder/DsdLib.cxx
@@ -116,11 +116,6 @@ dsdlib_skip(Decoder *decoder, InputStream &is,
return true;
}
-/**
- * Add tags from ID3 tag. All tags commonly found in the ID3 tags of
- * DSF and DSDIFF files are imported
- */
-
#ifdef HAVE_ID3TAG
void
dsdlib_tag_id3(InputStream &is,
diff --git a/src/decoder/DsdLib.hxx b/src/decoder/DsdLib.hxx
index 09633f681..a20df99a6 100644
--- a/src/decoder/DsdLib.hxx
+++ b/src/decoder/DsdLib.hxx
@@ -47,6 +47,10 @@ bool
dsdlib_skip(Decoder *decoder, InputStream &is,
int64_t delta);
+/**
+ * Add tags from ID3 tag. All tags commonly found in the ID3 tags of
+ * DSF and DSDIFF files are imported
+ */
void
dsdlib_tag_id3(InputStream &is,
const struct tag_handler *handler,