From owner-freebsd-multimedia@FreeBSD.ORG Thu Aug 11 06:25:19 2005 Return-Path: X-Original-To: freebsd-multimedia@freebsd.org Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2769C16A41F for ; Thu, 11 Aug 2005 06:25:19 +0000 (GMT) (envelope-from jakemsr@jakemsr.com) Received: from mail231.csoft.net (resin.csoft.net [63.111.22.86]) by mx1.FreeBSD.org (Postfix) with SMTP id ABDA543D46 for ; Thu, 11 Aug 2005 06:25:18 +0000 (GMT) (envelope-from jakemsr@jakemsr.com) Received: (qmail 16672 invoked from network); 11 Aug 2005 06:25:15 -0000 Received: from unknown (HELO puff.jakemsr.gom) (63.111.27.87) by mail231.csoft.net with SMTP; 11 Aug 2005 06:25:15 -0000 Received: (from jakemsr@jakemsr.com) by puff.jakemsr.gom (mini_sendmail/1.3.5 16nov2003); Wed, 10 Aug 2005 23:25:17 PDT (sender jakemsr@puff.jakemsr.gom) Date: Wed, 10 Aug 2005 23:25:17 -0700 From: Jacob Meuser To: freebsd-multimedia@freebsd.org Message-ID: <20050811062517.GC23174@puff.jakemsr.gom> Mail-Followup-To: freebsd-multimedia@freebsd.org References: <6f896f9a05080902025f8aa5d7@mail.gmail.com> <20050809225048.47d768df.torfinn.ingolfsen@broadpark.no> <6f896f9a05080914057e6744b6@mail.gmail.com> <20050810032119.65de1a75@it.buh.tecnik93.com> <6f896f9a05081005141d557de3@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6f896f9a05081005141d557de3@mail.gmail.com> User-Agent: Mutt/1.4.2i Subject: Re: Help with tv tuner setup X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Aug 2005 06:25:19 -0000 On Wed, Aug 10, 2005 at 04:14:10PM +0400, Karolis Tamutis wrote: > Hello again. I've added this to my kernel config file: > > options BROOKTREE_SYSTEM_DEFAULT=BROOKTREE_PAL > > Now dmesg shows: > > %dmesg|grep bktr > bktr0: mem 0xe6000000-0xe6000fff irq 5 at device 9.0 on pci0 > bktr0: Leadtek Winfast TV 2000, Philips FR1216 PAL FM tuner. > > This time, it says PAL, but I feel it is still not right, because my > tuner doesn't have FM radio! have you tried to determine what kind of tuner is on the card, besides just trying different values in hw.bt848.tuner? checked the manufacturer's site, or the linux driver, or google, or ... > Also, I have tried most of sysctl hw.bt848.tuner values, even set > hw.bt848.format to 0 as suggested - still no luck. Could it be, that > europe-east frequency table is not right for me? The bad thing is that > I don't have windows right now to see those frequencies that make this > tuner show something. Last thing I could do is modify the source of > something where these frequency tables are defined.. where do you get the 'europe-east' channelset from? there is no such thing in bktr. there is CHNLSET_XUSSR, but I can't find a listing for channels<->frequencies for lithuania to see if that is correct. if you can find such a frequency listing, see if one of the CHNLSET_s as defined in sys/dev/bktr/bktr_tuner.c matches. if one doesn't match, then you know where to add the right definition :) v4l has a much different tuning interface than bktr, so a lot of v4l based programs just don't tune as expected. if you are interested ... I have a package of some small and simple tools for bktr in http://www.jakemsr.com/bsdav/bsdav-1.3.tar.gz if you would download, compile, and install it, and then run $ bktrplay -n pal -s tuner & $ tunerctl chanset=xussr channel=1 in an xterm. I would be interested to know what that produces. --