From eb67fd571062c02d08f8b6daee2b70afdcd52ca5 Mon Sep 17 00:00:00 2001 From: Maarten Lankhorst Date: Wed, 2 Apr 2008 14:58:23 -0700 Subject: [PATCH] winemp3: Change a few more messages 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; -- 1.5.4.1