summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-02-23 20:11:56 +0100
committerGravatar waker <wakeroid@gmail.com>2011-02-23 20:11:56 +0100
commit1c74e8ecb59f6bcc6bd8b8996a4c5e125bd3130b (patch)
treeab9245b6fad72f2802450620405ccbff5cb7d479
parentd141a62db46a3182d903938085c1b125bb67e385 (diff)
deleted couple of trace printfs in flac and junklib
-rw-r--r--junklib.c1
-rw-r--r--plugins/flac/flac.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/junklib.c b/junklib.c
index e8ea3b00..0204dfbf 100644
--- a/junklib.c
+++ b/junklib.c
@@ -864,7 +864,6 @@ junk_id3v1_read (playItem_t *it, DB_FILE *fp) {
pl_add_meta (it, "comment", convstr_id3v1 (comment, strlen (comment)));
}
if (*genre) {
- printf ("id3v1 genre: %s (%s)\n", genre, convstr_id3v1 (genre, strlen (genre)));
pl_add_meta (it, "genre", convstr_id3v1 (genre, strlen (genre)));
}
if (tracknum != 0) {
diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c
index 8b02ad7b..3b082068 100644
--- a/plugins/flac/flac.c
+++ b/plugins/flac/flac.c
@@ -693,7 +693,6 @@ cflac_insert (DB_playItem_t *after, const char *fname) {
it->filetype = isogg ? "OggFLAC" : "FLAC";
char s[100];
- printf ("tagsize: %d\n", info.tagsize);
int64_t fsize = deadbeef->fgetlength (info.file);
snprintf (s, sizeof (s), "%lld", fsize);
deadbeef->pl_add_meta (it, ":FILE_SIZE", s);