summaryrefslogtreecommitdiff
path: root/cmp3.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-08-05 20:02:29 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-08-05 20:43:42 +0200
commitebacbd95aee9ab9693b0518f700ae64e9106512d (patch)
tree4224330f4256a70bb8924d5b5a78b709726f4b40 /cmp3.c
parent8e2e95f37a8509c7cbc7b85a61ab7b53f9d7b9d3 (diff)
slightly better song switching (streamer-wise)
Diffstat (limited to 'cmp3.c')
-rw-r--r--cmp3.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/cmp3.c b/cmp3.c
index 9338b447..87cc2be9 100644
--- a/cmp3.c
+++ b/cmp3.c
@@ -43,7 +43,6 @@ int
cmp3_init (const char *fname, int track, float start, float end) {
buffer.file = fopen (fname, "rb");
if (!buffer.file) {
- printf ("failed to read %s\n", fname);
return -1;
}
buffer.remaining = 0;
@@ -254,10 +253,10 @@ cmp3_scan_stream (float position) {
timer.fraction = (int)((duration - (float)timer.seconds)*MAD_TIMER_RESOLUTION);
}
if (nframe == 0) {
- printf ("file doesn't looks like mpeg stream\n");
+ //printf ("file doesn't looks like mpeg stream\n");
return -1;
}
- printf ("song duration: %f\n", duration);
+ //printf ("song duration: %f\n", duration);
return 0;
}
@@ -302,9 +301,9 @@ cmp3_decode (void) {
{
if(stream.error!=MAD_ERROR_LOSTSYNC)
{
- fprintf(stderr,"recoverable frame level error (%s)\n",
- MadErrorString(&stream));
- fflush(stderr);
+ //fprintf(stderr,"recoverable frame level error (%s)\n",
+ // MadErrorString(&stream));
+ //fflush(stderr);
}
continue;
}
@@ -313,8 +312,8 @@ cmp3_decode (void) {
continue;
else
{
- fprintf(stderr,"unrecoverable frame level error (%s).\n",
- MadErrorString(&stream));
+ //fprintf(stderr,"unrecoverable frame level error (%s).\n",
+ // MadErrorString(&stream));
break;
}
}
@@ -614,7 +613,7 @@ convstr (const char* str, int sz) {
sz--;
iconv_t cd = iconv_open ("utf8", enc);
if (!cd) {
- printf ("unknown encoding: %s\n", enc);
+ // printf ("unknown encoding: %s\n", enc);
return NULL;
}
else {
@@ -666,7 +665,7 @@ const char *convstr_id3v1 (const char* str, int sz) {
}
cd = iconv_open ("utf8", enc);
if (!cd) {
- printf ("unknown encoding: %s\n", enc);
+ // printf ("unknown encoding: %s\n", enc);
return NULL;
}
else {