Date: Sun, 28 Jun 1998 17:36:24 -0400 From: Randall Hopper <rhh@ct.picker.com> To: Edwin Culp <eculp@webwizard.org.mx>, freebsd-multimedia@FreeBSD.ORG Subject: Re: Web interface for fxtv. Message-ID: <19980628173624.A22228@ct.picker.com> In-Reply-To: <35968050.2D16C0B9@webwizard.org.mx>; from Edwin Culp on Sun, Jun 28, 1998 at 12:41:36PM -0500 References: <35968050.2D16C0B9@webwizard.org.mx>
next in thread | previous in thread | raw e-mail | index | archive | help
[-- Attachment #1 --]
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
[-- Attachment #2 --]
--- 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 );
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980628173624.A22228>
