summaryrefslogtreecommitdiff
path: root/plugins/sndfile/sndfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/sndfile/sndfile.c')
-rw-r--r--plugins/sndfile/sndfile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/sndfile/sndfile.c b/plugins/sndfile/sndfile.c
index eae39b86..071dffdb 100644
--- a/plugins/sndfile/sndfile.c
+++ b/plugins/sndfile/sndfile.c
@@ -1,6 +1,6 @@
/*
DeaDBeeF - ultimate music player for GNU/Linux systems with X11
- Copyright (C) 2009-2011 Alexey Yakovenko <waker@users.sourceforge.net>
+ Copyright (C) 2009-2012 Alexey Yakovenko <waker@users.sourceforge.net>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
@@ -196,7 +196,7 @@ sndfile_init (DB_fileinfo_t *_info, DB_playItem_t *it) {
default:
info->read_as_short = 1;
_info->fmt.bps = 16;
- fprintf (stderr, "[sndfile] unidentified input format: 0x%X\n", inf.format&0x000f);
+ trace ("[sndfile] unidentified input format: 0x%X\n", inf.format&0x000f);
break;
}
@@ -325,7 +325,7 @@ sndfile_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) {
trace ("calling sf_open_virtual\n");
info.ctx = sf_open_virtual (&vfs, SFM_READ, &inf, &info);
if (!info.ctx) {
- trace ("sndfile: sf_open failed");
+ trace ("sndfile: sf_open failed\n");
deadbeef->fclose (info.file);
return NULL;
}
@@ -544,7 +544,7 @@ static DB_decoder_t plugin = {
.plugin.name = "WAV/PCM player",
.plugin.descr = "wav/aiff player using libsndfile",
.plugin.copyright =
- "Copyright (C) 2009-2011 Alexey Yakovenko <waker@users.sourceforge.net>\n"
+ "Copyright (C) 2009-2012 Alexey Yakovenko <waker@users.sourceforge.net>\n"
"\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU General Public License\n"