diff options
author | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-06 22:06:20 +0200 |
---|---|---|
committer | Alexey Yakovenko <wakeroid@gmail.com> | 2010-10-06 22:06:20 +0200 |
commit | 6fdae5d00105250e65d8577031f2b43b2bf43019 (patch) | |
tree | 3c94ff7aeff99f79b05089228515bfb4fea3bc22 /plugins/adplug | |
parent | d3d7484055946e547adccab4542273f91635f4d8 (diff) |
removed printfs from adplug plugin
Diffstat (limited to 'plugins/adplug')
-rw-r--r-- | plugins/adplug/adplug-db.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/plugins/adplug/adplug-db.cpp b/plugins/adplug/adplug-db.cpp index 6aa46dab..4f334d2b 100644 --- a/plugins/adplug/adplug-db.cpp +++ b/plugins/adplug/adplug-db.cpp @@ -84,7 +84,6 @@ adplug_init (DB_fileinfo_t *_info, DB_playItem_t *it) { info->currentsample = 0; info->toadd = 0; - printf ("playing subtrack %d dur %f\n", info->subsong, dur); // fill in mandatory plugin fields _info->plugin = &adplug_plugin; _info->bps = bps; @@ -253,7 +252,6 @@ adplug_insert (DB_playItem_t *after, const char *fname) { if (dur < 0.1) { continue; } - printf ("adding subtrack %d dur %f\n", i, dur); DB_playItem_t *it = deadbeef->pl_item_alloc (); it->decoder_id = deadbeef->plug_get_decoder_id (adplug_plugin.plugin.id); it->fname = strdup (fname); |