diff options
author | waker <wakeroid@gmail.com> | 2012-11-18 19:35:02 +0100 |
---|---|---|
committer | waker <wakeroid@gmail.com> | 2012-11-18 19:35:02 +0100 |
commit | 10c19706ba4a538231cc81771fd815e55cde428f (patch) | |
tree | 7d5d6d91cc33eec7ab3090add49cf87dfa8ce0a5 /plugins/flac | |
parent | 0baa3f5a1570a2f2914c92c82183c57120e023df (diff) |
flac: removed debug printf
Diffstat (limited to 'plugins/flac')
-rw-r--r-- | plugins/flac/flac.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c index b451dcfb..29f89b22 100644 --- a/plugins/flac/flac.c +++ b/plugins/flac/flac.c @@ -633,7 +633,6 @@ cflac_insert_with_embedded_cue (ddb_playlist_t *plt, DB_playItem_t *after, DB_pl deadbeef->pl_add_meta (it, "band", deadbeef->pl_find_meta (origin, "artist")); it->startsample = cuesheet->tracks[i].offset; it->endsample = cuesheet->tracks[i+1].offset-1; - printf ("track %d, startsample: %d, endsample: %d\n", i, it->startsample, it->endsample); deadbeef->pl_replace_meta (it, ":FILETYPE", ftype); deadbeef->plt_set_item_duration (plt, it, (float)(it->endsample - it->startsample + 1) / samplerate); after = deadbeef->plt_insert_item (plt, after, it); |