From owner-cvs-all@FreeBSD.ORG Sat Jul 15 19:36:31 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A753A16A4DD; Sat, 15 Jul 2006 19:36:31 +0000 (UTC) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA33743D5E; Sat, 15 Jul 2006 19:36:28 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k6FJaSrS005382; Sat, 15 Jul 2006 19:36:28 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k6FJaSSe005381; Sat, 15 Jul 2006 19:36:28 GMT (envelope-from netchild) Message-Id: <200607151936.k6FJaSSe005381@repoman.freebsd.org> From: Alexander Leidinger Date: Sat, 15 Jul 2006 19:36:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/modules/sound/driver/emu10kx Makefile src/sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h src/sys/gnu/dev/sound/pci p16v-alsa.h p17v-alsa.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jul 2006 19:36:31 -0000 netchild 2006-07-15 19:36:28 UTC FreeBSD src repository Added files: sys/modules/sound/driver/emu10kx Makefile sys/dev/sound/pci emu10kx-midi.c emu10kx-pcm.c emu10kx.c emu10kx.h sys/gnu/dev/sound/pci p16v-alsa.h p17v-alsa.h Log: Add snd_emu10kx driver for Creative SoundBlaster Live! and Audigy series sound cards with optional pseudo-multichannel playback. It's based on snd_emu10k1 sound driver. Single channel version is available from audio/emu10kx port since some time. The two new ALSA header files (GPLed), which contain Audigy 2 ("p16v") and Audigy 2 Value ("p17v") specific interfaces, are latest versions from ALSA Mercurial repository. This is not connected to the build yet. Submitted by: Yuriy Tsibizov Revision Changes Path 1.1 +249 -0 src/sys/dev/sound/pci/emu10kx-midi.c (new) 1.1 +965 -0 src/sys/dev/sound/pci/emu10kx-pcm.c (new) 1.1 +3022 -0 src/sys/dev/sound/pci/emu10kx.c (new) 1.1 +180 -0 src/sys/dev/sound/pci/emu10kx.h (new) 1.1 +301 -0 src/sys/gnu/dev/sound/pci/p16v-alsa.h (new) 1.1 +113 -0 src/sys/gnu/dev/sound/pci/p17v-alsa.h (new) 1.1 +48 -0 src/sys/modules/sound/driver/emu10kx/Makefile (new)