diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-07 20:28:56 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-07 20:28:56 +0200 |
commit | b1b4a1ee5cf0700748e9c0b74f30d375c169bc66 (patch) | |
tree | 6046e48fd495af39bfcad15e50908ca1adb90d05 /plugins/adplug | |
parent | 62a2ac9fadbac2c617dfcc9647ab9933d8f35626 (diff) |
disabled adplug metadata (broken)
Diffstat (limited to 'plugins/adplug')
-rw-r--r-- | plugins/adplug/adplug-db.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/adplug/adplug-db.cpp b/plugins/adplug/adplug-db.cpp index 4f334d2b..567d55ca 100644 --- a/plugins/adplug/adplug-db.cpp +++ b/plugins/adplug/adplug-db.cpp @@ -258,6 +258,7 @@ adplug_insert (DB_playItem_t *after, const char *fname) { it->filetype = adplug_get_extension (fname); it->tracknum = i; deadbeef->pl_set_item_duration (it, dur); +#if 0 // add metainfo if (p->gettitle()[0]) { adplug_add_meta (it, "title", p->gettitle()); @@ -271,6 +272,7 @@ adplug_insert (DB_playItem_t *after, const char *fname) { if (!p->getauthor()[0]) { adplug_add_meta (it, "artist", p->getauthor()); } +#endif deadbeef->pl_add_meta (it, "title", NULL); // insert after = deadbeef->pl_insert_item (after, it); |