From owner-freebsd-usb@FreeBSD.ORG Wed Apr 20 19:48:47 2011 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49A18106564A for ; Wed, 20 Apr 2011 19:48:47 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe07.c2i.net [212.247.154.194]) by mx1.freebsd.org (Postfix) with ESMTP id D11368FC08 for ; Wed, 20 Apr 2011 19:48:46 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.1 cv=118a5bn0tGnRZbUa9ClBty6BTuM1bA5mUZqmf2RHYp4= c=1 sm=1 a=IU0TiZmyZPMA:10 a=_sFknTxhR8UA:10 a=WQU8e4WWZSUA:10 a=Q9fys5e9bTEA:10 a=CL8lFSKtTFcA:10 a=i9M/sDlu2rpZ9XS819oYzg==:17 a=Y78BBkjETm8G2aJEA0cA:9 a=PUjeQqilurYA:10 a=i9M/sDlu2rpZ9XS819oYzg==:117 Received: from [188.126.198.129] (account mc467741@c2i.net HELO laptop002.hselasky.homeunix.org) by mailfe07.swip.net (CommuniGate Pro SMTP 5.2.19) with ESMTPA id 116747195; Wed, 20 Apr 2011 21:48:41 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Wed, 20 Apr 2011 21:47:43 +0200 User-Agent: KMail/1.13.5 (FreeBSD/8.2-PRERELEASE; KDE/4.4.5; amd64; ; ) References: <20110217185328.GB3583@magus.portal.sigil.org> <20110420191257.GA7095@magus.portal.sigil.org> In-Reply-To: <20110420191257.GA7095@magus.portal.sigil.org> X-Face: *nPdTl_}RuAI6^PVpA02T?$%Xa^>@hE0uyUIoiha$pC:9TVgl.Oq, NwSZ4V"|LR.+tj}g5 %V,x^qOs~mnU3]Gn; cQLv&.N>TrxmSFf+p6(30a/{)KUU!s}w\IhQBj}[g}bj0I3^glmC( :AuzV9:.hESm-x4h240C`9=w MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201104202147.43914.hselasky@c2i.net> Cc: Richard Kolkovich Subject: Re: Logitech QuickCam Pro 9000 Audio X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Apr 2011 19:48:47 -0000 On Wednesday 20 April 2011 21:12:57 Richard Kolkovich wrote: > On Thu, Feb 17, 2011 at 12:53:28PM -0600, Richard Kolkovich wrote: > > I have a Logitech QuickCam Pro 9000 which is detected by snd_uaudio just > > fine (and webcamd, too!). The issue, though, is that I cannot manage the > > recording volume. I really only care about > > > muting/unmuting, but mixer doesn't think there are any recording devices on this device: > Looking into this again, it appears that the mixer *does* control the > volume as expected - but 0 is not muted. If I set the mic volume to levels > > 0, it is noticably louder. I cannot, of course, set it to a negative > number. :) > > Has anyone seen this sort of behavior on other audio devices (USB or > not...)? Any ideas how to resolve it? > > Cheers, Hi, Have a look at /sys/dev/sound/usb/uaudio.c . USB Mixer control's range are part of the audio descriptors in the configuration descriptor. If 0 does not mean off, then maybe some bias value is computed wrong. Compile kernel with options USB_DEBUG and enable hw.usb.uaudio.debug=15 Then look in dmesg for minimum and maximum mixer ctl. values. --HPS