Subject: Re: lost interrupt + messages
To: None <netbsd@ns.purk.ee>
From: Frederick Bruckman <fredb@immanent.net>
List: current-users
Date: 12/03/2002 14:28:16
On Tue, 3 Dec 2002 netbsd@ns.purk.ee wrote:

> nope..it didn't get better at all!After a while im able to load mp3s to
> xmms with bunch of errors ;-) and even mplayer reccomend to get a better
> cpu ;-) so maybe i need to downgrade to back 1.6.

About mplayer: the current package turns off most of the
optimizations, even the MI ones. Try something like this...

Index: mplayer/Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/graphics/mplayer/Makefile,v
retrieving revision 1.28
diff -u -r1.28 Makefile
--- mplayer/Makefile	2002/10/01 12:51:46	1.28
+++ mplayer/Makefile	2002/12/03 20:12:18
@@ -15,4 +15,8 @@
 .include "../../graphics/mplayer-share/Makefile.depends"

 .include "../../audio/nas/buildlink2.mk"
+
+# This should come after the last "buildink" inclusion.
+CFLAGS=			-O3 -ffast-math -fomit-frame-pointer -march=486
+
 .include "../../mk/bsd.pkg.mk"

Also, audio output uses OSS compat by default, even though the native
driver is usually superior (and never worse). Try it with "-ao sun".
That can make a huge difference. The package probably shouldn't
compile in the OSS support at all (except when the "real OSS" hook is
enabled).

Frederick