openbsd-ports/audio/xmms/patches/patch-Output_sun_audio_c
2005-04-13 19:20:02 +00:00

55 lines
1.5 KiB
Plaintext

$OpenBSD: patch-Output_sun_audio_c,v 1.4 2005/04/13 19:20:02 robert Exp $
--- Output/sun/audio.c.orig Sun Jun 2 15:42:03 2002
+++ Output/sun/audio.c Wed Apr 13 20:56:19 2005
@@ -123,14 +123,12 @@
sun = sun_format(fmt);
- effect.format.sun = sun;
effect.format.xmms = fmt;
effect.frequency = rate;
effect.channels = nch;
effect.bps = sun_bps(sun, rate, nch);
output.format.sun = sun;
- output.format.xmms = fmt;
output.frequency = rate;
output.channels = nch;
sun_setparams();
@@ -153,7 +151,7 @@
info.mode = AUMODE_PLAY;
if (ioctl(audio.fd, AUDIO_SETINFO, &info) != 0)
{
- g_error("%s: cannot play (%s)", audio.devaudio,
+ g_warning("%s: cannot play (%s)", audio.devaudio,
strerror(errno));
return;
}
@@ -171,7 +169,7 @@
strcpy(output.name, enc.name);
if (ioctl(audio.fd, AUDIO_SETINFO, &info) != 0)
{
- g_error("%s: unsupported encoding: %s (%s)", audio.devaudio,
+ g_warning("%s: unsupported encoding: %s (%s)", audio.devaudio,
output.name, strerror(errno));
return;
}
@@ -182,7 +180,7 @@
info.play.sample_rate = output.frequency;
if (ioctl(audio.fd, AUDIO_SETINFO, &info) < 0)
{
- g_error("%s: cannot handle %i Hz (%s)", audio.devaudio,
+ g_warning("%s: cannot handle %i Hz (%s)", audio.devaudio,
output.frequency, strerror(errno));
return;
}
@@ -537,7 +535,7 @@
if ((audio.fd = open(audio.devaudio, O_RDWR)) < 0)
{
- g_error("%s: %s", audio.devaudio, strerror(errno));
+ g_warning("%s: %s", audio.devaudio, strerror(errno));
return 0;
}