Commit f5fdb793 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

winemp3: Change a few more fprintf's to wine logs.

parent 5469551f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment