From owner-freebsd-multimedia Sun Jan 17 07:15:05 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA25732 for freebsd-multimedia-outgoing; Sun, 17 Jan 1999 07:15:05 -0800 (PST) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from dns.webwizard.net.mx (webwizard.net.mx [148.245.50.27]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA25727 for ; Sun, 17 Jan 1999 07:15:03 -0800 (PST) (envelope-from eculp@webwizard.org.mx) Received: from webwizard.org.mx (webwizard.net.mx [148.245.50.27]) by dns.webwizard.net.mx (8.9.2/8.9.1) with ESMTP id JAA93926; Sun, 17 Jan 1999 09:14:42 -0600 (CST) (envelope-from eculp@webwizard.org.mx) Message-ID: <36A1FE62.CC329B90@webwizard.org.mx> Date: Sun, 17 Jan 1999 09:14:42 -0600 From: Edwin Culp X-Mailer: Mozilla 4.5 [en] (X11; I; FreeBSD 3.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Johan Larsson CC: Randall Hopper , Duane Gustavus , multimedia@FreeBSD.ORG Subject: Re: fxtv References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Johan Larsson wrote: > On Sat, 16 Jan 1999, Randall Hopper wrote: > > > Duane Gustavus: > > |Is it possible we're not using the same driver code? Before hearing from > > |you I was stumbling around in the bt848 driver and noticed it has changed > > |since the release last October. I guess I need to go back and look for any > > |mention of bt878 support. > > | > > |It seems so close to working that I keep thinking it's just something I > > |haven't thought of. > > > > Sure. Deserves investigation at least. > > > > If we're both running a 3.0R driver, this should be the same: > > > > > cd /usr/src > > > cksum sys/i386/include/ioctl_bt848.h sys/pci/brooktree848.c sys/pci/brktree_reg.h > > 4103870460 8155 sys/i386/include/ioctl_bt848.h > > 2109781360 146879 sys/pci/brooktree848.c > > 3572949425 19015 sys/pci/brktree_reg.h > > > > BTW, looking back at the pile of -multimedia list mail I haven't read yet, > > I see some PAL folks that have gotten bt878 cards working, but having > > trouble with the audio. So sounds like the bt878 isn't the issue as far as > > Yep, i purchased a Wincast/TV model 447 with the ccd-camera. I got > everything to work, except audio, and getting color from my camera. (I > live in Sweden so it's pal :) I had the color problem on mine and Roger Hardimanl gave me this solution. Roger Hardiman wrote: > Edwin, > > > The answer to both is SVIDEO. The video camara quality is excellent > > but B&W. > > Ok, the problem is probably this > The camera uses the s-video connector to get its power, but > is really just a composite camera. > So, we need to hack the bt848 driver. > > Ok, here is the hack. I'll not send a patch as I do not have the > latest version of the driver on my system but here goes. > > 1) Find this bit of the driver..... > /* this is the S-VHS input */ > case METEOR_INPUT_DEV2: > case METEOR_INPUT_DEV_SVIDEO: > bktr->flags = (bktr->flags & ~METEOR_DEV_MASK) > | METEOR_DEV2; > bt848->iform &= ~BT848_IFORM_MUXSEL; > bt848->iform |= BT848_IFORM_M_MUX2; > bt848->e_control |= BT848_E_CONTROL_COMP; > bt848->o_control |= BT848_O_CONTROL_COMP; > set_audio( bktr, AUDIO_EXTERN ); > break; > > Then change this bit of it... > bt848->e_control |= BT848_E_CONTROL_COMP; > bt848->o_control |= BT848_O_CONTROL_COMP; > to.... > bt848->e_control &= ~BT848_E_CONTROL_COMP; > bt848->o_control &= ~BT848_O_CONTROL_COMP; > > Then select the S-Video input. > If Colour works, we'll do a better fix to the driver and FXTV. > > Bye > Roger Solved my problem about two months ago. ed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message