aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/sndio.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/Alc/sndio.c b/Alc/sndio.c
index 6ee49519..d8da17ee 100644
--- a/Alc/sndio.c
+++ b/Alc/sndio.c
@@ -151,7 +151,7 @@ static ALuint sndio_proc(ALvoid *ptr)
wrote = sio_write(data->sndHandle, WritePtr, len);
if(wrote == 0)
{
- AL_PRINT("sio_write failed\n");
+ ERROR("sio_write failed\n");
aluHandleDisconnect(device);
break;
}
@@ -185,7 +185,7 @@ static ALCboolean sndio_open_playback(ALCdevice *device, const ALCchar *deviceNa
if(data->sndHandle == NULL)
{
free(data);
- AL_PRINT("Could not open device\n");
+ ERROR("Could not open device\n");
return ALC_FALSE;
}
@@ -246,14 +246,14 @@ static ALCboolean sndio_reset_playback(ALCdevice *device)
if(!sio_setpar(data->sndHandle, &par) || !sio_getpar(data->sndHandle, &par))
{
- AL_PRINT("Failed to set device parameters\n");
+ ERROR("Failed to set device parameters\n");
return ALC_FALSE;
}
if(par.rate != device->Frequency)
{
if((device->Flags&DEVICE_FREQUENCY_REQUEST))
- AL_PRINT("Failed to set frequency %uhz, got %uhz instead\n", device->Frequency, par.rate);
+ ERROR("Failed to set frequency %uhz, got %uhz instead\n", device->Frequency, par.rate);
device->Flags &= ~DEVICE_FREQUENCY_REQUEST;
device->Frequency = par.rate;
}
@@ -262,18 +262,18 @@ static ALCboolean sndio_reset_playback(ALCdevice *device)
{
if(par.pchan != 1 && par.pchan != 2)
{
- AL_PRINT("Unhandled channel count: %u\n", par.pchan);
+ ERROR("Unhandled channel count: %u\n", par.pchan);
return ALC_FALSE;
}
if((device->Flags&DEVICE_CHANNELS_REQUEST))
- AL_PRINT("Failed to set %s, got %u channels instead\n", DevFmtChannelsString(device->FmtChans), par.pchan);
+ ERROR("Failed to set %s, got %u channels instead\n", DevFmtChannelsString(device->FmtChans), par.pchan);
device->Flags &= ~DEVICE_CHANNELS_REQUEST;
device->FmtChans = ((par.pchan==1) ? DevFmtMono : DevFmtStereo);
}
if(par.bits != par.bps*8)
{
- AL_PRINT("Padded samples not supported (%u of %u bits)\n", par.bits, par.bps*8);
+ ERROR("Padded samples not supported (%u of %u bits)\n", par.bits, par.bps*8);
return ALC_FALSE;
}
@@ -287,7 +287,7 @@ static ALCboolean sndio_reset_playback(ALCdevice *device)
device->FmtType = DevFmtUShort;
else
{
- AL_PRINT("Unhandled sample format: %s %u-bit\n", (par.sig?"signed":"unsigned"), par.bits);
+ ERROR("Unhandled sample format: %s %u-bit\n", (par.sig?"signed":"unsigned"), par.bits);
return ALC_FALSE;
}
@@ -300,7 +300,7 @@ static ALCboolean sndio_reset_playback(ALCdevice *device)
if(!sio_start(data->sndHandle))
{
- AL_PRINT("Error starting playback\n");
+ ERROR("Error starting playback\n");
return ALC_FALSE;
}
@@ -332,7 +332,7 @@ static void sndio_stop_playback(ALCdevice *device)
data->killNow = 0;
if(!sio_stop(data->sndHandle))
- AL_PRINT("Error stopping device\n");
+ ERROR("Error stopping device\n");
free(data->mix_data);
data->mix_data = NULL;