From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=42390 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PB8UU-0005N1-9e for qemu-devel@nongnu.org; Wed, 27 Oct 2010 12:04:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PB8US-0007Hg-QU for qemu-devel@nongnu.org; Wed, 27 Oct 2010 12:04:42 -0400 Received: from mx1.redhat.com ([209.132.183.28]:3372) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PB8US-0007HY-JW for qemu-devel@nongnu.org; Wed, 27 Oct 2010 12:04:40 -0400 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o9RG4dF8004991 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 27 Oct 2010 12:04:40 -0400 From: Gerd Hoffmann Date: Wed, 27 Oct 2010 18:04:29 +0200 Message-Id: <1288195475-3807-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 0/6] The windows 7 audio support patch series. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Hi, This patch series brings a bunch of pulseaudio tweaks and two new sound devices. Number one is the slightly improved usb-audio patch which was originally created by hpa. Number two is a virtual HD Audio controller with HDA codecs. The patches are also available in the git repository at: git://anongit.freedesktop.org/spice/qemu audio.2 enjoy, Gerd Gerd Hoffmann (5): pa: allow processing buffer pieces pa: process 1/4 buffer max at once pa: setup buffer attrs pa: tweak config Add Intel HD Audio support to qemu. H. Peter Anvin (1): Add support for a USB audio device model Makefile.objs | 3 +- audio/paaudio.c | 44 +-- hw/hda-audio.c | 820 +++++++++++++++++++++++++++++++++++++++ hw/intel-hda-defs.h | 717 ++++++++++++++++++++++++++++++++++ hw/intel-hda.c | 1071 +++++++++++++++++++++++++++++++++++++++++++++++++++ hw/intel-hda.h | 61 +++ hw/usb-audio.c | 758 ++++++++++++++++++++++++++++++++++++ hw/usb-net.c | 3 - hw/usb.h | 7 + 9 files changed, 3457 insertions(+), 27 deletions(-) create mode 100644 hw/hda-audio.c create mode 100644 hw/intel-hda-defs.h create mode 100644 hw/intel-hda.c create mode 100644 hw/intel-hda.h create mode 100644 hw/usb-audio.c