From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1D47GH-0000Yv-GC for qemu-devel@nongnu.org; Wed, 23 Feb 2005 19:53:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1D47G8-0000T7-8Z for qemu-devel@nongnu.org; Wed, 23 Feb 2005 19:53:40 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1D47G5-0000Qo-Rh for qemu-devel@nongnu.org; Wed, 23 Feb 2005 19:53:38 -0500 Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1D46y7-0002ga-Nt for qemu-devel@nongnu.org; Wed, 23 Feb 2005 19:35:03 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1D46uG-0001Lt-MM for qemu-devel@nongnu.org; Thu, 24 Feb 2005 01:31:04 +0100 Received: from p54a11fb0.dip0.t-ipconnect.de ([84.161.31.176]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 24 Feb 2005 01:31:04 +0100 Received: from hcz by p54a11fb0.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 24 Feb 2005 01:31:04 +0100 From: "Heike C. Zimmerer" Date: Thu, 24 Feb 2005 01:34:11 +0100 Message-ID: References: <4213D7F0.5010104@laposte.net> <4215B8E7.3080804@ppp0.net> <200502231908.12761.martin@martinm-76.dk> <20050223191357.GA3844@jbrown.mylinuxbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Sender: news Subject: [Qemu-devel] Re: Windows XP SP2 and qemu 0.6.2 Reply-To: hcz@hczim.de, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org --=-=-= "Jim C. Brown" writes: > On Wed, Feb 23, 2005 at 07:08:12PM +0100, Martin Moeller wrote: >> Fredag den 18. februar 2005 13:29 skrev Heike C. Zimmerer: >> >[...] >> > One smaller problem: I'm using Gnome and thus esd for sound output. I >> > can get no output while esd is running. If I'm trying the fmod >> > library, there is some sound, but it is garbled. Has anybody tried to >> > get sound using esd work? >> > >> Just wondering: Have you tried esddsp qemu -hda ... ? >> It works (or used to) quite well for rdesktop, for instance. >> >> /Martin. > > This doesnt seem to work with the default OSS sound driver. You'll > probably have to use the SDL audio driver to make this work. Yes, that's been my idea too when I had a closer look at the problem. The qemu configure script however enables OSS for Linux hosts. I include a (very small) simple patch to add a --disable-oss option to configure. Also, libsdl in a version matching the sound daemon (esd for GNOME, aRts for KDE) must have been installed. This works for small sound samples like the Windows and GNOME system sounds. I'm getting dropouts with samples longer than a few seconds. YMMV. --=-=-= Content-Disposition: attachment; filename=x Content-Description: qemu/configure: add --disable-oss --- qemu-snapshot-2005-02-22_23.orig/configure 2005-02-19 18:24:28.000000000 +0100 +++ qemu-snapshot-2005-02-22_23/configure 2005-02-24 01:26:36.381634648 +0100 @@ -177,7 +177,9 @@ --disable-kqemu) kqemu="no" ;; --kernel-path=*) kernel_path=${opt#--kernel-path=} - ;; + ;; + --disable-oss) oss="no" + ;; esac done --=-=-=--