From owner-freebsd-multimedia Mon Jun 29 06:22:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12827 for freebsd-multimedia-outgoing; Mon, 29 Jun 1998 06:22:41 -0700 (PDT) (envelope-from owner-freebsd-multimedia@FreeBSD.ORG) Received: from whqvax.picker.com (whqvax.picker.com [144.54.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id GAA12787 for ; Mon, 29 Jun 1998 06:22:28 -0700 (PDT) (envelope-from rhh@ct.picker.com) Received: from ct.picker.com by whqvax.picker.com with SMTP; Mon, 29 Jun 1998 9:21:56 -0400 (EDT) Received: from elmer.ct.picker.com ([144.54.57.34]) by ct.picker.com (4.1/SMI-4.1) id AA28969; Mon, 29 Jun 98 09:21:54 EDT Received: by elmer.ct.picker.com (SMI-8.6/SMI-SVR4) id RAA22242; Sun, 28 Jun 1998 17:36:24 -0400 Message-Id: <19980628173624.A22228@ct.picker.com> Date: Sun, 28 Jun 1998 17:36:24 -0400 From: Randall Hopper To: Edwin Culp , freebsd-multimedia@FreeBSD.ORG Subject: Re: Web interface for fxtv. Mail-Followup-To: Edwin Culp , freebsd-multimedia@FreeBSD.ORG References: <35968050.2D16C0B9@webwizard.org.mx> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=IS0zKkzwUGydFO0o X-Mailer: Mutt 0.91.1i In-Reply-To: <35968050.2D16C0B9@webwizard.org.mx>; from Edwin Culp on Sun, Jun 28, 1998 at 12:41:36PM -0500 Sender: owner-freebsd-multimedia@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Edwin Culp: |I tried fxtv with the fxtv -defaultInput svideo with |no effect. I put defaultInput in the Fxtv app-defaults |file with no effect, but changing the input form the |fxtv window works perfectly. My bust. The attached patch will fix that right up. Randall --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="fxtv-0.47.svideo.patch" --- fxtv-0.47/tv.c Sun May 31 06:02:34 1998 +++ tv.c Sun Jun 28 17:34:07 1998 @@ -492,12 +492,12 @@ if (( strstr( App_res.def_input, "tuner" ) != NULL ) || ( strstr( App_res.def_input, "TUNER" ) != NULL )) input_dev = TV_DEVICE_TUNER; - else if (( strstr( App_res.def_input, "video" ) != NULL ) || - ( strstr( App_res.def_input, "VIDEO" ) != NULL )) - input_dev = TV_DEVICE_VIDEO; else if (( strstr( App_res.def_input, "svideo" ) != NULL ) || ( strstr( App_res.def_input, "SVIDEO" ) != NULL )) input_dev = TV_DEVICE_SVIDEO; + else if (( strstr( App_res.def_input, "video" ) != NULL ) || + ( strstr( App_res.def_input, "VIDEO" ) != NULL )) + input_dev = TV_DEVICE_VIDEO; if ( input_dev != -1 ) TVCAPTURESetInputDevice ( c, input_dev ); --IS0zKkzwUGydFO0o-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-multimedia" in the body of the message