Module: wine Branch: master Commit: f5fdb793edd20abd152b50b90ebd2eb78492cdec URL: http://source.winehq.org/git/wine.git/?a=commit;h=f5fdb793edd20abd152b50b90e...
Author: Maarten Lankhorst m.b.lankhorst@gmail.com Date: Wed Apr 2 14:58:23 2008 -0700
winemp3: Change a few more fprintf's to wine logs.
---
dlls/winemp3.acm/interface.c | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/dlls/winemp3.acm/interface.c b/dlls/winemp3.acm/interface.c index 775c001..a1d09f2 100644 --- a/dlls/winemp3.acm/interface.c +++ b/dlls/winemp3.acm/interface.c @@ -24,6 +24,7 @@ #include "mpg123.h" #include "mpglib.h"
+WINE_DEFAULT_DEBUG_CHANNEL(mpeg3);
BOOL InitMP3(struct mpstr *mp) { @@ -72,12 +73,13 @@ static struct buf *addbuf(struct mpstr *mp,const unsigned char *buf,int size)
nbuf = malloc( sizeof(struct buf) ); if(!nbuf) { - fprintf(stderr,"Out of memory!\n"); + WARN("Out of memory!\n"); return NULL; } nbuf->pnt = malloc(size); if(!nbuf->pnt) { free(nbuf); + WARN("Out of memory!\n"); return NULL; } nbuf->size = size; @@ -156,7 +158,7 @@ int decodeMP3(struct mpstr *mp,const unsigned char *in,int isize,unsigned char * int len;
if(osize < 4608) { - fprintf(stderr,"To less out space\n"); + ERR("Output buffer too small\n"); return MP3_ERR; }
@@ -229,7 +231,8 @@ int set_pointer(struct mpstr *mp, long backstep) { unsigned char *bsbufold; if(mp->fsizeold < 0 && backstep > 0) { - fprintf(stderr,"Can't step back %ld!\n",backstep); + /* This is not a bug if we just did seeking, the first frame is dropped then */ + WARN("Can't step back %ld!\n",backstep); return MP3_ERR; } bsbufold = mp->bsspace[mp->bsnum] + 512;