From owner-freebsd-multimedia Thu Mar 2 16:54:20 2000 Delivered-To: freebsd-multimedia@freebsd.org Received: from charon.ipass.net (charon.ipass.net [198.79.53.8]) by hub.freebsd.org (Postfix) with ESMTP id 33CEC37B70B for ; Thu, 2 Mar 2000 16:54:17 -0800 (PST) (envelope-from rhh@ipass.net) Received: from stealth.ipass.net. (ppp-1-191.dialup.rdu.ipass.net [209.170.132.191]) by charon.ipass.net (8.9.3/8.9.3) with ESMTP id TAA19831; Thu, 2 Mar 2000 19:54:14 -0500 (EST) Received: (from rhh@localhost) by stealth.ipass.net. (8.9.3/8.8.8) id TAA44803; Thu, 2 Mar 2000 19:56:21 -0500 (EST) (envelope-from rhh) Date: Thu, 2 Mar 2000 19:56:21 -0500 From: Randall Hopper To: Ben Cc: multimedia@FreeBSD.ORG Subject: Re: FXTV query Message-ID: <20000302195620.A33789@ipass.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from bda20@cam.ac.uk on Thu, Mar 02, 2000 at 04:37:17PM +0000 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ben: |Am running 3.2-STABLE with the bktr0 stuff complied in. When running |fxtv-1.02 I always have to change the input from S-video to CS-video to |get a colour image. | |The option -defaultInput csvideo has no effect. Setting tuner, video, or |svideo in place do have their correct settings respected. Is there a newer |version I haven't found yet which fixes this? Thanks for the report. It's a bug in 1.02. Here's a patch: --- ORIG/tv.c Sat Oct 16 20:14:20 1999 +++ tv.c Thu Mar 2 19:55:06 2000 @@ -502,12 +502,12 @@ if (( strstr( App_res.def_input, "tuner" ) != NULL ) || ( strstr( App_res.def_input, "TUNER" ) != NULL )) video_input_dev = TV_DEVICE_TUNER; - else if (( strstr( App_res.def_input, "svideo" ) != NULL ) || - ( strstr( App_res.def_input, "SVIDEO" ) != NULL )) - video_input_dev = TV_DEVICE_SVIDEO; else if (( strstr( App_res.def_input, "csvideo" ) != NULL ) || ( strstr( App_res.def_input, "CSVIDEO" ) != NULL )) video_input_dev = TV_DEVICE_CSVIDEO; + else if (( strstr( App_res.def_input, "svideo" ) != NULL ) || + ( strstr( App_res.def_input, "SVIDEO" ) != NULL )) + video_input_dev = TV_DEVICE_SVIDEO; else if (( strstr( App_res.def_input, "video" ) != NULL ) || ( strstr( App_res.def_input, "VIDEO" ) != NULL )) video_input_dev = TV_DEVICE_VIDEO; Randall To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message